:root {
    --primary-color: #16213e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --accent-hover: #ff6b6b;
    --gold-color: #ffd700;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --bg-dark: #1a1a2e;
    --bg-darker: #0f0f1a;
    --gradient-primary: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.navbar-custom {
    background: var(--gradient-primary);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-light);
}

.navbar-custom .navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-custom .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom .nav-link:hover {
    color: var(--gold-color) !important;
    background: rgba(255, 215, 0, 0.1);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after {
    width: 60%;
}

.navbar-toggler {
    border: 2px solid #ffffff;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 28px;
    height: 28px;
}

.hero-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffd700" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23e94560" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23ffd700" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-section h1 span {
    color: var(--gold-color);
}

.hero-section h2 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-custom .nav-link {
        padding: 12px 20px !important;
        margin: 5px 0;
        border-radius: 8px;
    }

    .navbar-custom .nav-link:hover {
        background: rgba(255, 215, 0, 0.15);
    }

    .navbar-custom .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .navbar-custom .navbar-brand img {
        max-height: 40px;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .hero-section h2 {
        font-size: 0.9rem;
    }
}

.page-content {
    min-height: 60vh;
    padding: 60px 0;
}

.btn-primary-custom {
    background: var(--gradient-accent);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
    background: var(--gradient-accent);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--gold-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--gold-color);
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--gold-color);
    color: var(--primary-color);
}

.listing-section {
    padding: 20px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.offer-card {
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.offer-row {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    gap: 25px;
}

.offer-number {
    flex-shrink: 0;
}

.number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.offer-image {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.offer-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.offer-bonus {
    flex: 1;
    min-width: 200px;
}

.bonus-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.bonus-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
}

.offer-score {
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
}

.score-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.score-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.star {
    font-size: 1rem;
}

.star.filled {
    color: var(--gold-color);
}

.star.half {
    color: var(--gold-color);
    opacity: 0.6;
}

.star.empty {
    color: rgba(255, 215, 0, 0.2);
}

.offer-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 160px;
}

.btn-visit {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 200, 83, 0.5);
    color: var(--text-light);
}

.btn-readmore {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    color: var(--gold-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 30px;
    border: 2px solid var(--gold-color);
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background: var(--gold-color);
    color: var(--primary-color);
}

.offer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-disclaimer p {
    margin: 0;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1199px) {
    .offer-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .offer-bonus {
        flex: 1 1 250px;
    }
}

@media (max-width: 991px) {
    .offer-row {
        padding: 20px;
    }

    .offer-number {
        order: 1;
    }

    .offer-image {
        order: 2;
        width: 120px;
        height: 70px;
    }

    .offer-score {
        order: 3;
        margin-left: auto;
    }

    .offer-bonus {
        order: 4;
        flex: 1 1 100%;
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .offer-actions {
        order: 5;
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: center;
    }

    .btn-visit, .btn-readmore {
        flex: 1;
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .offer-row {
        padding: 15px;
        gap: 15px;
    }

    .number-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .offer-image {
        width: 80px;
        height: 50px;
    }

    .bonus-value {
        font-size: 1.1rem;
    }

    .score-value {
        font-size: 1.4rem;
    }

    .offer-actions {
        flex-direction: column;
    }

    .btn-visit, .btn-readmore {
        max-width: 100%;
        padding: 12px 20px;
    }

    .offer-disclaimer {
        padding: 10px 15px;
    }

    .offer-disclaimer p {
        font-size: 0.65rem;
    }
}

.footer-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, #0a0a14 100%);
    padding: 60px 0 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content-box {
    padding: 20px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-text p {
    margin-bottom: 15px;
}

.footer-text strong {
    color: var(--text-light);
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list li a {
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links-list li a:hover {
    color: var(--accent-hover);
    padding-left: 5px;
}

.footer-page-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-page-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--gold-color);
    transition: all 0.3s ease;
}

.footer-page-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    padding-left: 20px;
    color: var(--gold-color);
}

.footer-images {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.payment-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.payment-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-link:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-copyright {
    padding: 25px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

@media (max-width: 991px) {
    .footer-content-box {
        padding: 15px 10px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-page-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-page-links a {
        flex: 1 1 calc(50% - 6px);
        text-align: center;
        border-left: none;
        border-bottom: 3px solid var(--gold-color);
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-text {
        text-align: center;
    }

    .footer-links-list {
        text-align: center;
    }

    .footer-page-links a {
        flex: 1 1 100%;
    }

    .payment-images {
        gap: 15px;
    }

    .payment-link {
        width: 80px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .footer-content-box {
        padding: 10px 0;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.75rem;
    }

    .payment-link {
        width: 70px;
        height: 45px;
    }

    .footer-copyright p {
        font-size: 0.75rem;
    }
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.age-icon.restricted {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

.age-verification-modal h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.age-verification-modal p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-verification-modal p a {
    color: var(--accent-color);
    font-weight: 500;
}

.age-verification-modal p a:hover {
    color: var(--accent-hover);
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-age-accept {
    padding: 15px 40px;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
}

.btn-age-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 200, 83, 0.5);
}

.btn-age-reject {
    padding: 15px 40px;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-reject:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.15);
    z-index: 9998;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-icon {
    font-size: 2.5rem;
    text-align: center;
}

.cookie-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cookie-text p a {
    color: var(--gold-color);
    font-weight: 500;
}

.cookie-text p a:hover {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.btn-cookie-decline {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

@media (max-width: 576px) {
    .age-verification-modal {
        padding: 35px 25px;
    }

    .age-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .age-verification-modal h2 {
        font-size: 1.4rem;
    }

    .age-verification-modal p {
        font-size: 0.85rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-age-accept,
    .btn-age-reject {
        width: 100%;
        padding: 14px 30px;
    }

    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-section .section-title {
    color: var(--primary-color);
}

.content-section .section-title::after {
    background: var(--primary-color);
}

.content-block {
    margin-bottom: 35px;
    padding: 25px 30px;
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.content-block.white-bg {
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.content-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.content-block.white-bg h3 {
    color: var(--primary-color);
    border-bottom-color: rgba(22, 33, 62, 0.15);
}

.content-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 20px 0 10px;
}

.content-block.white-bg h4 {
    color: var(--secondary-color);
}

.content-block p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-block.white-bg p {
    color: #555555;
}

.content-block.white-bg ul li {
    color: #555555;
}

.content-block.white-bg ul li::before {
    color: var(--primary-color);
}

.content-block.white-bg a {
    color: var(--secondary-color);
}

.content-block.white-bg a:hover {
    color: var(--primary-color);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.content-block ul li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
}

.content-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

.content-block a {
    color: var(--accent-color);
    font-weight: 500;
}

.content-block a:hover {
    color: var(--accent-hover);
}

.contact-email {
    margin: 20px 0;
}

.contact-email a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-color);
    padding: 15px 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.contact-email a:hover {
    background: rgba(255, 215, 0, 0.2);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.casino-card {
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.casino-card-image {
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-card-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.casino-card-content {
    padding: 25px;
}

.casino-card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.casino-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.casino-bonus {
    background: rgba(255, 215, 0, 0.08);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.casino-bonus .bonus-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 5px;
}

.casino-bonus .bonus-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.casino-score {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.casino-score strong {
    color: var(--gold-color);
    font-size: 1.1rem;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.review-card {
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-image {
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.review-title {
    flex: 1;
}

.review-title h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.review-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-color);
}

.review-summary {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.review-pros-cons h5 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pros h5 {
    color: #00c853;
}

.cons h5 {
    color: var(--accent-color);
}

.review-pros-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-pros-cons ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 5px 0 5px 20px;
    position: relative;
}

.pros ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: bold;
}

.cons ul li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.faq-list {
    margin: 30px 0;
}

.faq-item {
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    overflow: hidden;
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-color);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gold-color);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .content-block {
        padding: 20px;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .review-pros-cons {
        grid-template-columns: 1fr;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .content-block {
        padding: 15px;
    }

    .content-block h3 {
        font-size: 1.1rem;
    }

    .content-block p,
    .content-block ul li {
        font-size: 0.85rem;
    }

    .contact-email a {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

.casino-review-page {
    max-width: 1000px;
}

.casino-review-header {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.casino-review-image {
    width: 200px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.casino-review-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.casino-review-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.casino-review-score {
    display: flex;
    align-items: baseline;
}

.casino-review-score .score-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-color);
    line-height: 1;
}

.casino-review-score .score-max {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.casino-review-bonus {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
}

.casino-review-bonus .bonus-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-color);
    margin-bottom: 5px;
}

.casino-review-bonus .bonus-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.casino-quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.quick-info-item {
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.quick-info-item .info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.quick-info-item .info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.pros-cons-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros-section h3 {
    color: #00c853 !important;
    border-bottom-color: rgba(0, 200, 83, 0.2) !important;
}

.cons-section h3 {
    color: var(--accent-color) !important;
    border-bottom-color: rgba(233, 69, 96, 0.2) !important;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: bold;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.casino-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, #1e2a4a 0%, #16213e 100%);
    border-radius: 16px;
    margin-top: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.btn-visit-large {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
}

.btn-visit-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 200, 83, 0.5);
    color: var(--text-light);
}

.casino-cta .disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .casino-review-header {
        flex-direction: column;
        text-align: center;
    }

    .casino-review-info {
        align-items: center;
    }

    .casino-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pros-cons-block {
        grid-template-columns: 1fr;
    }

    .casino-review-image {
        width: 150px;
        height: 90px;
    }

    .casino-review-score .score-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .casino-quick-info {
        grid-template-columns: 1fr;
    }

    .casino-review-header {
        padding: 20px;
    }

    .btn-visit-large {
        padding: 15px 35px;
        font-size: 1rem;
    }
}
