/* Global Styles */
:root {
    --primary-color: #2d3be8;
    --secondary-color: #6c7af2;
    --accent-color: #ff6b6b;
    --dark-accent: #ff4757;
    --light-color: #f7f9fc;
    --dark-color: #192a56;
    --text-color: #2f3542;
    --text-light: #747d8c;
    --white: #ffffff;
    --gray-light: #f1f2f6;
    --gray: #dfe4ea;
    --dark-gray: #57606f;
    --success: #26de81;
    --warning: #fed330;
    --error: #ff4d4d;
    --border-radius: 10px;
    --button-radius: 50px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--dark-accent));

    /* Animation Effects */
    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }

    @keyframes shine {
        0% {
            background-position: -100px;
        }

        100% {
            background-position: 200px;
        }
    }

    .btn-play {
        position: relative;
        overflow: hidden;
    }

    .btn-play::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 30px;
        height: 200%;
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(30deg);
        transition: all 0.65s ease;
    }

    .btn-play:hover::after {
        left: 120%;
    }

    /* Extra Styles for Enhanced Visual Appeal */
    .section-header {
        position: relative;
    }

    .section-header::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 2px;
        opacity: 0.3;
    }

    .casino-info li {
        position: relative;
        transition: transform 0.3s ease;
    }

    .casino-info li:hover {
        transform: translateX(5px);
    }

    .casino-info li i {
        transition: transform 0.3s ease;
    }

    .casino-info li:hover i {
        transform: scale(1.2);
    }

    .trusted-badge {
        animation: float 5s ease-in-out infinite;
    }

    .bonus-tag {
        position: relative;
        overflow: hidden;
    }

    .bonus-tag::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -100%;
        width: 30px;
        height: 200%;
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(30deg);
        animation: shine 3s infinite linear;
    }

    /* Enhanced Scrollbar */
    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: var(--gray-light);
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        border-radius: 10px;
        border: 3px solid var(--gray-light);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    }

    /* Selection Style */
    ::selection {
        background-color: var(--primary-color);
        color: white;
    }

    /* Focus Styles for Accessibility */
    a:focus,
    button:focus,
    input:focus,
    .btn-play:focus,
    .btn-more:focus {
        outline: 3px solid rgba(108, 122, 242, 0.5);
        outline-offset: 3px;
    }

    /* Additional Hover Animations */
    .game-card .game-image {
        position: relative;
        overflow: hidden;
    }

    .game-card .game-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%);
        transform: skewX(-25deg);
        transition: all 0.75s ease;
        z-index: 2;
    }

    .game-card:hover .game-image::before {
        left: 125%;
    }

    .provider img {
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .provider:hover img {
        transform: scale(1.1);
        filter: brightness(1.1);
    }

    /* Print Styles */
    @media print {
        body {
            background-color: white;
            color: black;
        }

        .site-header,
        .hero,
        .providers,
        .btn-play,
        .btn-more,
        .btn-play-game,
        .trusted-badge,
        .site-footer {
            display: none;
        }

        .casino-card,
        .game-card,
        .faq-item {
            break-inside: avoid;
            page-break-inside: avoid;
            box-shadow: none;
            border: 1px solid #ddd;
        }

        a {
            text-decoration: none;
            color: black;
        }

        h2::after {
            display: none;
        }
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        color: var(--text-color);
        line-height: 1.6;
        background-color: var(--light-color);
    }

    .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }

    a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
    }

    a:hover {
        color: var(--secondary-color);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        margin-bottom: 1rem;
    }

    ul {
        list-style: none;
    }

    section {
        padding: 5rem 0;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    button,
    .btn-play,
    .btn-more,
    .btn-play-game {
        cursor: pointer;
        border: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        transition: var(--transition);
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-header h2 {
        position: relative;
        display: inline-block;
        font-weight: 800;
        margin-bottom: 1rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
    }

    .section-header.light h2,
    .section-header.light .section-subtitle {
        color: var(--white);
        -webkit-text-fill-color: var(--white);
    }

    .section-header.light h2::after {
        background: var(--white);
    }

    /* Age Verification Popup */
    .age-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    .age-popup-content {
        background-color: var(--white);
        border-radius: var(--border-radius);
        padding: 3rem;
        width: 90%;
        max-width: 550px;
        box-shadow: var(--box-shadow);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .age-popup-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        background: var(--gradient-accent);
    }

    .age-header {
        margin-bottom: 2rem;
    }

    .age-icon {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        background: var(--gradient-accent);
        color: var(--white);
        font-size: 2rem;
        font-weight: bold;
        border-radius: 50%;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    }

    .age-message {
        margin-bottom: 2rem;
    }

    .age-message h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

    .age-message p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

    .age-confirmation {
        margin-bottom: 2rem;
    }

    @media (max-width: 768px) {
        .checkbox-container,
        .age-message p {
            font-size: 14px !important;
        }
        .age-header h2 {
            font-size: 18px;
        }
    }
    .checkbox-container {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 1.1rem;
        user-select: none;
        text-align: left;
        color: var(--dark-color);
    }

    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: var(--gray-light);
        border-radius: 6px;
        transition: var(--transition);
    }

    .checkbox-container:hover input~.checkmark {
        background-color: var(--gray);
    }

    .checkbox-container input:checked~.checkmark {
        background: var(--gradient-primary);
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .checkbox-container input:checked~.checkmark:after {
        display: block;
    }

    .checkbox-container .checkmark:after {
        left: 9px;
        top: 5px;
        width: 7px;
        height: 12px;
        border: solid white;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

    .age-buttons {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .btn-no,
    .btn-yes {
        padding: 1rem 2rem;
        flex: 1;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: var(--button-radius);
        transition: var(--transition);
    }

    .btn-no {
        background-color: #ff4d4d;
        color: var(--white);
        box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
    }

    .btn-no:hover {
        background-color: #ff3333;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
    }

    .btn-yes {
        background: var(--gradient-primary);
        color: var(--white);
        box-shadow: 0 5px 15px rgba(45, 59, 232, 0.3);
    }

    .btn-yes:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(45, 59, 232, 0.4);
    }

    .btn-yes:disabled {
        background: linear-gradient(135deg, #a4acf7, #8f9af5);
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    /* Header and Navigation Styles */
    .site-header {
        background: linear-gradient(135deg, var(--primary-color) 0%, #4f60f5 100%);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 80px;
        width: auto;
        transition: transform 0.3s ease;
    }

    .logo img:hover {
        transform: scale(1.05);
    }

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2rem;
    }

    .nav-list li a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: var(--button-radius);
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-list li a:hover,
    .nav-list li a.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-list li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--white);
        transition: width 0.3s ease;
    }

    .nav-list li a:hover::after,
    .nav-list li a.active::after {
        width: 70%;
    }

    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white);
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    /* Smooth scrolling for the whole page */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px; /* Account for fixed header */
    }

    /* Mobile Responsive Styles */
    @media screen and (max-width: 768px) {
        .mobile-menu-toggle {
            display: block;
        }

        .main-nav {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: linear-gradient(135deg, var(--primary-color) 0%, #4f60f5 100%);
            transition: left 0.3s ease;
            padding: 2rem 0;
        }

        .main-nav.active {
            left: 0;
        }

        .nav-list {
            flex-direction: column;
            align-items: center;
            padding: 2rem 0;
            gap: 1.5rem;
        }

        .nav-list li a {
            font-size: 1.2rem;
            padding: 0.8rem 2rem;
        }

        .nav-list li a:hover,
        .nav-list li a.active {
            background: rgba(255, 255, 255, 0.15);
        }
    }

    /* Add margin to main content to account for fixed header */
    main {
        margin-top: 100px;
    }

    .ggl-badge img {
        height: 45px;
        transition: var(--transition);
    }

    .ggl-badge img:hover {
        transform: scale(1.05);
    }

    /* Hero Section */
    .hero {
        position: relative;
        background: linear-gradient(135deg, var(--primary-color) 0%, #4f60f5 100%);
        padding: 7rem 0 6rem;
        color: var(--white);
        overflow: hidden;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('assets/images/hero-pattern.svg');
        background-size: cover;
        opacity: 0.1;
        z-index: 1;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 1;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        color: var(--white);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .hero h1 .highlight {
        color: var(--accent-color);
        position: relative;
        display: inline-block;
    }

    .hero h1 .highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: rgba(255, 255, 255, 0.2);
        z-index: -1;
        border-radius: 10px;
    }

    .hero-description {
        font-size: 1.3rem;
        max-width: 80%;
        margin: 0 auto 3rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }

    .hero-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    @media (max-width: 768px) {
        .hero-features {
            align-items: center;
            flex-direction: column;
        }
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        backdrop-filter: blur(5px);
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
        max-width: 290px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        background: var(--gradient-accent);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: white;
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    }

    .feature-text {
        text-align: left;
    }

    .feature-text h3 {
        font-size: 1.1rem;
        margin: 0 0 0.3rem;
        color: white;
    }

    .feature-text p {
        font-size: 0.85rem;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
    }

    .trusted-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 0.7rem 1.8rem;
        border-radius: 50px;
        margin: 0 auto;
        width: fit-content;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .trusted-badge img {
        height: 30px;
    }

    .trusted-badge p {
        font-size: 0.95rem;
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

    /* Providers Section */
    .providers {
        background-color: var(--white);
        padding: 4rem 0;
        border-radius: 20px;
        margin: 0 1.5rem;
        box-shadow: var(--card-shadow);
    }

    .provider-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
    }

    .provider {
        padding: 1.5rem;
        background-color: var(--gray-light);
        border-radius: var(--border-radius);
        width: 170px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
        border: 1px solid var(--gray);
    }

    .provider:hover {
        transform: translateY(-8px);
        box-shadow: var(--hover-shadow);
        border-color: var(--secondary-color);
    }

    /* Casino Cards Section */
    .top-casinos {
        background-color: var(--light-color);
        padding: 3rem 0;
    }

    .casino-card {
        display: flex;
        background-color: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--card-shadow);
        margin-bottom: 2.5rem;
        transition: var(--transition);
        position: relative;
        border: 3px solid var(--primary-color);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    }

    .casino-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--hover-shadow);
        border-color: var(--secondary-color);
        background: linear-gradient(135deg, #ffffff 0%, #f0f3ff 100%);
    }

    .top-badge {
        position: absolute;
        top: 30px;
        right: -40px;
        background: var(--gradient-accent);
        color: white;
        padding: 0.4rem 2.5rem;
        font-size: 0.85rem;
        font-weight: 700;
        transform: rotate(45deg);
        z-index: 10;
        box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
    }

    .casino-logo {
        padding: 2rem;
        background-color: var(--gray-light);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 250px;
        flex-shrink: 0;
        border-right: 3px solid var(--primary-color);
    }

    .casino-logo img {
        max-width: 200px;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }

    .casino-card:hover .casino-logo img {
        transform: scale(1.05);
    }

    .rating {
        text-align: center;
    }

    .score {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-color);
        font-family: 'Montserrat', sans-serif;
    }

    .max {
        font-size: 1rem;
        color: var(--text-light);
    }

    .stars {
        color: #ffc107;
        margin-top: 0.5rem;
        font-size: 1.1rem;
    }

    .stars i {
        margin: 0 2px;
    }

    .casino-info {
        flex: 1;
        padding: 2rem;
        border-right: 1px solid var(--gray);
        width: calc(100% - 220px - 240px); /* вычитаем ширину logo и cta */
    }

    .bonus-tag {
        display: inline-block;
        background: var(--gradient-accent);
        color: var(--white);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
        box-shadow: 0 3px 8px rgba(255, 107, 107, 0.2);
    }

    .casino-info h3 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
        color: var(--dark-color);
    }

    .casino-info ul {
        margin-bottom: 1.8rem;
    }

    .casino-info li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        font-size: 1.05rem;
    }

    .casino-info li i {
        color: var(--success);
        flex-shrink: 0;
        margin-top: 0.3rem;
    }

    .legal-info {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: var(--gray-light);
        border-radius: 8px;
    }

    .payment-methods {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .payment-methods img {
        height: 35px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .payment-methods img:hover {
        transform: translateY(-3px);
    }

    .casino-cta {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 290px;
        flex-shrink: 0;
        background-color: var(--gray-light);
        border-left: 1px solid var(--primary-color);
    }
.casino-cta h3 {
    text-align: center;
}
    .btn-play {
        display: block;
        width: 100%;
        background: var(--gradient-primary);
        color: var(--white);
        padding: 1.2rem 1.8rem;
        text-align: center;
        border-radius: var(--button-radius);
        margin-bottom: 0;
        font-weight: 700;
        font-size: 1.15rem;
        box-shadow: 0 5px 15px rgba(45, 59, 232, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .btn-play:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(45, 59, 232, 0.3);
        color: var(--white);
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    }

    .btn-play::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.7s ease;
    }

    .btn-play:hover::before {
        left: 100%;
    }

    .btn-more {
        color: var(--primary-color);
        font-weight: 600;
        position: relative;
        padding: 0.3rem;
    }

    .btn-more::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }

    .btn-more:hover::after {
        width: 100%;
    }

    /* Top Games Section */
    .top-games {
        background-color: var(--white);
        padding: 6rem 0;
        position: relative;
        z-index: 1;
    }

    .top-games::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('assets/images/pattern-bg.svg');
        background-size: 200px;
        opacity: 0.05;
        z-index: -1;
    }

    .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
        gap: 2.5rem;
    }

    .game-card {
        background-color: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--card-shadow);
        transition: var(--transition);
        border: 1px solid var(--gray);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    }

    .game-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--hover-shadow);
        border-color: var(--secondary-color);
        background: linear-gradient(135deg, #ffffff 0%, #f0f3ff 100%);
    }

    .game-image {
        position: relative;
        overflow: hidden;
        height: 320px;
    }

    .game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .game-card:hover .game-image img {
        transform: scale(1.08);
    }

    .game-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(25, 42, 86, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: var(--transition);
    }

    .game-card:hover .game-overlay {
        opacity: 1;
    }

    .btn-play-game {
        background: var(--gradient-accent);
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: var(--button-radius);
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        transform: translateY(20px);
        transition: all 0.3s ease 0.1s;
    }

    .game-card:hover .btn-play-game {
        transform: translateY(0);
    }

    .btn-play-game:hover {
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
        color: var(--white);
    }

    .game-card h3 {
        padding: 1.2rem 1.5rem;
        text-align: center;
        margin-bottom: 0;
        font-size: 1.3rem;
        border-bottom: 1px solid var(--gray);
    }

    .game-info {
        display: flex;
    }

    .rtp,
    .bonus {
        flex: 1;
        text-align: center;
        padding: 1rem;
    }

    .rtp {
        border-right: 1px solid var(--gray);
    }

    .label {
        display: block;
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .value {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 1.1rem;
    }

    /* FAQ Section */
    .faq {
        background-color: var(--light-color);
        padding: 6rem 0;
    }

    .faq-list {
        max-width: 850px;
        margin: 0 auto;
    }

    .faq-item {
        background-color: var(--white);
        border-radius: var(--border-radius);
        margin-bottom: 1.5rem;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--gray);
        transition: var(--transition);
    }

    .faq-item:hover {
        box-shadow: var(--hover-shadow);
        border-color: var(--secondary-color);
    }

    .faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question h3 {
        margin-bottom: 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark-color);
    }

    .toggle-icon {
        color: var(--primary-color);
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--gray-light);
        border-radius: 50%;
        transition: var(--transition);
    }

    .faq-item.active .toggle-icon {
        background-color: var(--primary-color);
        color: var(--white);
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 2rem 1.5rem;
        display: none;
        color: var(--text-light);
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .faq-item.active .toggle-icon .fa-plus:before {
        content: "\f068";
    }

    /* Responsible Gaming Section */
    .responsible-gaming {
        background: linear-gradient(135deg, var(--primary-color) 0%, #4f60f5 100%);
        padding: 6rem 0;
        text-align: center;
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .responsible-gaming::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('assets/images/pattern-bg.svg');
        background-size: 200px;
        opacity: 0.05;
        z-index: 0;
    }

    .responsible-gaming .container {
        position: relative;
        z-index: 1;
    }

    .responsible-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .responsible-item {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .responsible-item:hover {
        transform: translateY(-8px);
        background-color: rgba(255, 255, 255, 0.2);
    }

    .responsible-item img {
        height: 70px;
    }

    .responsible-text {
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.8;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: var(--border-radius);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .responsible-text a {
        color: var(--white);
        font-weight: 600;
        text-decoration: underline;
    }

    .responsible-text a:hover {
        color: var(--accent-color);
    }

    /* Footer Styles */
    .site-footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 5rem 0 2rem;
        position: relative;
    }

    .footer-top {
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 3rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .footer-logo-img {
        max-width: 190px;
        height: 90px;
        object-fit: contain;
    }

    .footer-logo .logo-text {
        color: var(--white);
        -webkit-text-fill-color: var(--white);
    }

    .age-badge {
        display: inline-block;
        background: var(--gradient-accent);
        color: var(--white);
        font-size: 1.4rem;
        font-weight: bold;
        width: 55px;
        height: 55px;
        line-height: 55px;
        text-align: center;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        transition: var(--transition);
    }

    .age-badge:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    }

    .footer-message {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .footer-about {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    .footer-middle {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .footer-section h3 {
        color: var(--white);
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
        position: relative;
        padding-bottom: 0.8rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        display: block;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        font-size: 1.05rem;
    }

    .footer-link:hover {
        color: var(--white);
        transform: translateX(5px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

    @media screen and (max-width: 768px) {
        .casino-card {
            flex-direction: column;
        }

        .casino-logo,
        .casino-info,
        .casino-cta {
            width: 100%;
        }
        .footer-middle {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
            padding: 0;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-link:hover {
            transform: translateX(0);
        }

        .footer-bottom {
            padding: 1.5rem 1rem 0;
        }
    }
}

.footer-logo-img {
    max-width: 120px;
    height: 45px;
    object-fit: contain;
}

/* Casino Cards Responsive Styles */
@media screen and (max-width: 768px) {
    .casino-card {
        flex-direction: column;
        padding: 1rem;
        margin: 1rem 0;
        border-width: 2px;
    }

    .casino-logo {
        width: 100%;
        min-width: auto;
        padding: 1.5rem;
        border: none !important;
        margin-bottom: 0;
        background: none;
    }

    .casino-logo img {
        max-width: 160px;
        margin-bottom: 1rem;
    }

    .casino-info {
        width: 100%;
        padding: 1rem 0;
        border: none !important;
    }

    .casino-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .casino-info ul {
        margin-bottom: 1.2rem;
    }

    .casino-info li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .legal-info {
        font-size: 0.8rem;
        padding: 0.6rem;
        margin-bottom: 1rem;
    }

    .casino-cta {
        width: 100%;
        padding: 1.5rem 0 0 0;
        border: none !important;
        margin-top: 1rem;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-play {
        display: block;
        width: 100%;
        min-width: 200px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
        background: var(--gradient-primary);
        white-space: nowrap;
        box-sizing: border-box;
    }

    .btn-more {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        margin-top: 0.5rem;
    }

    .payment-methods {
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .payment-methods img {
        height: 25px;
        max-width: 45px;
        flex-shrink: 0;
    }

    .top-badge {
        position: absolute;
        top: 0;
        right: 0;
        transform: rotate(0);
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
        border-radius: 0 var(--border-radius) 0 var(--border-radius);
        width: auto;
        margin: 0;
    }

    .rating {
        margin-top: 0.5rem;
    }

    .score {
        font-size: 1.8rem;
    }

    .stars {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .casino-card {
        padding: 0.8rem;
    }

    .casino-logo {
        padding: 1rem 0;
    }

    .casino-logo img {
        max-width: 140px;
    }

    .casino-info {
        padding: 0.8rem 0;
    }

    .casino-info h3 {
        font-size: 1.3rem;
    }

    .casino-info li {
        font-size: 0.9rem;
    }

    .casino-cta {
        padding: 1rem 0 0 0;
    }

    .btn-play {
        min-width: 180px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .btn-more {
        padding: 0.7rem;
    }

    .payment-methods {
        gap: 0.6rem;
    }

    .payment-methods img {
        height: 22px;
        max-width: 40px;
    }
}

/* Cookie Consent Popup Styles */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup.active {
    opacity: 1;
    visibility: visible;
}

.cookie-popup-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--box-shadow);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cookie-popup.active .cookie-popup-content {
    transform: translateY(0);
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cookie-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: var(--primary-color);
}

.cookie-message {
    margin-bottom: 2rem;
}

.cookie-message p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-option-title h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.cookie-option-title p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background: var(--gradient-primary);
}

input:disabled + .slider {
    background: var(--gradient-primary);
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-accept-all,
.btn-save {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--button-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-save {
    background-color: var(--gray-light);
    color: var(--dark-color);
}

.btn-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 59, 232, 0.2);
}

.btn-save:hover {
    background-color: var(--gray);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-popup-content {
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept-all,
    .btn-save {
        width: 100%;
    }
}

