/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    background-color: #06020e; /* Dark BG */
    color: #ffe8f8; /* Light text */
    line-height: 1.7;
    font-size: 16px; /* Base font size for rem calculation */
}

main {
    flex: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
    max-width: 100vw;
}

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

/* Theme Colors */
:root {
    --bg-dark: #06020e;
    --primary-neon: #ff0080; /* Vivid Pink */
    --secondary-cyan: #00ffff; /* Bright Cyan */
    --accent-yellow: #ffff00; /* Electric Yellow */
    --text-light: #ffe8f8;
    --text-muted: rgba(255, 232, 248, 0.7);
    --card-bg-gradient: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, rgba(0, 255, 255, 0.08) 50%, rgba(255, 255, 0, 0.06) 100%);
    --primary-gradient: linear-gradient(135deg, #0d0221 0%, #1a0540 40%, #2d0b6b 100%); /* Section background */
    --header-bg: rgba(0, 0, 0, 0.5);
    --header-backdrop: rgba(0, 0, 0, 0.4);
    --footer-bg: rgba(0,0,0,0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 2rem); }
h5 { font-size: clamp(1rem, 2vw, 1.5rem); }
h6 { font-size: clamp(0.9rem, 1.8vw, 1.2rem); }

p, li, td, span {
    font-size: 1.2rem; /* 16px base */
    margin-bottom: 1rem;
}

nav a, .cs4vhc-footer a, .cs4vhc-btn, button {
    font-size: 0.9375rem; /* ~15px */
}

small, .small, figcaption, sub, sup, .legal, .disclaimer-text {
    font-size: 0.82rem; /* ~13px */
}

/* Links */
a {
    color: var(--secondary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

/* Buttons */
.cs4vhc-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    font-size: 0.9rem; /* ~14.4px */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, var(--primary-neon) 0%, var(--accent-yellow) 100%);
    color: var(--bg-dark);
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
}

.cs4vhc-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.7), 0 5px 15px rgba(0,0,0,0.3);
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
main { animation: fadeInUp 0.65s ease-out both; }

@keyframes slideInHero {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.cs4vhc-hero h1 { animation: slideInHero 0.7s 0.1s ease-out both; }
.cs4vhc-hero p { animation: slideInHero 0.7s 0.25s ease-out both; }

@keyframes cardEnter {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.cs4vhc-game-card { animation: cardEnter 0.5s ease-out both; }
.cs4vhc-game-card:nth-child(1), .cs4vhc-game-card:nth-child(2), .cs4vhc-game-card:nth-child(3) { animation-delay: calc(0.05s * (1 + var(--i))); } /* Example delay setup */

@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); }
}
/* Applied on hover or JS for dynamic elements if needed */

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

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

/* Header */
.cs4vhc-header {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--header-backdrop);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.cs4vhc-header .cs4vhc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cs4vhc-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}
.cs4vhc-logo span {
    margin-left: 10px;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs4vhc-desktop-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cs4vhc-desktop-nav a {
    font-weight: 600;
    color: var(--text-light);
    padding: 5px 0;
    position: relative;
}
.cs4vhc-desktop-nav a::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--secondary-cyan);
    transform: scaleX(0);
    transition: transform 0.25s ease-out;
    transform-origin: left;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}
.cs4vhc-desktop-nav a:hover {
    color: var(--secondary-cyan);
    text-decoration: none;
}
.cs4vhc-desktop-nav a:hover::after {
    transform: scaleX(1);
}

.cs4vhc-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cs4vhc-age-flag {
    background: rgba(0,0,0,0.4);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
}
.cs4vhc-age-flag img {
    width: 18px !important;
    height: 18px !important;
    border-radius: 3px;
    margin-right: 6px;
}

.cs4vhc-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--primary-neon);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--primary-neon);
    transition: all 0.3s ease;
}
.cs4vhc-hamburger:hover {
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.cs4vhc-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.cs4vhc-mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}
.cs4vhc-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cs4vhc-mobile-menu a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    transition: color 0.3s ease;
}
.cs4vhc-mobile-menu a:hover {
    color: var(--secondary-cyan);
}
.cs4vhc-close-menu {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.cs4vhc-close-menu:hover {
    color: var(--accent-yellow);
}


/* Disclosure Bar */
#cs4vhc-disclosure-bar {
    background: #021a18;
    color: #80cbc4;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    border-bottom: 2px solid #00796b;
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 64px; /* Below header */
    z-index: 999;
}
#cs4vhc-disclosure-bar span {
    background: #00897b;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.9em;
    margin-right: 12px;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Hero Section */
.cs4vhc-hero {
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
    padding: 140px 5% 80px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--primary-gradient); /* Vivid gradient */
    position: relative;
    overflow: hidden; /* Ensure elements don't spill */
}
.cs4vhc-hero::before { /* Overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.cs4vhc-hero > *:not(.cs4vhc-hero-image) {
    z-index: 2; /* Ensure text content is above overlay */
}
.cs4vhc-hero-text {
    padding-right: 40px;
}
.cs4vhc-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cs4vhc-hero p {
    font-size: 1.1rem; /* Slightly larger for impact */
    margin-bottom: 30px;
    opacity: 0.9;
}
.cs4vhc-hero .cs4vhc-btn {
    padding: 16px 36px;
    font-size: 1rem;
}
.cs4vhc-hero .cs4vhc-btn:hover {
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.8), 0 8px 20px rgba(0,0,0,0.4);
}

.cs4vhc-hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center; /* Center vertically if needed */
    width: 100%; /* Take full width of its grid cell */
}
.cs4vhc-hero-image img {
    width: 100%;
    max-height: 600px; /* Fixed max height */
    object-fit: cover;
    border-radius: 40px 0 40px 0;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.15);
    border: 4px solid var(--primary-neon);
    filter: brightness(1.1) contrast(1.05);
}
.cs4vhc-hero-image .cs4vhc-trust-badge { /* Example for a trust badge */
    position: absolute;
    bottom: 20px;
    left: -25px;
    background: var(--secondary-cyan);
    color: var(--bg-dark);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
    transform: rotate(-10deg);
}

/* Content Section */
.cs4vhc-content-section {
    padding: 80px 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    background-color: var(--bg-dark);
    position: relative;
}
.cs4vhc-content-section p {
    max-width: 800px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}
.cs4vhc-content-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-neon);
}
.cs4vhc-content-section h3 {
    color: var(--secondary-cyan);
    margin-top: 30px;
}

/* Game Grid */
.cs4vhc-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 50px 30px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.cs4vhc-game-card {
    background: var(--card-bg-gradient); /* Subtle gradient background */
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Crucial for rounded corners with images */
    display: flex;
    flex-direction: column;
}
.cs4vhc-game-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.cs4vhc-game-card:hover img {
    filter: brightness(1.1);
}
.cs4vhc-game-card img {
    width: calc(100% - 40px); /* Indented image */
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin: -30px auto 20px auto; /* Negative margin to float up */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid var(--secondary-cyan);
}
.cs4vhc-game-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cs4vhc-game-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-yellow);
}
.cs4vhc-game-card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.cs4vhc-game-card-play-btn {
    margin-top: 20px;
    align-self: center;
}

/* Footer */
.cs4vhc-footer {
    padding: 50px 20px;
    background: var(--footer-bg);
    color: var(--text-muted);
    text-align: center;
    position: relative;
    z-index: 10;
    font-size: 0.875rem; /* Slightly smaller base for footer */
}
.cs4vhc-footer .cs4vhc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.cs4vhc-footer ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.cs4vhc-footer a {
    color: var(--text-muted);
    font-weight: 500;
}
.cs4vhc-footer a:hover {
    color: var(--secondary-cyan);
    text-decoration: underline;
}

.cs4vhc-footer-contact {
    margin-top: 15px;
    font-size: 1em;
    opacity: 0.9;
    text-align: left;
    display: inline-block;
}
.cs4vhc-footer-contact p { margin-bottom: 5px; }
.cs4vhc-footer-contact strong { color: var(--text-light); }

.cs4vhc-footer > div > div:nth-of-type(1) { /* Section highlighting free play */
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
}
.cs4vhc-footer > div > div:nth-of-type(1) > div { /* Specific container for the notice */
    padding: 25px 0;
    margin-bottom: 20px;
    border-bottom: 2px dashed rgba(255,255,255,0.2);
    border-top: 2px dashed rgba(255,255,255,0.2);
}
.cs4vhc-footer h4 {
    margin: 0 0 10px 0;
    color: var(--accent-yellow);
    font-size: 1.4em;
}
.cs4vhc-footer p:not(.cs4vhc-copyright) {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 1em;
    text-align: justify;
    line-height: 1.7;
}
.cs4vhc-footer p strong {
    color: var(--text-light);
}
.cs4vhc-footer a[href="https://www.gambleaware.org"] {
    color: var(--secondary-cyan);
    text-decoration: underline;
}
.cs4vhc-footer a[href="https://www.gambleaware.org"]:hover {
    color: var(--accent-yellow);
}

.cs4vhc-footer > div > div:nth-of-type(1) > div:last-child { /* Regulatory Info & Copyright */
    border: none;
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 0;
}

.cs4vhc-footer .cs4vhc-copyright {
    margin-top: 20px;
    font-size: 0.78em;
    opacity: 0.75;
    line-height: 1.55;
    text-align: center;
    color: var(--text-muted);
}
.cs4vhc-footer .cs4vhc-copyright a {
    color: inherit;
    text-decoration: underline;
}
.cs4vhc-footer .cs4vhc-copyright a:hover {
    color: var(--primary-neon);
}

/* Regulatory Info Styling */
.cs4vhc-footer div[style*="border-top:1px solid rgba(255,255,255,0.1);"] {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 12px !important;
    margin-top: 12px !important;
    font-size: 0.78em !important;
    opacity: 0.75 !important;
    line-height: 1.55 !important;
    text-align: left !important;
}
.cs4vhc-footer div[style*="border-top:1px solid rgba(255,255,255,0.1);"] strong {
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
    color: var(--text-light);
}

/* Responsive Adjustments */

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
    .cs4vhc-hero {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        padding: 100px 5% 60px !important;
        gap: 40px !important;
        text-align: center;
    }
    .cs4vhc-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem) !important;
    }
    .cs4vhc-hero p {
        font-size: 1rem !important;
    }
    .cs4vhc-hero-text {
        padding-right: 0;
    }
    .cs4vhc-hero-image {
        justify-content: center;
        width: 80%; /* Slightly smaller on tablet */
        margin: 0 auto;
    }
    .cs4vhc-hero-image img {
        border-radius: 30px 0 30px 0;
        box-shadow: 15px 15px 0px rgba(0,0,0,0.1);
    }
    .cs4vhc-hero-image .cs4vhc-trust-badge {
        left: auto;
        right: -15px;
        bottom: 10px;
        transform: rotate(5deg);
    }
    .cs4vhc-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
        gap: 40px 20px !important;
    }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {
    html, body {
        font-size: 15px; /* Base font size adjustment for mobile */
        overflow-x: hidden;
    }
    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;
    }
    .cs4vhc-header {
        padding: 14px 16px !important;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .cs4vhc-logo { font-size: 1.3rem; }
    .cs4vhc-desktop-nav { display: none !important; }
    .cs4vhc-hamburger {
        display: flex !important;
        font-size: 1.5rem;
        padding: 8px 12px;
    }
    .cs4vhc-hero {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        padding: 70px 16px 50px !important;
        text-align: center !important;
        gap: 30px !important;
        background: var(--primary-gradient); /* Ensure gradient is applied */
        background-attachment: scroll !important; /* Fallback for mobile */
    }
    .cs4vhc-hero h1, .cs4vhc-hero-text h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    .cs4vhc-hero p, .cs4vhc-hero-text p {
        font-size: max(15px, 1rem) !important;
    }
    .cs4vhc-hero .cs4vhc-btn {
        padding: 14px 28px !important;
        font-size: 0.9rem !important;
    }
    .cs4vhc-hero-image {
        display: none !important; /* Hide image on mobile for simplicity */
    }
    .cs4vhc-hero img {
        display: none !important;
    }
    .cs4vhc-game-grid {
        grid-template-columns: repeat(1, 1fr) !important; /* Single column on mobile */
        gap: 20px !important;
        padding: 0 12px !important;
        margin-top: 50px;
    }
    .cs4vhc-game-card {
        border-radius: 16px !important;
    }
    .cs4vhc-game-card img {
        height: 180px !important;
        margin: -20px auto 15px auto !important;
        width: calc(100% - 24px) !important;
        border-radius: 12px !important;
    }
    .cs4vhc-game-card-title { font-size: 1.2rem !important; }
    .cs4vhc-game-card-description { font-size: 0.9rem !important; }
    .cs4vhc-content-section {
        padding: 50px 16px !important;
        font-size: max(15px, 1rem) !important;
    }
    .cs4vhc-content-section h2 { margin-bottom: 30px !important; }
    .cs4vhc-footer {
        padding: 40px 16px !important;
        font-size: 0.875rem !important;
    }
    .cs4vhc-footer ul {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .cs4vhc-footer-contact { margin-top: 10px !important; }
    .cs4vhc-footer > div > div:nth-of-type(1) > div { /* Specific container for the notice */
        padding: 20px 0 !important;
        margin-bottom: 15px !important;
    }
    .cs4vhc-footer h4 { font-size: 1.2em !important; }
    .cs4vhc-footer p:not(.cs4vhc-copyright) { margin-bottom: 12px !important; }
    .cs4vhc-footer .cs4vhc-copyright { font-size: 0.8em !important; }
    canvas { max-width: 100% !important; height: auto !important; }
    img, video, iframe { max-width: 100% !important; }
}

/* === SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
    .cs4vhc-hero h1, .cs4vhc-hero-text h1 {
        font-size: clamp(1.6rem, 8vw, 2.2rem) !important;
    }
    .cs4vhc-game-grid {
        grid-template-columns: 1fr !important; /* Ensure single column */
    }
    .cs4vhc-game-card img {
        height: 160px !important;
    }
    .cs4vhc-btn {
        padding: 12px 24px !important;
        font-size: 0.875rem !important;
    }
    .cs4vhc-logo { font-size: 1.2rem; }
    .cs4vhc-hamburger { font-size: 1.4rem; padding: 6px 10px;}
}

/* === DESKTOP ONLY: Hide hamburger === */
@media (min-width: 769px) {
    .cs4vhc-hamburger { display: none !important; }
    .cs4vhc-desktop-nav { display: flex !important; }
    .cs4vhc-mobile-menu { display: none !important; } /* Ensure it's hidden */
}

/* === UTILITY CLASSES FOR STAGGERED ANIMATION (if needed for JS, but CSS handled in HTML) === */
.cs4vhc-game-card {
    --i: 0; /* Default index, will be overridden by inline style or JS */
}
.cs4vhc-game-card:nth-child(1) { --i: 1; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(2) { --i: 2; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(3) { --i: 3; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(4) { --i: 4; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(5) { --i: 5; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(6) { --i: 6; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(7) { --i: 7; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(8) { --i: 8; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(9) { --i: 9; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(10) { --i: 10; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(11) { --i: 11; animation-delay: calc(0.05s * var(--i)); }
.cs4vhc-game-card:nth-child(12) { --i: 12; animation-delay: calc(0.05s * var(--i)); }
/* ... and so on for more cards if needed */