/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #6C3BD1;
    --color-primary-light: #8B6BE0;
    --color-primary-dark: #4A2A8A;
    --color-secondary: #FF6B35;
    --color-accent: #FFD700;
    --color-background: #F8F6FE;
    --color-text: #1A1A2E;
    --color-text-light: #6B6B8A;
    --color-white: #FFFFFF;
    --shadow-card: 0 20px 60px rgba(108, 59, 209, 0.12);
    --shadow-hover: 0 30px 80px rgba(108, 59, 209, 0.18);
    --radius: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 12px 0;
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .logo {
    height: 36px;
    width: auto;
}

.navbar-brand .brand-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.navbar-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.navbar-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition);
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.navbar-links a:hover {
    color: var(--color-primary);
}

.navbar-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--color-text);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 110px 0 50px;
    background: linear-gradient(135deg, #F8F6FE 0%, #EDE8FF 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 59, 209, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-block;
    background: rgba(108, 59, 209, 0.12);
    color: var(--color-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    animation: badgePulse 2s ease-in-out infinite;
    align-self: flex-start;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 420px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.store-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.store-badge {
    display: inline-block;
    transition: transform var(--transition);
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-badge img {
    height: 44px;
    width: auto;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ============================================================
   CARD HAND - MAXIMUM FAN SPREAD
   ============================================================ */
.card-hand-container {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hand-card {
    position: absolute;
    width: 100px;
    height: 140px;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform-origin: bottom center;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transition: all 0.3s ease;
}

.hand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.hand-card {
    animation: waveSequence 3s ease-in-out infinite;
}

.hand-card:nth-child(1) { animation-delay: 0s; }
.hand-card:nth-child(2) { animation-delay: 0.20s; }
.hand-card:nth-child(3) { animation-delay: 0.40s; }
.hand-card:nth-child(4) { animation-delay: 0.60s; }
.hand-card:nth-child(5) { animation-delay: 0.80s; }
.hand-card:nth-child(6) { animation-delay: 1.00s; }
.hand-card:nth-child(7) { animation-delay: 1.20s; }
.hand-card:nth-child(8) { animation-delay: 1.40s; }

@keyframes waveSequence {
    0% { transform: var(--transform, none) translateY(0px); }
    25% { transform: var(--transform, none) translateY(-35px); }
    50% { transform: var(--transform, none) translateY(-15px); }
    75% { transform: var(--transform, none) translateY(-5px); }
    100% { transform: var(--transform, none) translateY(0px); }
}

.hand-card:nth-child(1) { --transform: rotate(-35deg) translateX(-160px) translateY(45px); z-index: 1; }
.hand-card:nth-child(2) { --transform: rotate(-26deg) translateX(-120px) translateY(30px); z-index: 2; }
.hand-card:nth-child(3) { --transform: rotate(-17deg) translateX(-80px) translateY(18px); z-index: 3; }
.hand-card:nth-child(4) { --transform: rotate(-7deg) translateX(-40px) translateY(8px); z-index: 4; }
.hand-card:nth-child(5) { --transform: rotate(0deg) translateX(0px) translateY(0px); z-index: 5; }
.hand-card:nth-child(6) { --transform: rotate(7deg) translateX(40px) translateY(8px); z-index: 6; }
.hand-card:nth-child(7) { --transform: rotate(17deg) translateX(80px) translateY(18px); z-index: 7; }
.hand-card:nth-child(8) { --transform: rotate(26deg) translateX(120px) translateY(30px); z-index: 8; }
.hand-card:nth-child(9) { --transform: rotate(35deg) translateX(160px) translateY(45px); z-index: 9; }

.hand-card {
    transform: var(--transform, none);
}

.hand-card .card-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.95);
    padding: 3px 14px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    font-family: 'Georgia', serif;
    pointer-events: none;
    z-index: 10;
    border: 1px solid rgba(108, 59, 209, 0.1);
}

.hand-card:hover {
    transform: var(--transform, none) translateY(-55px) scale(1.18) !important;
    z-index: 100 !important;
    box-shadow: 0 24px 60px rgba(108, 59, 209, 0.35);
    animation-play-state: paused;
}

.hand-card:hover .card-label {
    transform: translateX(-50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 16px rgba(108, 59, 209, 0.2);
    border-color: var(--color-primary);
}

.hand-card:hover ~ .hand-card {
    opacity: 0.7;
    filter: blur(1px);
}

/* ============================================================
   GAMEPLAY VIDEO SECTION
   ============================================================ */
.gameplay-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #F8F6FE 0%, #EDE8FF 100%);
    position: relative;
    overflow: hidden;
}

.gameplay-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 59, 209, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gameplay-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(108, 59, 209, 0.12);
    background: transparent;
    aspect-ratio: 16 / 9;
}

.gameplay-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block;
    background: transparent;
    border-radius: 16px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 16px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(108, 59, 209, 0.85);
    border: 3px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    pointer-events: auto;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(108, 59, 209, 1);
}

.play-button svg {
    width: 34px;
    height: 34px;
}

.play-button svg polygon {
    fill: white;
}

.video-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
}

.control-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(108, 59, 209, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
}

.control-btn:hover {
    background: rgba(108, 59, 209, 0.5);
    transform: scale(1.05);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: rgba(108, 59, 209, 0.1);
    color: var(--color-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 6px auto 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    padding: 70px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-background);
    padding: 28px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================================
   HOW TO PLAY SECTION
   ============================================================ */
.how-to-play {
    padding: 70px 0;
    background: var(--color-background);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.step-note {
    margin-top: 32px;
    text-align: center;
    background: var(--color-white);
    padding: 16px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-note p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 70px 0;
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-background);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
}

/* ============================================================
   DOWNLOAD SECTION - FIXED STORE BADGES
   ============================================================ */
.download {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    text-align: center;
    color: var(--color-white);
}

.download h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.download p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
}

.download .store-badges {
    justify-content: center;
    gap: 16px;
}

/* FIX: Store badges in download section - use white versions */
.download .store-badge {
    display: inline-block;
    transition: transform var(--transition);
}

.download .store-badge:hover {
    transform: scale(1.05);
}

/* Use a different approach - show badges normally without filter */
.download .store-badge img {
    height: 52px;
    width: auto;
    display: block;
    /* Remove the filter that was causing issues */
    filter: none !important;
    /* Ensure transparency is preserved */
    background: transparent;
}

/* Alternative: If your badges are dark and need to be white */
/* Uncomment this if your badges are dark and need to be white */
/*
.download .store-badge img {
    filter: brightness(0) invert(1) !important;
}
*/

.download-note {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 32px;
    width: auto;
    /* filter removed */
    display: block;
}

.footer-brand p {
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 14px;
    font-size: 20px;
}

.footer-social a {
    transition: transform var(--transition), opacity var(--transition);
    opacity: 0.7;
}

.footer-social a:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        align-items: center;
    }

    .badge {
        align-self: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .store-badges {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .card-hand-container {
        height: 340px;
    }

    .hand-card {
        width: 80px;
        height: 112px;
    }

    .hand-card .card-label {
        font-size: 11px;
        bottom: -26px;
        padding: 1px 10px;
    }

    .hand-card:nth-child(1) { --transform: rotate(-30deg) translateX(-130px) translateY(38px); }
    .hand-card:nth-child(2) { --transform: rotate(-22deg) translateX(-100px) translateY(25px); }
    .hand-card:nth-child(3) { --transform: rotate(-14deg) translateX(-70px) translateY(15px); }
    .hand-card:nth-child(4) { --transform: rotate(-5deg) translateX(-35px) translateY(6px); }
    .hand-card:nth-child(5) { --transform: rotate(0deg) translateX(0px) translateY(0px); }
    .hand-card:nth-child(6) { --transform: rotate(5deg) translateX(35px) translateY(6px); }
    .hand-card:nth-child(7) { --transform: rotate(14deg) translateX(70px) translateY(15px); }
    .hand-card:nth-child(8) { --transform: rotate(22deg) translateX(100px) translateY(25px); }
    .hand-card:nth-child(9) { --transform: rotate(30deg) translateX(130px) translateY(38px); }

    @keyframes waveSequence {
        0% { transform: var(--transform, none) translateY(0px); }
        25% { transform: var(--transform, none) translateY(-25px); }
        50% { transform: var(--transform, none) translateY(-10px); }
        75% { transform: var(--transform, none) translateY(-3px); }
        100% { transform: var(--transform, none) translateY(0px); }
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gameplay-section {
        padding: 60px 0 70px;
    }

    .download .store-badge img {
        height: 44px;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 14px;
        background: var(--color-white);
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-card);
        position: absolute;
        top: 64px;
        right: 20px;
        min-width: 180px;
    }

    .navbar-links.open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 80px 0 30px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .store-badge img {
        height: 40px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .card-hand-container {
        height: 260px;
    }

    .hand-card {
        width: 60px;
        height: 84px;
        border-radius: 8px;
    }

    .hand-card .card-label {
        font-size: 10px;
        bottom: -22px;
        padding: 1px 8px;
    }

    .hand-card:nth-child(1) { --transform: rotate(-24deg) translateX(-90px) translateY(30px); }
    .hand-card:nth-child(2) { --transform: rotate(-16deg) translateX(-65px) translateY(18px); }
    .hand-card:nth-child(3) { --transform: rotate(-10deg) translateX(-40px) translateY(10px); }
    .hand-card:nth-child(4) { --transform: rotate(-3deg) translateX(-20px) translateY(4px); }
    .hand-card:nth-child(5) { --transform: rotate(0deg) translateX(0px) translateY(0px); }
    .hand-card:nth-child(6) { --transform: rotate(3deg) translateX(20px) translateY(4px); }
    .hand-card:nth-child(7) { --transform: rotate(10deg) translateX(40px) translateY(10px); }
    .hand-card:nth-child(8) { --transform: rotate(16deg) translateX(65px) translateY(18px); }
    .hand-card:nth-child(9) { --transform: rotate(24deg) translateX(90px) translateY(30px); }

    @keyframes waveSequence {
        0% { transform: var(--transform, none) translateY(0px); }
        25% { transform: var(--transform, none) translateY(-18px); }
        50% { transform: var(--transform, none) translateY(-8px); }
        75% { transform: var(--transform, none) translateY(-2px); }
        100% { transform: var(--transform, none) translateY(0px); }
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 28px;
        height: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .download h2 {
        font-size: 28px;
    }

    .download p {
        font-size: 16px;
    }

    .gameplay-section {
        padding: 50px 0 60px;
    }

    .download .store-badge img {
        height: 38px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .store-badge img {
        height: 34px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    .card-hand-container {
        height: 200px;
    }

    .hand-card {
        width: 48px;
        height: 67px;
        border-radius: 6px;
    }

    .hand-card .card-label {
        font-size: 8px;
        bottom: -18px;
        padding: 1px 6px;
    }

    .hand-card:nth-child(1) { --transform: rotate(-18deg) translateX(-65px) translateY(22px); }
    .hand-card:nth-child(2) { --transform: rotate(-12deg) translateX(-45px) translateY(14px); }
    .hand-card:nth-child(3) { --transform: rotate(-6deg) translateX(-25px) translateY(8px); }
    .hand-card:nth-child(4) { --transform: rotate(-2deg) translateX(-12px) translateY(3px); }
    .hand-card:nth-child(5) { --transform: rotate(0deg) translateX(0px) translateY(0px); }
    .hand-card:nth-child(6) { --transform: rotate(2deg) translateX(12px) translateY(3px); }
    .hand-card:nth-child(7) { --transform: rotate(6deg) translateX(25px) translateY(8px); }
    .hand-card:nth-child(8) { --transform: rotate(12deg) translateX(45px) translateY(14px); }
    .hand-card:nth-child(9) { --transform: rotate(18deg) translateX(65px) translateY(22px); }

    @keyframes waveSequence {
        0% { transform: var(--transform, none) translateY(0px); }
        25% { transform: var(--transform, none) translateY(-14px); }
        50% { transform: var(--transform, none) translateY(-6px); }
        75% { transform: var(--transform, none) translateY(-2px); }
        100% { transform: var(--transform, none) translateY(0px); }
    }

    .play-button {
        width: 52px;
        height: 52px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }

    .container {
        padding: 0 16px;
    }

    .features h2,
    .how-to-play h2,
    .download h2 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 13px;
    }

    .features {
        padding: 50px 0;
    }

    .how-to-play {
        padding: 50px 0;
    }

    .testimonials {
        padding: 50px 0;
    }

    .download {
        padding: 50px 0;
    }

    .gameplay-section {
        padding: 40px 0 50px;
    }

    .download .store-badge img {
        height: 32px;
    }
}