/* Global Reset and Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* Improve anchor link scrolling */
}

/* Base Styles & Variables */
:root {
    --primary-color: #F9CD41;
    --secondary-color: #FF4562;
    --dark-bg: #121212;
    --darker-bg: #0A0A0A;
    --card-bg: #1E1E1E;
    --text-color: #FFFFFF;
    --text-muted: #B0B0B0;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    --section-padding: 5rem 1rem;
    /* Standardized section padding */
    --container-max-width: 1200px;
    /* Consistent max width */
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    /* Slightly increased line height */
    font-size: 16px;
    /* Base font size */
    padding-top: 70px;
    /* Header height */
    padding-bottom: 60px;
    /* Sticky buttons height */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    /* Responsive H1 */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    /* Responsive H2 */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    /* Responsive H3 */
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    /* Responsive H4 */
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

/* Utility Classes */
.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    /* Horizontal padding inside container */
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    /* Increased bottom margin */
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: -0.5rem auto 0;
    /* Adjusted margin */
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    /* Adjusted gap */
    padding: 0.75rem 1.75rem;
    /* Slightly larger padding */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    transition: var(--transition);
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    /* Base border */
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: rgba(249, 205, 65, 0.85);
    border-color: rgba(249, 205, 65, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
    color: #000;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(249, 205, 65, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    align-self: start;
    /* Keep this for card context */
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

/* Specific button size modifiers */
.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    gap: 0.4rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    gap: 0.75rem;
}

/* Header Styles */
.site-header {
    background-color: rgba(10, 10, 10, 0.9);
    /* Slightly less opaque */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    /* Increased blur */
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    /* Fixed height */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    height: 100%;
    /* Ensure container fills header height */
    margin: 0 auto;
    padding: 0 1rem;
    /* Use padding on container, not header */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    /* Responsive logo text */
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.main-nav {
    display: none;
    /* Hidden by default, shown in media query */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    /* Slightly increased gap */
}

.nav-list a {
    color: var(--text-muted);
    /* Muted color for non-active */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    /* Style for hover and active */
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Positioned slightly below */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    /* Only transition width */
}

.nav-list a:hover::after,
.nav-list a.active::after {
    /* Underline for hover and active */
    width: 100%;
}

.header-buttons {
    display: none;
    /* Hidden by default, shown in media query */
    gap: 1rem;
}

/* Mobile Menu Styles */
.mobile-toggle {
    display: block;
    /* Shown by default, hidden in media query */
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    /* Ensure it's above other header elements */
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    /* Start from top */
    left: 0;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    background-color: rgba(10, 10, 10, 0.98);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 6rem 1.5rem 2rem;
    /* Adjusted padding */
    overflow-y: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    margin: 0 0 2.5rem;
    /* Increased margin */
}

.mobile-nav-list li {
    margin-bottom: 1.2rem;
    /* Increased margin */
}

.mobile-nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.3rem;
    /* Larger font */
    font-weight: 500;
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* Increased gap */
    margin-top: auto;
    /* Push buttons to bottom */
}

.mobile-buttons .btn {
    width: 100%;
    font-size: 1.1rem;
    /* Larger buttons */
    padding: 0.9rem 1.5rem;
}

/* Hamburger Animation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
    /* Prevent scrolling when mobile menu is open */
}

/* Generic Section Styling */
section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    /* Prevent background elements spilling */
}

section:nth-of-type(even) {
    background-color: var(--darker-bg);
    /* Alternate background */
}

/* Hero Section Styles */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1A1A2E 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSIjMWExYTFlIi8+PGNpcmNsZSBjeD0iNC41IiBjeT0iNC41IiByPSIxLjUiIGZpbGw9IiMyMjIyMzAiLz48L3N2Zz4=');
    opacity: 0.05;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(249, 205, 65, 0.15) 0%, rgba(249, 205, 65, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.pre-headline {
    display: inline-block;
    background-color: rgba(249, 205, 65, 0.15);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(249, 205, 65, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pulse-effect {
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(249, 205, 65, 0.7);
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 205, 65, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(249, 205, 65, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 205, 65, 0);
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(40, 40, 40, 0.9);
    border-color: rgba(249, 205, 65, 0.3);
}

.badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hero-image-wrapper {
    position: relative;
    max-width: 550px;
    width: 100%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.8;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.coin-1 {
    top: 20%;
    left: -5%;
    animation-name: float-1;
}

.coin-2 {
    top: 70%;
    right: -5%;
    animation-name: float-2;
}

.card-1 {
    bottom: 15%;
    left: 10%;
    animation-name: float-3;
}

.dice-1 {
    top: 10%;
    right: 10%;
    animation-name: float-4;
}

@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(15px) rotate(-5deg);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(-10px, -5px) rotate(5deg);
    }
}

@keyframes float-4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(10px, 10px) rotate(-5deg);
    }
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 3px solid rgba(249, 205, 65, 0.2);
    transition: all 0.3s ease;
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(249, 205, 65, 0.3) 0%, rgba(249, 205, 65, 0) 70%);
    z-index: -1;
    border-radius: inherit;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.hero-image:hover .hero-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.jackpot-badge {
    background: linear-gradient(135deg, #d31027 0%, #ea384d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 15px rgba(234, 56, 77, 0.5);
    transform: rotate(5deg);
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-10px);
    }
}

.jackpot-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.jackpot-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max-width);
    margin: 4rem auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.feature {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: rgba(30, 30, 30, 0.95);
    border-color: rgba(249, 205, 65, 0.2);
}

.feature-icon {
    background-color: rgba(249, 205, 65, 0.15);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.feature-content {
    flex: 1;
}

.feature h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}


    /* Media Queries for Hero Section */
    @media (min-width: 1050px) {

        .hero-content {
            text-align: left;
        }

        .hero-cta {
            justify-content: flex-start;
        }

        .hero-description {
            margin-left: 0;
            margin-right: 0;
        }

        .hero-badges {
            justify-content: flex-start;
            margin-top: 2rem;
        }

        .hero-features {
            grid-template-columns: repeat(4, 1fr);
            margin-top: 5rem;
        }
    }

    @media (max-width: 767px) {
        .hero-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        h1 {
            font-size: 1.8rem;
        }

        .pre-headline {
            font-size: 0.8rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            font-size: 1rem;
        }

        .feature h3 {
            font-size: 1.1rem;
        }

        .feature p {
            font-size: 0.9rem;
        }
    }

    /* Game Categories Section Styles */
    .game-categories-section {
        /* padding handled by section default */
        background-color: var(--dark-bg);
        /* Ensure correct base background */
    }

    .game-categories-section::after {
        /* Existing ::after */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(249, 205, 65, 0.04), transparent 70%);
        pointer-events: none;
        z-index: 1;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* Responsive grid */
        gap: 2rem;
        margin-bottom: 3.5rem;
        /* Increased margin */
    }

    .category-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        border: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        height: 100%;
        /* Make cards equal height in a row */
    }

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(249, 205, 65, 0.2);
    }

    .featured-card {
        border-color: rgba(249, 205, 65, 0.3);
        position: relative;
    }

    .featured-card::before {
        /* Existing ::before */
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        /* Adjust for border */
        border: 2px solid transparent;
        border-radius: var(--border-radius);
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 10;
    }

    .card-image {
        position: relative;
        height: 220px;
        /* Increased height */
        overflow: hidden;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .category-card:hover .card-image img {
        transform: scale(1.05);
    }

    .card-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background-color: var(--primary-color);
        color: #000;
        padding: 0.3rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        z-index: 5;
    }

    .card-content {
        padding: 1.75rem;
        /* Increased padding */
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .card-content h3 {
        font-size: 1.4rem;
        /* Adjusted size */
        margin: 0 0 1rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        /* Adjusted gap */
    }

    .card-content h3 i {
        color: var(--primary-color);
        font-size: 1.2rem;
        /* Match text better */
    }

    .card-content p {
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        flex-grow: 1;
        line-height: 1.6;
        /* Ensure consistent line height */
    }

    .provider-logos {
        display: flex;
        flex-wrap: wrap;
        /* Allow wrapping */
        gap: 0.6rem;
        /* Adjusted gap */
        margin-bottom: 1.5rem;
    }

    .provider-logos span {
        background-color: rgba(0, 0, 0, 0.35);
        /* Slightly darker */
        padding: 0.35rem 0.85rem;
        border-radius: 4px;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .category-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* Responsive grid */
        gap: 1.5rem;
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2.5rem;
        /* Increased padding */
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        /* Align icon top */
        gap: 1.2rem;
        /* Adjusted gap */
    }

    .feature-item i {
        font-size: 1.6rem;
        /* Adjusted size */
        color: var(--primary-color);
        background-color: rgba(249, 205, 65, 0.1);
        width: 55px;
        /* Adjusted size */
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .feature-item h4 {
        margin: 0 0 0.5rem;
        font-size: 1.15rem;
        /* Adjusted size */
    }

    .feature-item p {
        color: var(--text-muted);
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        /* Adjusted line height */
    }

    /* Trust Section Styles */
    .trust-section {
        /* padding handled by section default */
        background-color: var(--darker-bg);
    }

    .trust-section::before {
        /* Existing ::before */
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(135deg, rgba(255, 69, 98, 0.03), rgba(249, 205, 65, 0.03) 100%);
        z-index: 1;
    }

    .trust-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center items vertically on small screens */
        gap: 3.5rem;
        /* Increased gap */
    }

    .trust-visual {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        /* Increased gap */
        width: 100%;
        /* Ensure takes width */
        max-width: 500px;
        /* Limit max width */
    }

    .trust-image-container {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .trust-image {
        width: 100%;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        border: 3px solid rgba(249, 205, 65, 0.15);
        /* Thicker border */
    }

    .trust-badge {
        position: absolute;
        bottom: -25px;
        /* Adjusted position */
        right: -25px;
        /* Adjusted position */
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: #000;
        border-radius: 50%;
        width: 95px;
        /* Slightly larger */
        height: 95px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        font-weight: 700;
        line-height: 1.2;
        padding: 5px;
        text-align: center;
        /* Center text */
        font-size: 0.9rem;
        /* Adjusted font size */
    }

    .trust-badge i {
        font-size: 1.6rem;
        /* Adjusted size */
        margin-bottom: 0.3rem;
    }

    .trust-badge span {
        display: block;
        /* Ensure span takes full width */
    }

    .trust-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        /* Increased gap */
        width: 100%;
        /* Ensure takes width */
    }

    .info-card {
        display: flex;
        flex-direction: column;
        /* Stack icon and text vertically on small screens */
        align-items: center;
        text-align: center;
        gap: 1rem;
        /* Adjusted gap */
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2rem;
        /* Increased padding */
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(249, 205, 65, 0.15);
    }

    .card-icon {
        background: linear-gradient(45deg, rgba(249, 205, 65, 0.15), rgba(255, 69, 98, 0.15));
        width: 65px;
        /* Slightly larger */
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-bottom: 0.5rem;
        /* Add space below icon */
    }

    .card-icon i {
        font-size: 1.7rem;
        /* Adjusted size */
        color: var(--primary-color);
    }

    .card-text h3 {
        font-size: 1.25rem;
        /* Adjusted size */
        margin: 0 0 0.75rem;
    }

    .card-text p {
        color: var(--text-muted);
        margin: 0;
        font-size: 1rem;
        /* Adjusted size */
        line-height: 1.6;
    }

    .compare-table-container {
        margin-top: 2rem;
        /* Increased margin */
        width: 100%;
        /* Ensure takes full width */
    }

    .compare-table-container h3 {
        font-size: 1.3rem;
        /* Adjusted size */
        margin: 0 0 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Center heading */
        gap: 0.6rem;
    }

    .compare-table-container h3 i {
        color: var(--primary-color);
        font-size: 1.2rem;
        /* Match text size */
    }

    .compare-table {
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        /* Add border */
    }

    .compare-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.2);
        /* Darker header bg */
    }

    .compare-header .compare-cell {
        background-color: transparent;
        /* Remove individual bg colors */
        padding: 0.9rem 1rem;
        /* Adjusted padding */
        text-align: center;
    }

    .compare-header .direct {
        color: var(--primary-color);
    }

    .compare-header .agent {
        color: var(--secondary-color);
    }

    .compare-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        border-bottom: 1px solid var(--border-color);
    }

    .compare-row:last-child {
        border-bottom: none;
    }

    .compare-cell {
        padding: 0.9rem 1rem;
        /* Adjusted padding */
        background-color: var(--card-bg);
        text-align: center;
        /* Center cell content */
        display: flex;
        /* Use flex for alignment */
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        /* Add gap for icons */
    }

    .compare-cell:first-child {
        justify-content: flex-start;
        /* Align first cell text left */
        text-align: left;
        font-weight: 600;
        /* Slightly bolder feature name */
    }

    .compare-cell.direct {
        background-color: rgba(249, 205, 65, 0.05);
    }

    .compare-cell.agent {
        background-color: rgba(255, 69, 98, 0.05);
    }

    .compare-cell i {
        font-size: 1.1rem;
        /* Consistent icon size */
    }

    .compare-cell i.fa-check {
        color: #4CAF50;
    }

    .compare-cell i.fa-times {
        color: var(--secondary-color);
    }

    .cta-btn {
        margin-top: 2.5rem;
        /* Increased margin */
        align-self: center;
    }

    .testimonials {
        background-color: var(--dark-bg);
        padding: var(--section-padding);
        /* Use standard padding */
        margin-top: 0;
        /* Remove top margin, handled by section spacing */
    }

    .testimonial-heading {
        text-align: center;
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        /* Responsive heading */
        margin-bottom: 3rem;
        color: var(--text-color);
    }

    .testimonial-slider {
        display: grid;
        /* Use grid for better control */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        /* Increased gap */
    }

    .testimonial-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2.5rem;
        /* Increased padding */
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        transition: var(--transition);
        height: 100%;
        /* Equal height cards */
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(249, 205, 65, 0.15);
    }

    .testimonial-rating {
        color: var(--primary-color);
        font-size: 1.1rem;
        /* Adjusted size */
        margin-bottom: 1.2rem;
    }

    .testimonial-text {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.7;
        /* Increased line height */
        margin-bottom: 1.5rem;
        font-style: italic;
        flex-grow: 1;
        /* Push author to bottom */
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: auto;
        /* Stick to bottom */
    }

    .testimonial-author i {
        font-size: 1.6rem;
        /* Adjusted size */
        color: var(--text-muted);
    }

    .testimonial-author span {
        font-weight: 700;
        color: var(--text-color);
        /* Ensure name is white */
    }

    /* Game Variety Section Styles */
    .game-variety-section {
        /* padding handled by section default */
        background-color: var(--dark-bg);
    }

    .game-variety-section::before {
        /* Existing ::before */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiMyMjIiLz48L3N2Zz4=');
        opacity: 0.03;
        z-index: 1;
    }

    .games-showcase {
        margin-bottom: 4rem;
    }

    .game-highlight {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* Remove gap, handled by padding */
        margin-bottom: 3rem;
        /* Increased margin */
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
    }

    .game-preview {
        position: relative;
        overflow: hidden;
        height: 280px;
        /* Increased height */
    }

    .preview-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .game-highlight:hover .preview-image {
        transform: scale(1.05);
    }

    .game-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
        /* Darker gradient */
        padding: 1.75rem;
        /* Increased padding */
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        /* Allow wrapping */
        gap: 1rem;
        /* Add gap for wrapping */
    }

    .game-stats {
        display: flex;
        gap: 1.75rem;
        /* Increased gap */
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        /* Center text */
    }

    .stat-value {
        font-size: 1.3rem;
        /* Adjusted size */
        font-weight: 700;
        color: var(--primary-color);
    }

    .stat-label {
        font-size: 0.85rem;
        /* Adjusted size */
        color: var(--text-muted);
        text-transform: uppercase;
        /* Uppercase label */
        letter-spacing: 0.5px;
    }

    .btn-play {
        background-color: var(--primary-color);
        color: #000;
        border-radius: 50px;
        padding: 0.7rem 1.4rem;
        /* Adjusted padding */
        display: inline-flex;
        /* Changed to inline-flex */
        align-items: center;
        gap: 0.6rem;
        /* Adjusted gap */
        font-weight: 700;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        /* Adjusted size */
        flex-shrink: 0;
        /* Prevent shrinking */
    }

    .btn-play i {
        font-size: 1rem;
        /* Match text size */
    }

    .btn-play:hover {
        transform: translateY(-3px) scale(1.05);
        /* Added scale */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .game-info {
        padding: 2rem 2.5rem;
        /* Increased padding */
    }

    .game-header {
        display: flex;
        flex-wrap: wrap;
        /* Allow wrap */
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        /* Add gap */
        margin-bottom: 1.2rem;
        /* Increased margin */
    }

    .game-header h3 {
        font-size: 1.5rem;
        /* Adjusted size */
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .game-header h3 i {
        color: var(--primary-color);
        font-size: 1.3rem;
        /* Match text size */
    }

    .live-badge {
        background: linear-gradient(45deg, #ff4562, #ff7676);
        color: white;
        padding: 0.35rem 0.9rem;
        /* Adjusted padding */
        border-radius: 5px;
        /* Slightly less rounded */
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        display: inline-flex;
        /* Changed to inline-flex */
        align-items: center;
    }

    .live-badge::before {
        /* Existing ::before animation */
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: white;
        border-radius: 50%;
        margin-right: 6px;
        animation: pulse 1.5s infinite;
    }

    .game-info p {
        color: var(--text-muted);
        line-height: 1.7;
        /* Increased line height */
        margin-bottom: 1.75rem;
        /* Increased margin */
        font-size: 1rem;
        /* Adjusted size */
    }

    .game-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        /* Increased gap */
    }

    .feature-tag {
        background-color: rgba(0, 0, 0, 0.35);
        /* Slightly darker */
        border-radius: 50px;
        padding: 0.5rem 1.1rem;
        /* Increased padding */
        font-size: 0.9rem;
        color: var(--text-muted);
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
    }

    .feature-tag i {
        color: var(--primary-color);
        font-size: 0.9rem;
        /* Match text size */
    }

    .game-types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* Responsive grid */
        gap: 1.75rem;
        /* Increased gap */
        margin-bottom: 4rem;
    }

    .game-type-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 1.75rem;
        /* Increased padding */
        display: flex;
        flex-direction: column;
        /* Stack vertically */
        align-items: center;
        /* Center align */
        text-align: center;
        /* Center text */
        gap: 1rem;
        /* Adjusted gap */
        transition: all 0.3s ease;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        height: 100%;
        /* Equal height */
    }

    .game-type-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        border-color: rgba(249, 205, 65, 0.15);
    }

    .game-icon {
        width: 65px;
        /* Slightly larger */
        height: 65px;
        min-width: 65px;
        background: linear-gradient(45deg, rgba(249, 205, 65, 0.2), rgba(255, 69, 98, 0.2));
        border-radius: 16px;
        /* Less rounded */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        /* Space below icon */
    }

    .game-icon i {
        font-size: 2rem;
        /* Adjusted size */
        color: var(--primary-color);
    }

    .game-type-content {
        flex: 1;
        /* Take remaining space */
        display: flex;
        flex-direction: column;
    }

    .game-type-content h3 {
        font-size: 1.25rem;
        /* Adjusted size */
        margin: 0 0 0.5rem;
    }

    .game-type-content p {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 1rem;
        flex-grow: 1;
        /* Push button down */
    }

    .game-type-card .btn-sm {
        margin-top: auto;
        /* Push button to bottom */
        border-width: 2px;
        /* Make border thicker */
    }

    .slot-providers {
        margin-bottom: 4rem;
    }

    .providers-title {
        text-align: center;
        font-size: 1.8rem;
        /* Adjusted size */
        margin-bottom: 2.5rem;
        /* Increased margin */
        color: var(--text-color);
    }

    .providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        /* More columns on larger screens */
        gap: 1.5rem;
    }

    .provider-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 1.75rem 1rem;
        /* Adjusted padding */
        text-align: center;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        /* Equal height */
    }

    .provider-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        border-color: rgba(249, 205, 65, 0.15);
    }

    .provider-logo {
        width: 65px;
        /* Adjusted size */
        height: 65px;
        margin: 0 auto 1.2rem;
        /* Increased margin */
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        border-radius: 16px;
        /* Match game-icon */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        font-weight: 700;
        color: #000;
    }

    .provider-card h4 {
        font-size: 1.15rem;
        /* Adjusted size */
        margin: 0 0 0.75rem;
    }

    .provider-card p {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        /* Increased margin */
        flex-grow: 1;
        /* Push count down */
    }

    .games-count {
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.35);
        padding: 0.4rem 0.9rem;
        /* Adjusted padding */
        border-radius: 50px;
        font-size: 0.8rem;
        color: var(--primary-color);
        font-weight: 600;
        /* Bolder count */
        margin-top: auto;
        /* Push to bottom */
    }

    .games-cta {
        background: linear-gradient(45deg, rgba(249, 205, 65, 0.1), rgba(255, 69, 98, 0.1));
        border-radius: var(--border-radius);
        padding: 3.5rem 2rem;
        /* Increased padding */
        text-align: center;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
    }

    .cta-content h3 {
        font-size: clamp(1.6rem, 4vw, 2rem);
        /* Responsive heading */
        margin: 0 0 1rem;
        color: var(--text-color);
    }

    .cta-content p {
        color: var(--text-muted);
        max-width: 700px;
        margin: 0 auto 2.5rem;
        /* Increased margin */
        font-size: 1.1rem;
    }

    /* Payment Methods Section Styles */
    .payment-section {
        /* padding handled by section default */
        background-color: var(--darker-bg);
    }

    .payment-section::before {
        /* Existing ::before */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at top right, rgba(249, 205, 65, 0.04), transparent 70%);
        z-index: 1;
    }

    .payment-content {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
        /* Increased gap */
        margin-bottom: 4rem;
    }

    .payment-info {
        flex: 1;
    }

    .payment-intro {
        margin-bottom: 3rem;
        /* Increased margin */
    }

    .highlight-text {
        font-size: 1.2rem;
        /* Slightly larger */
        line-height: 1.7;
        color: var(--text-color);
        border-left: 4px solid var(--primary-color);
        padding-left: 1.75rem;
        /* Increased padding */
    }
    
    /* New Payment Section Styles */
    .wallet-highlight {
        display: flex;
        align-items: center;
        background: linear-gradient(45deg, rgba(255, 69, 98, 0.05) 0%, rgba(249, 205, 65, 0.1) 100%);
        border-radius: var(--border-radius);
        padding: 2.5rem;
        margin-bottom: 3.5rem;
        border: 1px solid rgba(249, 205, 65, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .wallet-logo {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #FF0060, #FF4560);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .wallet-logo i {
        font-size: 2rem;
        color: white;
    }
    
    .wallet-message {
        flex: 1;
        min-width: 250px;
    }
    
    .wallet-message h3 {
        margin: 0 0 0.6rem;
        font-size: 1.4rem;
        color: var(--text-color);
    }
    
    .wallet-message p {
        margin: 0;
        color: var(--text-muted);
        line-height: 1.5;
        font-size: 1.05rem;
    }
    
    .payment-process {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .process-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .process-features {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }
    
    .feature-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 1.75rem;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        transition: var(--transition);
        height: 100%;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(249, 205, 65, 0.15);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, rgba(249, 205, 65, 0.15), rgba(255, 69, 98, 0.15));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .feature-icon i {
        font-size: 1.4rem;
        color: var(--primary-color);
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-content h3 {
        font-size: 1.15rem;
        margin: 0 0 0.5rem;
    }
    
    .feature-content p {
        color: var(--text-muted);
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .payment-methods-container {
        margin-bottom: 4rem;
    }
    
    .payment-methods-container h3 {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.75rem;
    }
    
    .method-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .method-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(249, 205, 65, 0.15);
    }
    
    .method-icon {
        width: 65px;
        height: 65px;
        background: linear-gradient(45deg, rgba(249, 205, 65, 0.1), rgba(255, 69, 98, 0.1));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .method-icon i {
        font-size: 1.8rem;
        color: var(--primary-color);
    }
    
    .method-card h4 {
        font-size: 1.15rem;
        margin: 0 0 0.5rem;
    }
    
    .method-card p {
        color: var(--text-muted);
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .feature-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        /* Responsive grid */
        gap: 1.75rem;
        /* Increased gap */
    }
    
    /* Add responsive styles for the new elements */
    @media (max-width: 992px) {
        .payment-process {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        
        .wallet-highlight {
            flex-direction: column;
            text-align: center;
            padding: 2rem;
        }
        
        .wallet-message {
            text-align: center;
        }
    }
    
    @media (max-width: 767px) {
        .feature-row {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        
        .methods-grid {
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.25rem;
        }
        
        .wallet-highlight .btn {
            width: 100%;
        }
    }
    
    @media (max-width: 480px) {
        .wallet-logo {
            width: 60px;
            height: 60px;
        }
        
        .wallet-message h3 {
            font-size: 1.25rem;
        }
        
        .wallet-message p {
            font-size: 0.95rem;
        }
        
        .feature-card {
            padding: 1.5rem;
        }
        
        .method-icon {
            width: 55px;
            height: 55px;
            margin-bottom: 1.2rem;
        }
        
        .method-icon i {
            font-size: 1.5rem;
        }
    }

    .feature-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2rem;
        /* Increased padding */
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        transition: var(--transition);
        text-align: center;
        display: flex;
        /* Use flex for vertical alignment */
        flex-direction: column;
        align-items: center;
        height: 100%;
        /* Equal height */
    }
    
    /* Override for feature cards in payment-process */
    .process-features .feature-card {
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
        padding: 1.75rem;
    }
    
    /* Override for feature icons in payment-process */
    .process-features .feature-icon {
        margin: 0;
    }

    .faq-container {
        margin-bottom: 4rem;
        max-width: 900px;
        /* Limit width for readability */
        margin-left: auto;
        margin-right: auto;
    }

    .faq-container h3 {
        text-align: center;
        font-size: 1.8rem;
        /* Adjusted size */
        margin-bottom: 2.5rem;
        /* Increased margin */
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        /* Increased gap */
    }

    /* Reusing .faq-item styles from Security section for consistency */
    .faq-item {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        border: 1px solid var(--border-color);
        margin-bottom: 0;
        /* Remove margin, gap handles spacing */
        overflow: hidden;
    }

    .faq-question {
        padding: 1.35rem 1.5rem;
        /* Adjusted padding */
        display: flex;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-weight: 600;
        /* Bolder question */
        color: var(--text-color);
        position: relative;
        /* Needed for potential pseudo-elements */
    }

    .faq-question:hover {
        background-color: rgba(255, 255, 255, 0.03);
    }

    .faq-question i.fas.fa-question-circle {
        color: var(--primary-color);
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .faq-question h4 {
        /* Use h4 or span for question text */
        font-family: 'Sarabun', sans-serif;
        /* Use body font */
        font-size: 1.1rem;
        margin: 0;
        flex: 1;
        font-weight: 600;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
        /* Hide default marker for <details> */
    }

    .faq-item summary {
        list-style: none;
        /* Hide default marker for <details> */
    }

    .toggle-icon {
        color: var(--text-muted);
        transition: transform 0.3s ease;
        flex-shrink: 0;
        font-size: 1rem;
        margin-left: auto;
        /* Push icon to the right */
    }

    .faq-item[open] .toggle-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 1.5rem 1.35rem calc(1.5rem + 1.25rem + 1rem);
        /* Align with question text */
        /* display: none; handled by details */
    }

    .faq-answer p {
        color: var(--text-muted);
        margin: 0;
        line-height: 1.7;
        /* Increased line height */
        font-size: 0.95rem;
    }

    /* Ensure details content animates smoothly (optional) */
    .faq-item details .faq-answer {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        padding-top: 0;
        padding-bottom: 0;
    }

    .faq-item details[open] .faq-answer {
        max-height: 500px;
        /* Adjust as needed */
        padding-top: 0;
        /* Keep top padding 0 */
        padding-bottom: 1.35rem;
        /* Apply bottom padding when open */
    }


    .payment-cta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        /* Increased gap */
        padding: 2.5rem 0 0;
        /* Adjusted padding */
    }

    .cta-separator {
        color: var(--text-muted);
        font-weight: 700;
        font-size: 1rem;
        /* Added size */
    }

    /* Security Section Styles */
    .security-section {
        /* padding handled by section default */
        background-color: var(--dark-bg);
    }

    .security-section::before {
        /* Existing ::before */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), transparent);
        z-index: 1;
    }

    .security-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        /* Responsive grid */
        gap: 1.75rem;
        /* Increased gap */
        margin-bottom: 3.5rem;
        /* Increased margin */
    }

    .security-card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2rem;
        /* Increased padding */
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
        /* Equal height */
    }

    .security-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(249, 205, 65, 0.15);
    }

    .primary-card {
        border-color: rgba(249, 205, 65, 0.2);
        background: linear-gradient(to bottom, var(--card-bg), rgba(30, 30, 46, 1));
    }

    .security-card .card-icon {
        /* Reuse card-icon style */
        margin-bottom: 1.5rem;
        /* Increased margin */
        width: 65px;
        height: 65px;
    }

    .security-card .card-icon i {
        font-size: 1.7rem;
    }

    .security-card h3 {
        font-size: 1.35rem;
        /* Adjusted size */
        margin: 0 0 1rem;
    }

    .security-card p {
        color: var(--text-muted);
        margin: 0 0 1.5rem;
        line-height: 1.7;
        flex-grow: 1;
        font-size: 0.95rem;
    }

    .security-features {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
        /* Push to bottom */
    }

    .security-features li {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        /* Adjusted gap */
        margin-bottom: 0.8rem;
        /* Adjusted margin */
        color: var(--text-color);
        font-size: 0.95rem;
        /* Adjusted size */
    }

    .security-features li:last-child {
        margin-bottom: 0;
    }

    .security-features i {
        color: var(--primary-color);
        font-size: 1rem;
        /* Match text size */
        width: 20px;
        /* Ensure alignment */
        text-align: center;
    }

    .secure-transactions {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2.5rem;
        /* Increased padding */
        box-shadow: var(--box-shadow);
        margin-bottom: 3.5rem;
        /* Increased margin */
        border: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center content */
        text-align: center;
        /* Center text */
    }

    .secure-transaction-content h3 {
        font-size: 1.6rem;
        /* Adjusted size */
        margin: 0 0 1rem;
        display: inline-flex;
        /* Align icon inline */
        align-items: center;
        gap: 0.8rem;
    }

    .secure-transaction-content h3 i {
        color: var(--primary-color);
        font-size: 1.4rem;
        /* Match text */
    }

    .secure-transaction-content p {
        color: var(--text-muted);
        margin: 0 auto 2rem;
        /* Center paragraph */
        line-height: 1.7;
        max-width: 700px;
        /* Limit width */
    }

    .security-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        /* Increased gap */
        margin-bottom: 2.5rem;
        /* Increased margin */
        justify-content: center;
        /* Center stats */
    }

    .security-stats .stat-item {
        /* Reusing stat-item style */
        text-align: center;
    }

    .security-stats .stat-value {
        font-size: 2.2rem;
        /* Adjusted size */
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1.2;
    }

    .security-stats .stat-label {
        color: var(--text-muted);
        font-size: 0.9rem;
        text-transform: uppercase;
        /* Uppercase label */
        letter-spacing: 0.5px;
    }

    .secure-badges {
        display: flex;
        justify-content: center;
        gap: 1.75rem;
        /* Increased gap */
        flex-wrap: wrap;
        margin-top: 1rem;
        /* Added margin */
    }

    .secure-badge {
        width: 75px;
        /* Slightly larger */
        height: 75px;
        background: radial-gradient(circle, rgba(249, 205, 65, 0.15), rgba(255, 69, 98, 0.15));
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        /* Add subtle border */
    }

    .secure-badge i {
        color: var(--primary-color);
        font-size: 1.3rem;
    }

    .secure-badge span {
        font-weight: 600;
        /* Adjusted weight */
        font-size: 0.85rem;
        /* Adjusted size */
        color: var(--text-muted);
        /* Muted text */
    }

    .responsible-gaming {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 2.5rem;
        /* Increased padding */
        box-shadow: var(--box-shadow);
        margin-bottom: 3.5rem;
        /* Increased margin */
        border: 1px solid var(--border-color);
    }

    .responsible-gaming h3 {
        font-size: 1.6rem;
        /* Adjusted size */
        margin: 0 0 1.5rem;
        /* Increased margin */
        text-align: center;
    }

    .responsible-intro {
        color: var(--text-muted);
        text-align: center;
        max-width: 800px;
        margin: 0 auto 2.5rem;
        /* Increased margin */
        line-height: 1.7;
    }

    .responsible-tools {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* Responsive grid */
        gap: 1.75rem;
        /* Increased gap */
        margin-bottom: 3.5rem;
        /* Increased margin */
    }

    .tool-item {
        display: flex;
        gap: 1.3rem;
        /* Adjusted gap */
        align-items: flex-start;
    }

    .tool-icon {
        width: 55px;
        /* Adjusted size */
        height: 55px;
        background-color: rgba(249, 205, 65, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .tool-icon i {
        color: var(--primary-color);
        font-size: 1.3rem;
    }

    .tool-info h4 {
        margin: 0 0 0.5rem;
        font-size: 1.15rem;
        /* Adjusted size */
    }

    .tool-info p {
        color: var(--text-muted);
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .warning-signs {
        background-color: rgba(255, 69, 98, 0.08);
        /* Slightly less intense */
        border-radius: var(--border-radius);
        padding: 2rem;
        /* Increased padding */
        border: 1px solid rgba(255, 69, 98, 0.2);
        margin-top: 2rem;
        /* Add margin top */
    }

    .warning-signs h4 {
        margin: 0 0 1.2rem;
        /* Adjusted margin */
        color: #ff4562;
        font-size: 1.2rem;
        /* Adjusted size */
    }

    .warning-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
    }

    .warning-list li {
        display: flex;
        align-items: flex-start;
        /* Align icon top */
        gap: 0.8rem;
        /* Adjusted gap */
        margin-bottom: 0.8rem;
        color: var(--text-color);
        font-size: 0.95rem;
        line-height: 1.6;
        /* Added line height */
    }

    .warning-list li:last-child {
        margin-bottom: 0;
    }

    .warning-list i {
        color: #ff4562;
        margin-top: 0.2em;
        /* Align icon better with text */
        flex-shrink: 0;
    }

    .help-text {
        color: var(--text-muted);
        margin: 0 0 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .warning-signs .btn-outline {
        /* Style the button inside warning */
        color: #ff4562;
        border-color: #ff4562;
    }

    .warning-signs .btn-outline:hover {
        background-color: #ff4562;
        color: white;
    }

    .security-faq {
        margin-bottom: 3.5rem;
        /* Increased margin */
        max-width: 900px;
        /* Limit width */
        margin-left: auto;
        margin-right: auto;
    }

    .security-faq .faq-item {
        /* Reuse FAQ item styles */
        margin-bottom: 1.2rem;
        /* Use margin for spacing */
    }

    .security-faq .faq-item:last-child {
        margin-bottom: 0;
    }

    .trust-seals {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem;
        /* Increased gap */
        margin-top: 2rem;
        /* Add margin top */
    }

    .seal-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        /* Increased gap */
        min-width: 80px;
        /* Minimum width */
    }

    .seal-icon {
        width: 65px;
        /* Adjusted size */
        height: 65px;
        background-color: var(--card-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--border-color);
    }

    .seal-icon i {
        font-size: 1.6rem;
        /* Adjusted size */
        color: var(--primary-color);
    }

    .seal-item span {
        font-size: 0.9rem;
        color: var(--text-muted);
        text-align: center;
    }

    /* Footer Styles */
    .site-footer {
        background-color: var(--darker-bg);
        padding: 5rem 1rem 2rem;
        /* Adjusted padding */
        position: relative;
        overflow: hidden;
    }

    .site-footer::before {
        /* Existing ::before */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(249, 205, 65, 0.02), transparent);
        /* More subtle gradient */
        pointer-events: none;
    }

    .footer-container {
        max-width: var(--container-max-width);
        margin: 0 auto;
        position: relative;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3.5rem;
        /* Increased margin */
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 3.5rem;
        /* Increased padding */
    }

    .footer-logo {
        max-width: 300px;
    }

    .footer-logo .logo-text {
        font-size: 2rem;
        /* Larger footer logo */
    }

    .tagline {
        color: var(--text-muted);
        margin-top: 1rem;
        font-size: 0.95rem;
        /* Adjusted size */
        line-height: 1.6;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        /* Responsive grid */
        gap: 2.5rem;
        /* Increased gap */
    }

    .footer-links-column h4 {
        font-size: 1.15rem;
        /* Adjusted size */
        margin: 0 0 1.5rem;
        /* Increased margin */
        color: var(--text-color);
    }

    .footer-links-column ul {
        list-style: none;
    }

    .footer-links-column li {
        margin-bottom: 0.85rem;
        /* Adjusted margin */
    }

    .footer-links-column a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.95rem;
        transition: var(--transition);
        display: inline-block;
    }

    .footer-links-column a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .footer-middle {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        /* Increased gap */
        margin-bottom: 3.5rem;
        /* Increased margin */
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 3.5rem;
        /* Increased padding */
    }

    .payment-methods h4,
    .social-links h4 {
        font-size: 1.15rem;
        /* Adjusted size */
        margin: 0 0 1.2rem;
        /* Adjusted margin */
        color: var(--text-color);
    }

    .payment-methods .payment-icons,
    .footer-middle .payment-icons {
        /* Target both payment icon sections */
        display: flex;
        flex-wrap: wrap;
        gap: 1.75rem;
        /* Increased gap */
    }

    .payment-methods .payment-icons i,
    .footer-middle .payment-icons i {
        font-size: 2.2rem;
        /* Adjusted size */
        color: var(--text-muted);
        transition: var(--transition);
    }

    .payment-methods .payment-icons i:hover,
    .footer-middle .payment-icons i:hover {
        color: var(--primary-color);
        transform: scale(1.1);
        /* Scale effect */
    }

    .social-icons {
        display: flex;
        gap: 1.2rem;
        /* Increased gap */
    }

    .social-icons a {
        width: 44px;
        /* Slightly larger */
        height: 44px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        transition: var(--transition);
        font-size: 1.1rem;
        /* Increase icon size */
    }

    .social-icons a:hover {
        background-color: var(--primary-color);
        color: var(--darker-bg);
        transform: translateY(-3px) scale(1.1);
        /* Added scale */
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding-top: 2rem;
        /* Add padding top */
    }

    .footer-info {
        text-align: center;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
        /* Row and column gap */
        margin-bottom: 1.5rem;
    }

    .legal-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .legal-links a:hover {
        color: var(--primary-color);
        text-decoration: underline;
        /* Add underline on hover */
    }

    .copyright {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin: 0 0 0.5rem;
    }

    .disclaimer {
        color: var(--text-muted);
        font-size: 0.85rem;
        /* Adjusted size */
        margin: 0;
    }

    .footer-bottom .security-badges {
        /* Target footer badges */
        display: flex;
        gap: 1.5rem;
    }

    .footer-bottom .security-badges .badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .footer-bottom .security-badges .badge i {
        color: var(--primary-color);
        font-size: 1.1rem;
        /* Larger icon */
    }

    /* Sticky Bottom Buttons */
    .sticky-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        /* Slightly taller */
        background-color: rgba(10, 10, 10, 0.97);
        /* Slightly more opaque */
        display: flex;
        justify-content: space-around;
        align-items: stretch;
        /* Stretch items */
        box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.4);
        /* Stronger shadow */
        z-index: 990;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .sticky-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        height: 100%;
        transition: background-color 0.3s ease, color 0.3s ease;
        /* Smoother transition */
        padding: 0.5rem 0.25rem;
        /* Adjust padding */
        gap: 0.2rem;
        /* Reduce gap */
        color: var(--text-muted);
        /* Default muted color */
        border-top: 2px solid transparent;
        /* Add top border for hover effect */
    }

    .sticky-btn i {
        font-size: 1.3rem;
        /* Adjusted size */
        margin-bottom: 0;
        /* Remove margin */
        line-height: 1;
        /* Ensure icon is centered */
    }

    .sticky-btn span {
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.2;
        /* Adjust line height */
        text-align: center;
        /* Ensure text is centered */
    }

    .sticky-btn:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--primary-color);
        border-top-color: var(--primary-color);
        /* Highlight top border */
    }

    .sticky-btn.login-btn {
        /* Keep specific styles if needed */
        color: var(--text-color);
    }

    .sticky-btn.login-btn:hover {
        color: var(--primary-color);
    }

    .sticky-btn.register-btn {
        color: var(--primary-color);
        background-color: rgba(249, 205, 65, 0.1);
    }

    .sticky-btn.register-btn:hover {
        background-color: rgba(249, 205, 65, 0.2);
        color: var(--primary-color);
        border-top-color: var(--primary-color);
    }

    .sticky-btn.promo-btn {
        color: var(--secondary-color);
        /* Use secondary color */
        background-color: rgba(255, 69, 98, 0.1);
    }

    .sticky-btn.promo-btn:hover {
        background-color: rgba(255, 69, 98, 0.2);
        color: var(--secondary-color);
        border-top-color: var(--secondary-color);
    }


    /* --- Media Queries --- */

    /* Tablet Styles */
    @media (min-width: 1050px) {
        body {
            padding-bottom: 70px;
            /* Adjust for potentially taller sticky bar */
            font-size: 16px;
            /* Reset base font size if needed */
        }

        /* Header */
        .main-nav {
            display: flex;
        }

        .header-buttons {
            display: flex;
        }

        .mobile-toggle {
            display: none;
        }

        /* Hero */
        .hero-container {
            flex-direction: row;
            gap: 3rem;
            align-items: center;
            text-align: left;
            /* Align text left */
        }

        .hero-content {
            text-align: left;
            /* Ensure text is left aligned */
            margin-top: 0;
        }

        .hero-cta {
            justify-content: flex-start;
            /* Align buttons left */
        }

        .hero-description {
            margin-left: 0;
            /* Align left */
            margin-right: 0;
        }

        .hero-badges {
            justify-content: flex-start;
            /* Align left */
            width: auto;
            /* Allow natural width */
            margin-top: 2rem;
            /* Add margin */
            position: static;
            /* Ensure it's not absolutely positioned */
        }

        .hero-features {
            grid-template-columns: repeat(4, 1fr);
            margin-top: 4rem;
            /* Increase margin */
        }

        /* Game Categories */
        .featured-card {
            grid-column: span 2;
            /* Take 2 columns */
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            /* Remove gap */
        }

        .featured-card .card-image {
            height: 100%;
            /* Full height */
        }

        .featured-card .card-content {
            padding: 2rem;
            /* Adjust padding */
        }

        .category-features {
            grid-template-columns: repeat(3, 1fr);
        }

        /* Trust */
        .trust-content {
            flex-direction: row;
            align-items: flex-start;
            /* Align items top */
        }

        .info-card {
            flex-direction: row;
            /* Icon and text side-by-side */
            text-align: left;
            align-items: flex-start;
        }

        .card-icon {
            margin-bottom: 0;
            /* Remove bottom margin */
        }

        .compare-table-container h3 {
            justify-content: flex-start;
            /* Align left */
        }

        /* Game Variety */
        .game-highlight {
            flex-direction: row;
            gap: 0;
            /* Remove gap */
        }

        .game-preview {
            width: 45%;
            /* Adjust width */
            height: auto;
            /* Auto height */
        }

        .game-info {
            width: 55%;
            /* Adjust width */
            padding: 2.5rem;
        }

        .game-types-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            /* Adjust minmax */
        }

        /* Payment */
        .payment-content {
            flex-direction: row;
            align-items: flex-start;
        }

        .methods-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            /* Adjust minmax */
        }

        /* Security */
        .security-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .primary-card {
            grid-column: span 2;
            /* Primary card spans 2 columns */
        }

        .secure-transactions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }

        .secure-transaction-content {
            flex: 1;
            padding-right: 2rem;
        }

        .secure-badges {
            margin-top: 0;
        }

        .responsible-tools {
            grid-template-columns: repeat(2, 1fr);
        }

        /* Footer */
        .footer-top {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-middle {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            /* Vertically align items */
        }

        .footer-info {
            text-align: left;
        }

        .legal-links {
            justify-content: flex-start;
        }

        /* Sticky Buttons */
        .sticky-buttons {
            height: 70px;
            /* Taller bar on tablet+ */
        }

        .sticky-btn i {
            font-size: 1.4rem;
            /* Larger icon */
        }

        .sticky-btn span {
            font-size: 0.9rem;
            /* Larger text */
        }
    }

    /* Desktop Styles */
    @media (min-width: 992px) {

        /* Increase section padding */
        section {
            padding: 6rem 1rem;
        }

        /* Increase container padding */
        .section-container {
            padding: 0 2rem;
        }

        /* Header */
        .nav-list {
            gap: 2.2rem;
            /* Wider gap */
        }

        /* Hero */
        .hero-container {
            gap: 4rem;
            /* Wider gap */
        }

        .hero-features {
            margin-top: 5rem;
        }

        /* Game Categories */
        .category-grid {
            grid-template-columns: repeat(3, 1fr);
            /* 3 columns */
        }

        .featured-card {
            grid-column: span 3;
            /* Featured card spans all 3 */
        }

        /* Trust */
        .trust-info {
            padding-left: 3rem;
            /* More space */
        }

        .compare-table-container {
            margin-top: 2.5rem;
        }

        /* Game Variety */
        .game-types-grid {
            grid-template-columns: repeat(4, 1fr);
            /* 4 columns */
        }

        .providers-grid {
            grid-template-columns: repeat(5, 1fr);
            /* 5 columns */
        }

        /* Payment */
        .feature-cards {
            grid-template-columns: repeat(4, 1fr);
            /* 4 columns */
        }

        .payment-info {
            padding-right: 3rem;
        }

        /* Security */
        .security-grid {
            grid-template-columns: repeat(4, 1fr);
            /* 4 columns */
        }

        .primary-card {
            grid-column: span 2;
            /* Still span 2 */
        }

        .responsible-tools {
            grid-template-columns: repeat(4, 1fr);
        }

        /* Footer */
        .footer-links {
            grid-template-columns: repeat(3, 1fr);
            /* 3 columns */
        }

    }

    /* Smaller Mobile Styles */
    @media (max-width: 480px) {
        body {
            font-size: 15px;
            /* Slightly smaller base font */
            padding-top: 60px;
            /* Adjust if header height changes */
            padding-bottom: 60px;
            /* Ensure matches sticky bar */
        }

        .site-header {
            height: 60px;
            /* Smaller header */
        }

        .logo-text {
            font-size: 1.4rem;
            /* Smaller logo */
        }

        .section-header {
            margin-bottom: 2.5rem;
            /* Reduce margin */
        }

        h1 {
            line-height: 1.25;
        }

        h2 {
            line-height: 1.3;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            /* Adjust padding */
            font-size: 0.95rem;
        }

        .hero-container {
            padding-top: 4rem;
            /* Adjust padding */
            padding-bottom: 4rem;
        }

        .hero-cta {
            flex-direction: column;
            /* Stack buttons */
            align-items: stretch;
            /* Full width buttons */
        }

        .hero-cta .btn {
            width: 100%;
        }

        .feature {
            padding: 1.25rem;
        }

        .feature i {
            font-size: 1.8rem;
        }

        .feature h3 {
            font-size: 1.1rem;
        }

        .category-grid,
        .testimonial-slider,
        .game-types-grid,
        .providers-grid,
        .feature-cards,
        .methods-grid,
        .security-grid,
        .responsible-tools {
            gap: 1.25rem;
            /* Reduce gap */
        }

        .card-image {
            height: 180px;
            /* Reduce height */
        }

        .card-content,
        .info-card,
        .testimonial-card,
        .game-info,
        .game-type-card,
        .provider-card,
        .feature-card,
        .method-card,
        .security-card,
        .responsible-gaming,
        .warning-signs,
        .secure-transactions,
        .faq-item {
            padding: 1.5rem;
            /* Reduce padding */
        }

        .game-overlay {
            padding: 1rem;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .game-stats {
            width: 100%;
            justify-content: space-around;
        }

        .compare-header,
        .compare-row {
            grid-template-columns: 1.5fr 1fr 1fr;
            /* Adjust columns slightly */
        }

        .compare-cell {
            padding: 0.6rem 0.75rem;
            font-size: 0.9rem;
        }

        .compare-cell:first-child {
            font-weight: 500;
        }

        .device-frame {
            transform: none;
            padding: 1.25rem;
        }

        .faq-question {
            padding: 1rem;
        }

        .faq-question h4 {
            font-size: 1rem;
        }

        .faq-answer {
            padding: 0 1rem 1rem calc(1rem + 1.25rem + 0.8rem);
            /* Adjust padding */
        }

        .footer-top,
        .footer-middle,
        .footer-bottom {
            padding-bottom: 2.5rem;
            margin-bottom: 2.5rem;
            gap: 2rem;
        }

        .footer-links {
            grid-template-columns: 1fr;
            /* Stack links */
            text-align: center;
        }

        .footer-links-column h4 {
            margin-bottom: 1rem;
        }

        .payment-methods,
        .social-links {
            align-items: center;
            text-align: center;
        }

        .payment-icons,
        .social-icons {
            justify-content: center;
        }

        .legal-links {
            gap: 0.8rem 1.5rem;
        }

        .sticky-buttons {
            height: 60px;
            /* Ensure correct height */
        }

        .sticky-btn i {
            font-size: 1.2rem;
        }

        .sticky-btn span {
            font-size: 0.75rem;
        }
    }

    @media (min-width: 1080px) {
        .hero-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
        
        .hero-content {
            text-align: left;
        }
    }

    @media (max-width: 1079px) {
        .hero-container {
            flex-direction: column-reverse;
            text-align: center;
        }
        
        .hero-content {
            text-align: center;
        }
    }

    @media (max-width: 1050px) {
        .hero-features {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }

    @media (max-width: 600px) {
        .hero-features {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    @media (min-width: 1080px) {
        .hero-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
        
        .hero-content {
            text-align: left;
        }
    }

    /* Device mockup styles */
    .device-mockup {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        perspective: 1000px;
    }
    
    .device-frame {
        width: 100%;
        background-color: var(--card-bg);
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        padding: 1.75rem;
        transform: rotateY(-3deg) rotateX(3deg);
        border: 1px solid var(--border-color);
        overflow: hidden;
        transition: transform 0.4s ease;
    }
    
    .device-mockup:hover .device-frame {
        transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    }
    
    .demo-content {
        background-color: #101016;
        border-radius: 14px;
        overflow: hidden;
    }
    
    .demo-header {
        background: linear-gradient(to right, #FF0060, #FF4560);
        padding: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
    }
    
    .demo-header i {
        font-size: 1.4rem;
    }
    
    .demo-steps {
        padding: 1.75rem;
    }
    
    .step {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        margin-bottom: 1.75rem;
        opacity: 0.8;
        transition: var(--transition);
    }
    
    .step:last-child {
        margin-bottom: 0;
    }
    
    .step:hover {
        opacity: 1;
        transform: translateX(5px);
    }
    
    .step.done {
        opacity: 1;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--text-muted);
        flex-shrink: 0;
        font-size: 1rem;
    }
    
    .step.done .step-number {
        background-color: rgba(76, 175, 80, 0.25);
        color: #4CAF50;
    }
    
    .step.done .step-number i {
        font-size: 1.1rem;
    }
    
    .step-text h4 {
        margin: 0 0 0.3rem;
        font-size: 1.05rem;
        color: var(--text-color);
    }
    
    .step-text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.5;
    }

    /* --- Media Queries --- */

    /* Tablet Styles */
    @media (min-width: 1050px) {
        body {
            padding-bottom: 70px;
            /* Adjust for potentially taller sticky bar */
            font-size: 16px;
            /* Reset base font size if needed */
        }

        /* Header */
        .main-nav {
            display: flex;
        }

        .header-buttons {
            display: flex;
        }

        .mobile-toggle {
            display: none;
        }

        /* Hero */
        .hero-container {
            flex-direction: row;
            gap: 3rem;
            align-items: center;
            text-align: left;
            /* Align text left */
        }

        .hero-content {
            text-align: left;
            /* Ensure text is left aligned */
            margin-top: 0;
        }

        .hero-cta {
            justify-content: flex-start;
            /* Align buttons left */
        }

        .hero-description {
            margin-left: 0;
            /* Align left */
            margin-right: 0;
        }

        .hero-badges {
            justify-content: flex-start;
            /* Align left */
            width: auto;
            /* Allow natural width */
            margin-top: 2rem;
            /* Add margin */
            position: static;
            /* Ensure it's not absolutely positioned */
        }

        .hero-features {
            grid-template-columns: repeat(4, 1fr);
            margin-top: 4rem;
            /* Increase margin */
        }

        /* Game Categories */
        .featured-card {
            grid-column: span 2;
            /* Take 2 columns */
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            /* Remove gap */
        }

        .featured-card .card-image {
            height: 100%;
            /* Full height */
        }

        .featured-card .card-content {
            padding: 2rem;
            /* Adjust padding */
        }

        .category-features {
            grid-template-columns: repeat(3, 1fr);
        }

        /* Trust */
        .trust-content {
            flex-direction: row;
            align-items: flex-start;
            /* Align items top */
        }

        .info-card {
            flex-direction: row;
            /* Icon and text side-by-side */
            text-align: left;
            align-items: flex-start;
        }

        .card-icon {
            margin-bottom: 0;
            /* Remove bottom margin */
        }

        .compare-table-container h3 {
            justify-content: flex-start;
            /* Align left */
        }

        /* Game Variety */
        .game-highlight {
            flex-direction: row;
            gap: 0;
            /* Remove gap */
        }

        .game-preview {
            width: 45%;
            /* Adjust width */
            height: auto;
            /* Auto height */
        }

        .game-info {
            width: 55%;
            /* Adjust width */
            padding: 2.5rem;
        }

        .game-types-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            /* Adjust minmax */
        }

        /* Payment */
        .payment-content {
            flex-direction: row;
            align-items: flex-start;
        }

        .methods-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            /* Adjust minmax */
        }

        /* Security */
        .security-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .primary-card {
            grid-column: span 2;
            /* Primary card spans 2 columns */
        }

        .secure-transactions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }

        .secure-transaction-content {
            flex: 1;
            padding-right: 2rem;
        }

        .secure-badges {
            margin-top: 0;
        }

        .responsible-tools {
            grid-template-columns: repeat(2, 1fr);
        }

        /* Footer */
        .footer-top {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-middle {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            /* Vertically align items */
        }

        .footer-info {
            text-align: left;
        }

        .legal-links {
            justify-content: flex-start;
        }

        /* Sticky Buttons */
        .sticky-buttons {
            height: 70px;
            /* Taller bar on tablet+ */
        }

        .sticky-btn i {
            font-size: 1.4rem;
            /* Larger icon */
        }

        .sticky-btn span {
            font-size: 0.9rem;
            /* Larger text */
        }
    }

    /* Desktop Styles */
    @media (min-width: 992px) {

        /* Increase section padding */
        section {
            padding: 6rem 1rem;
        }

        /* Increase container padding */
        .section-container {
            padding: 0 2rem;
        }

        /* Header */
        .nav-list {
            gap: 2.2rem;
            /* Wider gap */
        }

        /* Hero */
        .hero-container {
            gap: 4rem;
            /* Wider gap */
        }

        .hero-features {
            margin-top: 5rem;
        }

        /* Game Categories */
        .category-grid {
            grid-template-columns: repeat(3, 1fr);
            /* 3 columns */
        }

        .featured-card {
            grid-column: span 3;
            /* Featured card spans all 3 */
        }

        /* Trust */
        .trust-info {
            padding-left: 3rem;
            /* More space */
        }

        .compare-table-container {
            margin-top: 2.5rem;
        }

        /* Game Variety */
        .game-types-grid {
            grid-template-columns: repeat(4, 1fr);
            /* 4 columns */
        }

        .providers-grid {
            grid-template-columns: repeat(5, 1fr);
            /* 5 columns */
        }

        /* Payment */
        .feature-cards {
            grid-template-columns: repeat(4, 1fr);
            /* 4 columns */
        }

        .payment-info {
            padding-right: 3rem;
        }

        /* Security */
        .security-grid {
            grid-template-columns: repeat(4, 1fr);
            /* 4 columns */
        }

        .primary-card {
            grid-column: span 2;
            /* Still span 2 */
        }

        .responsible-tools {
            grid-template-columns: repeat(4, 1fr);
        }

        /* Footer */
        .footer-links {
            grid-template-columns: repeat(3, 1fr);
            /* 3 columns */
        }

    }

    /* Smaller Mobile Styles */
    @media (max-width: 480px) {
        body {
            font-size: 15px;
            /* Slightly smaller base font */
            padding-top: 60px;
            /* Adjust if header height changes */
            padding-bottom: 60px;
            /* Ensure matches sticky bar */
        }

        .site-header {
            height: 60px;
            /* Smaller header */
        }

        .logo-text {
            font-size: 1.4rem;
            /* Smaller logo */
        }

        .section-header {
            margin-bottom: 2.5rem;
            /* Reduce margin */
        }

        h1 {
            line-height: 1.25;
        }

        h2 {
            line-height: 1.3;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            /* Adjust padding */
            font-size: 0.95rem;
        }

        .hero-container {
            padding-top: 4rem;
            /* Adjust padding */
            padding-bottom: 4rem;
        }

        .hero-cta {
            flex-direction: column;
            /* Stack buttons */
            align-items: stretch;
            /* Full width buttons */
        }

        .hero-cta .btn {
            width: 100%;
        }

        .feature {
            padding: 1.25rem;
        }

        .feature i {
            font-size: 1.8rem;
        }

        .feature h3 {
            font-size: 1.1rem;
        }

        .category-grid,
        .testimonial-slider,
        .game-types-grid,
        .providers-grid,
        .feature-cards,
        .methods-grid,
        .security-grid,
        .responsible-tools {
            gap: 1.25rem;
            /* Reduce gap */
        }

        .card-image {
            height: 180px;
            /* Reduce height */
        }

        .card-content,
        .info-card,
        .testimonial-card,
        .game-info,
        .game-type-card,
        .provider-card,
        .feature-card,
        .method-card,
        .security-card,
        .responsible-gaming,
        .warning-signs,
        .secure-transactions,
        .faq-item {
            padding: 1.5rem;
            /* Reduce padding */
        }

        .game-overlay {
            padding: 1rem;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .game-stats {
            width: 100%;
            justify-content: space-around;
        }

        .compare-header,
        .compare-row {
            grid-template-columns: 1.5fr 1fr 1fr;
            /* Adjust columns slightly */
        }

        .compare-cell {
            padding: 0.6rem 0.75rem;
            font-size: 0.9rem;
        }

        .compare-cell:first-child {
            font-weight: 500;
        }

        .device-frame {
            transform: none;
            padding: 1.25rem;
        }

        .faq-question {
            padding: 1rem;
        }

        .faq-question h4 {
            font-size: 1rem;
        }

        .faq-answer {
            padding: 0 1rem 1rem calc(1rem + 1.25rem + 0.8rem);
            /* Adjust padding */
        }

        .footer-top,
        .footer-middle,
        .footer-bottom {
            padding-bottom: 2.5rem;
            margin-bottom: 2.5rem;
            gap: 2rem;
        }

        .footer-links {
            grid-template-columns: 1fr;
            /* Stack links */
            text-align: center;
        }

        .footer-links-column h4 {
            margin-bottom: 1rem;
        }

        .payment-methods,
        .social-links {
            align-items: center;
            text-align: center;
        }

        .payment-icons,
        .social-icons {
            justify-content: center;
        }

        .legal-links {
            gap: 0.8rem 1.5rem;
        }

        .sticky-buttons {
            height: 60px;
            /* Ensure correct height */
        }

        .sticky-btn i {
            font-size: 1.2rem;
        }

        .sticky-btn span {
            font-size: 0.75rem;
        }
    }

    @media (min-width: 1080px) {
        .hero-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
        
        .hero-content {
            text-align: left;
        }
    }

    @media (max-width: 1079px) {
        .hero-container {
            flex-direction: column-reverse;
            text-align: center;
        }
        
        .hero-content {
            text-align: center;
        }
    }

    @media (max-width: 1050px) {
        .hero-features {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }

    @media (max-width: 600px) {
        .hero-features {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    @media (min-width: 1080px) {
        .hero-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
        
        .hero-content {
            text-align: left;
        }
    }

    /* Device mockup styles */
    .device-mockup {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        perspective: 1000px;
    }
    
    .device-frame {
        width: 100%;
        background-color: var(--card-bg);
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        padding: 1.75rem;
        transform: rotateY(-3deg) rotateX(3deg);
        border: 1px solid var(--border-color);
        overflow: hidden;
        transition: transform 0.4s ease;
    }
    
    .device-mockup:hover .device-frame {
        transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    }
    
    .demo-content {
        background-color: #101016;
        border-radius: 14px;
        overflow: hidden;
    }
    
    .demo-header {
        background: linear-gradient(to right, #FF0060, #FF4560);
        padding: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
    }
    
    .demo-header i {
        font-size: 1.4rem;
    }
    
    .demo-steps {
        padding: 1.75rem;
    }
    
    .step {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        margin-bottom: 1.75rem;
        opacity: 0.8;
        transition: var(--transition);
    }
    
    .step:last-child {
        margin-bottom: 0;
    }
    
    .step:hover {
        opacity: 1;
        transform: translateX(5px);
    }
    
    .step.done {
        opacity: 1;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--text-muted);
        flex-shrink: 0;
        font-size: 1rem;
    }
    
    .step.done .step-number {
        background-color: rgba(76, 175, 80, 0.25);
        color: #4CAF50;
    }
    
    .step.done .step-number i {
        font-size: 1.1rem;
    }
    
    .step-text h4 {
        margin: 0 0 0.3rem;
        font-size: 1.05rem;
        color: var(--text-color);
    }
    
    .step-text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.5;
    }
