/* CSS Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100vw; /* Prevent horizontal overflow */
}

html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Segoe UI, Tahoma, Geneva, sans-serif;
    background-color: #1a0500; /* Theme BG */
    color: #fff0e0; /* Theme Text */
    line-height: 1.7;
    font-size: 16px; /* Base font size for rem calculations */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

main {
    flex: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; /* Ensure no horizontal scroll */
}

/* Global Image and Media */
img, canvas, iframe, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
}

/* Typography Scale */
h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.25; margin-bottom: 1.2rem; font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 2rem); line-height: 1.3; margin-bottom: 1rem; font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.5rem); line-height: 1.35; margin-bottom: 0.8rem; font-weight: 600; }
p, li, td, span { font-size: max(15px, 1rem); } /* Min 15px */
small, .small, figcaption, sub, sup, .legal, .disclaimer-text { font-size: max(13px, 0.82rem); } /* Min 13px */
a { color: #ffd700; text-decoration: none; transition: color 0.3s ease; } /* Theme Secondary for links */
a:hover { color: #ff8c00; text-decoration: underline; } /* Theme Accent on hover */

/* Color Theme Variables (can be added if needed, but using direct values for simplicity as per instructions) */
/* For example:
:root {
    --bg-color: #1a0500;
    --primary-color: #ff4500;
    --secondary-color: #ffd700;
    --accent-color: #ff8c00;
    --text-color: #fff0e0;
}
*/

/* Container */
.ckuzfa-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.ckuzfa-header {
    background: rgba(0, 0, 0, 0.5); /* Slightly transparent dark for glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* For Safari compatibility */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.ckuzfa-header .ckuzfa-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ckuzfa-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff0e0; /* Theme Text */
    text-decoration: none;
}

.ckuzfa-logo svg {
    vertical-align: middle;
    margin-right: 10px;
    width: 40px;
    height: 40px;
}

.ckuzfa-logo svg rect { fill: #ff4500; } /* Theme Primary */
.ckuzfa-logo svg path { fill: #ffffff; }

.ckuzfa-desktop-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ckuzfa-desktop-nav a {
    color: #fff0e0; /* Theme Text */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.ckuzfa-desktop-nav a::after {
    content: '';
    display: block;
    height: 2px;
    background: #ffd700; /* Theme Secondary */
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

.ckuzfa-desktop-nav a:hover {
    color: #ffd700; /* Theme Secondary */
}

.ckuzfa-desktop-nav a:hover::after {
    transform: scaleX(1);
}

.ckuzfa-age-flag {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff0e0; /* Theme Text */
    margin-right: 20px;
}

.ckuzfa-hamburger {
    display: none; /* Hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #fff0e0; /* Theme Text */
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 1.4rem;
    cursor: pointer;
    color: #fff0e0;
    transition: all 0.3s ease;
}
.ckuzfa-hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700; /* Theme Secondary */
    color: #ffd700;
}


.ckuzfa-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto; /* Enable scrolling if menu content is long */
}

.ckuzfa-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.ckuzfa-mobile-menu li {
    margin-bottom: 20px;
}

.ckuzfa-mobile-menu a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff0e0; /* Theme Text */
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.ckuzfa-mobile-menu a:hover {
    color: #ffd700; /* Theme Secondary */
}

.ckuzfa-close-menu {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.ckuzfa-close-menu:hover {
    color: #ff8c00; /* Theme Accent */
}

/* Disclosure Bar */
#ckuzfa-disclosure-bar {
    background: #08071e; /* Dark indigo base */
    color: #9fa8da;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.81em;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #283593; /* Lighter blue border */
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.ckuzfa-hero {
    display: flex;
    flex-wrap: wrap-reverse; /* Image first, text last for mobile stacking */
    justify-content: center;
    align-items: center; /* Center vertically */
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 600px; /* Ensure space for content and visual */
    background: url('dragonbg-luleygames.jpg') center center / cover no-repeat; /* Placeholder image */
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden; /* Clip content */
    border-radius: 0 0 40px 40px; /* Rounded bottom corners */
}

.ckuzfa-hero::before { /* Overlay for contrast and color */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.9) 0%, rgba(47, 12, 10, 0.85) 70%); /* Dragon Empire Dark Tint Gradient */
    z-index: 0;
}

.ckuzfa-hero-image-container { /* For the image on the right */
    flex: 1;
    min-width: 350px;
    max-width: 500px; /* Adjusted for better balance */
    z-index: 1;
    display: flex;
    justify-content: center; /* Center image if it doesn't fill container */
    align-items: center;
    padding: 20px; /* Add some padding around the image */
}

.ckuzfa-hero img {
    width: 100%;
    max-width: 500px; /* Ensure image doesn't exceed container width */
    aspect-ratio: 1/1; /* Square aspect ratio */
    object-fit: cover;
    border-radius: 50%; /* Circular image */
    border: 15px solid #1a0500; /* Theme BG color border */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); /* Deep shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ckuzfa-hero img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.ckuzfa-hero-text { /* For the text content on the left */
    flex: 1.5;
    min-width: 350px;
    padding-left: 50px;
    z-index: 2;
    text-align: left; /* Default to left, overridden by mobile */
}

.ckuzfa-hero-text h1 {
    color: #ffeb3b; /* Bright Yellow for main headline */
    margin-bottom: 20px;
}

.ckuzfa-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px; /* Prevent text from becoming too wide */
}

/* Call to Action Button */
.ckuzfa-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #ff4500, #ff8c00); /* Theme Primary to Accent gradient */
    color: #ffffff; /* White text */
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4); /* Accent shadow */
}

.ckuzfa-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
    background: linear-gradient(45deg, #ff8c00, #ff4500); /* Reversed gradient on hover */
}

/* Trust Badges/Chips */
.ckuzfa-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px;
    color: #fff0e0; /* Theme Text */
    text-shadow: 0 0 4px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(255,215,0,0.2); /* Secondary color subtle glow */
    transition: all 0.3s ease;
}

.ckuzfa-trust-badge .icon {
    color: #ffd700; /* Theme Secondary */
}

.ckuzfa-trust-badge:hover {
    background: rgba(255, 215, 0, 0.1); /* Secondary color background on hover */
    border-color: #ffd700;
    box-shadow: 0 0 18px rgba(255,215,0,0.4);
    color: #ffd700;
}

/* Animated Shimmer for Badges (Example - requires JS for dynamic application, or can be applied via CSS pseudo-elements if static) */
/* For static shimmer effect on specific elements, you might need to apply it manually. */
/* This is a placeholder animation; actual shimmer often needs more complex setup. */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}


/* Game Grid */
.ckuzfa-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
}

.ckuzfa-game-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.08); /* Subtle transparent white background */
    border: 6px solid #000; /* Neo-brutalist thick black border */
    box-shadow: 12px 12px 0px #000; /* Neo-brutalist hard drop shadow */
}

.ckuzfa-game-card img {
    width: 100%;
    height: 240px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 6px solid #000; /* Match card border */
    filter: grayscale(20%) contrast(120%); /* Enhanced image look */
    transition: filter 0.3s ease;
}

.ckuzfa-game-card:hover {
    transform: translateY(4px) scale(1.01); /* Push down and slightly scale */
    box-shadow: 6px 6px 0px #000; /* Reduced shadow on hover */
}

.ckuzfa-game-card:hover img {
    filter: grayscale(0%) contrast(100%); /* Restore color on hover */
}

.ckuzfa-game-card-info {
    padding: 20px;
    text-align: center;
}

.ckuzfa-game-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700; /* Theme Secondary */
}

.ckuzfa-game-card-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Content Section Styling */
.ckuzfa-content-section {
    padding: 80px 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify; /* Justify text for a formal look */
    position: relative;
    overflow: hidden; /* For background stripes */
}

.ckuzfa-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%; /* Start slightly off-screen */
    width: 110%; /* Span wider than the container */
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 140, 0, 0.03), /* Theme Accent at low opacity */
        rgba(255, 140, 0, 0.03) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
    opacity: 0.7;
    pointer-events: none; /* So it doesn't interfere with interaction */
}

.ckuzfa-content-section .ckuzfa-container {
    position: relative; /* Ensure container content is above the stripe */
    z-index: 1;
}

.ckuzfa-content-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ff4500; /* Theme Primary */
}

.ckuzfa-content-section p {
    margin-bottom: 1.5em;
    max-width: 800px; /* Limit line length for readability */
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.ckuzfa-footer {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2); /* Darker, less transparent than header */
    margin-top: auto; /* Pushes footer to bottom if content is short */
    width: 100%;
    box-sizing: border-box;
}

.ckuzfa-footer .ckuzfa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ckuzfa-footer ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ckuzfa-footer li {
    margin: 0;
}

.ckuzfa-footer a {
    color: #9fa8da; /* Lighter text for footer links */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ckuzfa-footer a:hover {
    color: #ffd700; /* Theme Secondary */
    text-decoration: underline;
}

.ckuzfa-footer-contact {
    margin-top: 20px;
    font-size: 0.85em;
    text-align: center;
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #9fa8da;
}

.ckuzfa-footer-contact span {
    display: block;
}

.ckuzfa-footer-contact a {
    color: #9fa8da;
}

.ckuzfa-footer-contact a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.ckuzfa-footer > div > div:nth-of-type(2) { /* Container for the 18+ badge and legal text */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
    width: 100%;
    text-align: justify; /* Default justify for legal text */
    font-size: 0.9rem;
    color: #e0e0e0; /* Lighter text for legal */
}

.ckuzfa-footer-badge { /* Specific badge for "NO REAL MONEY GAMING" */
    display: inline-block;
    background: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #ffeb3b; /* Bright Yellow Border */
    font-weight: bold;
}

.ckuzfa-footer-badge strong {
    color: #ffeb3b; /* Bright Yellow text */
    display: block;
    font-size: 1.05rem;
}

.ckuzfa-footer-badge span {
    font-size: 0.9em;
    opacity: 0.8;
    color: #fff0e0; /* Theme Text */
}

.ckuzfa-footer p {
    margin-bottom: 15px;
    font-size: 0.9em;
    opacity: 0.9;
    line-height: 1.6;
    color: #e0e0e0;
}

.ckuzfa-footer p strong {
    color: #fff0e0; /* Theme Text */
}

.ckuzfa-footer a {
    color: #ffeb3b; /* Yellow for links in legal text */
    text-decoration: underline;
}
.ckuzfa-footer a:hover {
    color: #ffffff;
}

.ckuzfa-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.78em;
    opacity: 0.75;
    line-height: 1.55;
    color: #b0bec5; /* Muted color for copyright */
}

.ckuzfa-copyright a {
    color: #b0bec5;
    text-decoration: underline;
}

.ckuzfa-copyright a:hover {
    color: #ffffff;
}

.ckuzfa-copyright strong {
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
    color: #fff0e0;
}

/* Regulatory Information Specific Styling */
.ckuzfa-footer > div > div:nth-of-type(2) > div:nth-of-type(3) { /* The regulatory info block */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 12px;
    font-size: 0.78em;
    opacity: 0.75;
    line-height: 1.55;
    text-align: left; /* Align regulatory text left */
    color: #b0bec5;
}

.ckuzfa-footer > div > div:nth-of-type(2) > div:nth-of-type(3) strong {
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
    color: #fff0e0;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInHero {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cardEnter {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 22px rgba(255, 255, 255, 0.5); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design - MANDATORY */

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
    .ckuzfa-hero {
        grid-template-columns: 1fr !important; /* Stack elements */
        flex-direction: column !important; /* Stack elements */
        padding: 80px 5% 60px !important;
        gap: 40px !important;
        min-height: unset !important; /* Remove fixed height to allow content to define it */
        background-attachment: scroll !important; /* Disable parallax on tablet */
        border-radius: 0 0 30px 30px; /* Slightly smaller radius */
    }
    .ckuzfa-hero-text {
        padding-left: 0; /* Remove left padding */
        text-align: center !important; /* Center align text */
        flex: unset; /* Reset flex */
    }
    .ckuzfa-hero h1 {
        font-size: clamp(1.8rem, 5vw, 3rem) !important;
    }
    .ckuzfa-hero-image-container {
        max-width: 400px; /* Slightly smaller image container */
    }
    .ckuzfa-hero img {
        max-width: 400px;
        border-width: 10px; /* Smaller border */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    .ckuzfa-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
        gap: 24px !important;
        margin: 40px auto !important;
    }
    .ckuzfa-content-section {
        padding: 60px 20px !important;
    }
    .ckuzfa-footer {
        padding: 30px 20px !important;
    }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {
    html, body { font-size: 16px; } /* Ensure base size for calculations */
    p, li, td, span { font-size: max(15px, 1rem) !important; }
    small, .small, figcaption, sub, sup, .legal, .disclaimer-text { font-size: max(13px, 0.82rem) !important; }

    .ckuzfa-header {
        padding: 12px 16px !important;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(0,0,0,0.85); /* More opaque on mobile */
        backdrop-filter: blur(15px);
    }
    .ckuzfa-logo {
        font-size: 1.5rem;
    }
    .ckuzfa-desktop-nav {
        display: none !important;
    }
    .ckuzfa-hamburger {
        display: flex !important; /* Show hamburger on mobile */
    }
    .ckuzfa-hero {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        padding: 60px 16px 40px !important;
        text-align: center !important;
        gap: 24px !important;
        min-height: unset !important;
        background-attachment: scroll !important;
        border-radius: 0 0 20px 20px; /* Smaller radius */
    }
    .ckuzfa-hero h1, .ckuzfa-hero-text h1 {
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    .ckuzfa-hero p, .ckuzfa-hero-text p {
        font-size: max(15px, 1rem) !important;
        margin-left: auto;
        margin-right: auto; /* Center paragraph */
    }
    .ckuzfa-hero-image-container {
        max-width: 300px; /* Smaller image on mobile */
    }
    .ckuzfa-hero img {
        max-width: 300px;
        border-width: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    .ckuzfa-hero img:hover {
        transform: scale(1.03);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    .ckuzfa-game-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Two columns on mobile */
        gap: 12px !important;
        padding: 0 12px !important;
        margin: 40px auto !important;
    }
    .ckuzfa-game-card {
        border-radius: 12px !important;
        border-width: 4px !important;
        box-shadow: 6px 6px 0px #000 !important;
    }
    .ckuzfa-game-card img {
        height: 140px !important;
        border-bottom-width: 4px !important;
    }
    .ckuzfa-game-card:hover {
        transform: translateY(2px) scale(1.005);
        box-shadow: 3px 3px 0px #000 !important;
    }
    .ckuzfa-btn {
        padding: 12px 24px !important;
        font-size: max(14px, 0.875rem) !important;
    }
    .ckuzfa-content-section {
        padding: 40px 16px !important;
        font-size: max(15px, 1rem) !important;
    }
    .ckuzfa-content-section h2 {
        font-size: clamp(1.3rem, 4vw, 2rem) !important;
    }
    .ckuzfa-footer {
        padding: 30px 16px !important;
        font-size: max(14px, 0.875rem) !important;
    }
    .ckuzfa-footer ul {
        flex-direction: column !important; /* Stack links on mobile */
        gap: 10px !important;
    }
    .ckuzfa-footer-contact {
        font-size: 0.8rem;
    }
    .ckuzfa-footer-badge {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    .ckuzfa-footer-badge strong {
        font-size: 1rem;
    }
    .ckuzfa-footer p {
        font-size: 0.85rem;
        text-align: center; /* Center text in footer paragraphs */
    }
    .ckuzfa-footer > div > div:nth-of-type(2) > div:nth-of-type(3) { /* Regulatory info */
        text-align: center; /* Center regulatory text */
    }
    canvas { max-width: 100% !important; height: auto !important; }
    img, video, iframe { max-width: 100% !important; }
}

/* === SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
    .ckuzfa-hero h1, .ckuzfa-hero-text h1 {
        font-size: clamp(1.4rem, 8vw, 2rem) !important;
    }
    .ckuzfa-game-grid {
        grid-template-columns: 1fr !important; /* Single column on smallest screens */
    }
    .ckuzfa-game-card img {
        height: 180px !important; /* Slightly taller card image on single column */
    }
    .ckuzfa-btn {
        padding: 14px 30px !important;
        font-size: 0.95rem !important;
    }
    .ckuzfa-logo {
        font-size: 1.3rem;
    }
    .ckuzfa-header .ckuzfa-container {
        gap: 10px; /* Reduce gap on very small screens */
    }
    .ckuzfa-logo {
        margin-right: 5px; /* Tighter logo spacing */
    }
    .ckuzfa-age-flag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* === DESKTOP ONLY: Hide hamburger === */
@media (min-width: 769px) {
    .ckuzfa-hamburger {
        display: none !important;
    }
    .ckuzfa-desktop-nav {
        display: flex !important;
    }
}

/* Specific styles for elements within the mobile menu */
.ckuzfa-mobile-menu a {
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.1s); /* Staggered animation for mobile menu items */
}

/* Apply page fade-in animation to main content */
main {
    animation: fadeInUp 0.65s ease-out both;
}

/* Apply hero entrance animation */
.ckuzfa-hero h1 {
    animation: slideInHero 0.7s 0.1s ease-out both;
}
.ckuzfa-hero p {
    animation: slideInHero 0.7s 0.25s ease-out both;
}

/* Apply card stagger animation */
.ckuzfa-game-grid .ckuzfa-game-card:nth-child(1) { animation-delay: 0.05s; }
.ckuzfa-game-grid .ckuzfa-game-card:nth-child(2) { animation-delay: 0.15s; }
.ckuzfa-game-grid .ckuzfa-game-card:nth-child(3) { animation-delay: 0.25s; }
.ckuzfa-game-grid .ckuzfa-game-card:nth-child(4) { animation-delay: 0.35s; }
.ckuzfa-game-grid .ckuzfa-game-card:nth-child(n+5) { animation-delay: 0.4s; } /* General delay for subsequent cards */

.ckuzfa-game-grid .ckuzfa-game-card {
    animation: cardEnter 0.5s ease-out both;
}

/* Apply button glow pulse */
.ckuzfa-btn {
    animation: btnGlow 2.5s ease-in-out infinite;
}