/* ========================================
   CSS VARIABLES & RESET
   ======================================== */

:root {
    /* Candy Pop Colors */
    --primary: #ff6b6b;
    --primary-dark: #ee5a5a;
    --primary-light: #ff8a8a;
    --primary-glow: rgba(255, 107, 107, 0.3);

    --secondary: #4ecdc4;
    --secondary-dark: #3dbdb5;
    --secondary-light: #6ed8d1;
    --secondary-glow: rgba(78, 205, 196, 0.3);

    --accent: #ffe66d;
    --accent-dark: #f5d84e;
    --accent-light: #fff09a;
    --accent-glow: rgba(255, 230, 109, 0.3);

    /* Extra Candy Colors */
    --candy-pink: #ff85a2;
    --candy-purple: #c084fc;
    --candy-blue: #60a5fa;
    --candy-orange: #fb923c;
    --candy-green: #34d399;
    --candy-magenta: #f472b6;

    /* Backgrounds */
    --bg-light: #fff5f5;
    --bg-white: #ffffff;
    --bg-cream: #fffef2;
    --bg-gradient-hero: linear-gradient(135deg, #ff6b6b 0%, #ff85a2 25%, #c084fc 50%, #4ecdc4 75%, #ffe66d 100%);
    --bg-gradient-candy: linear-gradient(135deg, #ff6b6b, #c084fc, #4ecdc4);

    /* Text */
    --text-dark: #2d1b2e;
    --text-body: #4a3a4b;
    --text-muted: #7a6a7b;
    --text-light: #ffffff;

    /* Footer */
    --footer-bg: #2d1b2e;
    --footer-text: #e0d0e1;
    --footer-muted: #a090a1;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 27, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 27, 46, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 27, 46, 0.16);
    --shadow-xl: 0 16px 60px rgba(45, 27, 46, 0.2);
    --shadow-candy: 0 6px 30px rgba(255, 107, 107, 0.25);
    --shadow-candy-teal: 0 6px 30px rgba(78, 205, 196, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Typography */
    --font-display: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-py: 100px;
    --section-py-mobile: 60px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========================================
   COOKIE CONSENT
   ======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-white);
    border-top: 4px solid var(--primary);
    box-shadow: 0 -8px 40px rgba(45, 27, 46, 0.15);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--accent-dark);
    flex-shrink: 0;
    animation: cookieWobble 2s ease-in-out infinite;
}

@keyframes cookieWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-display);
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-candy);
}

.btn-cookie-essential {
    background: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--primary-light);
}

.btn-cookie-essential:hover {
    background: var(--primary-light);
    color: white;
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--text-muted);
}

.btn-cookie-settings:hover {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 24px;
}

.cookie-setting-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0e0f0;
}

.cookie-setting-item label {
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-setting-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.cookie-setting-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    padding-left: 28px;
}

/* ========================================
   AGE VERIFICATION MODAL
   ======================================== */

.age-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 27, 46, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.age-modal.visible {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    position: relative;
    transform: scale(0.8) translateY(40px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-xl);
}

.age-modal.visible .age-modal-content {
    transform: scale(1) translateY(0);
}

.age-modal-candy-top {
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--candy-pink), var(--candy-purple), var(--secondary), var(--accent));
}

.age-modal-candy-bottom {
    height: 8px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--candy-purple), var(--candy-pink), var(--primary));
}

.age-modal-body {
    padding: 40px 32px;
    text-align: center;
}

.age-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-candy-teal);
}

.age-modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.age-modal-body p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 8px;
}

.age-sub {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 24px !important;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-age {
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 3px solid transparent;
}

.btn-age-yes {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.btn-age-yes:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-candy-teal);
}

.btn-age-no {
    background: transparent;
    color: var(--text-muted);
    border-color: #e0d0e1;
}

.btn-age-no:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Age Rejection */
.age-rejection {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    text-align: center;
    padding: 24px;
}

.age-rejection-content {
    max-width: 400px;
}

.age-rejection-content i {
    color: var(--primary);
    margin-bottom: 20px;
}

.age-rejection-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.age-rejection-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 30px rgba(255, 107, 107, 0.1);
    padding: 10px 0;
}

.header-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.header-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.header.scrolled .header-shape {
    opacity: 0;
}

.header-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: -100px;
    left: 10%;
}

.header-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    top: -80px;
    right: 20%;
}

.header-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    top: -50px;
    right: 5%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 100;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--candy-pink));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: transform var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.header.scrolled .logo-text {
    color: var(--text-dark);
}

.logo-highlight {
    color: var(--primary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 107, 107, 0.08);
}

.nav-link.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 100;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #fff0f0 0%, #fff5f5 50%, var(--bg-light) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Floating candy shapes */
.candy-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatCandy 8s ease-in-out infinite;
}

.candy-float-1 {
    width: 80px;
    height: 80px;
    background: var(--primary);
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.candy-float-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    top: 25%;
    right: 8%;
    animation-delay: 1s;
    animation-duration: 9s;
    border-radius: var(--radius-blob);
}

.candy-float-3 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.candy-float-4 {
    width: 50px;
    height: 50px;
    background: var(--candy-purple);
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 8s;
    border-radius: var(--radius-blob);
}

.candy-float-5 {
    width: 40px;
    height: 40px;
    background: var(--candy-pink);
    top: 10%;
    right: 30%;
    animation-delay: 0.5s;
    animation-duration: 10s;
}

.candy-float-6 {
    width: 70px;
    height: 70px;
    background: var(--candy-green);
    bottom: 30%;
    right: 5%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
    border-radius: var(--radius-blob);
}

.candy-float-7 {
    width: 55px;
    height: 55px;
    background: var(--candy-orange);
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.candy-float-8 {
    width: 45px;
    height: 45px;
    background: var(--candy-blue);
    top: 40%;
    left: 20%;
    animation-delay: 2.5s;
    animation-duration: 8.5s;
    border-radius: var(--radius-blob);
}

@keyframes floatCandy {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translateY(-40px) rotate(270deg) scale(1.05);
    }
}

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.hero-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -5%;
    right: -5%;
}

.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 30%;
    right: 20%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 230, 109, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 230, 109, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 230, 109, 0.6); }
}

.hero-badge i {
    font-size: 0.75rem;
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.title-line-1 {
    color: var(--primary);
    opacity: 0;
    transform: translateX(-30px);
    animation: titleSlide 0.6s ease-out 0.5s forwards;
}

.title-line-2 {
    color: var(--secondary);
    opacity: 0;
    transform: translateX(-30px);
    animation: titleSlide 0.6s ease-out 0.7s forwards;
}

.title-line-3 {
    color: var(--accent-dark);
    opacity: 0;
    transform: translateX(-30px);
    animation: titleSlide 0.6s ease-out 0.9s forwards;
}

@keyframes titleSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
}

.btn-bounce {
    animation: btnBounce 2s ease-in-out infinite;
}

@keyframes btnBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-bounce:hover {
    animation: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 107, 107, 0.15);
    box-shadow: var(--shadow-md);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
    flex-shrink: 0;
}

/* Hero Visual / Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: phoneAppear 1s ease-out 0.6s forwards;
}

@keyframes phoneAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--text-dark);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 0 3px #1a0e1b,
        0 20px 60px rgba(45, 27, 46, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--text-dark);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2d1b4e 0%, #1a0e2e 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-score-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.phone-score-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-family: var(--font-display);
}

.phone-score-value {
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Game Grid inside phone */
.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 40px 12px 12px;
    flex: 1;
    align-content: center;
}

.game-candy {
    aspect-ratio: 1;
    border-radius: 12px;
    position: relative;
    animation: candyPop 0.5s ease-out backwards;
}

.game-candy:nth-child(1) { animation-delay: 0.8s; }
.game-candy:nth-child(2) { animation-delay: 0.85s; }
.game-candy:nth-child(3) { animation-delay: 0.9s; }
.game-candy:nth-child(4) { animation-delay: 0.95s; }
.game-candy:nth-child(5) { animation-delay: 1s; }
.game-candy:nth-child(6) { animation-delay: 1.05s; }
.game-candy:nth-child(7) { animation-delay: 1.1s; }
.game-candy:nth-child(8) { animation-delay: 1.15s; }
.game-candy:nth-child(9) { animation-delay: 1.2s; }
.game-candy:nth-child(10) { animation-delay: 1.25s; }
.game-candy:nth-child(11) { animation-delay: 1.3s; }
.game-candy:nth-child(12) { animation-delay: 1.35s; }
.game-candy:nth-child(13) { animation-delay: 1.4s; }
.game-candy:nth-child(14) { animation-delay: 1.45s; }
.game-candy:nth-child(15) { animation-delay: 1.5s; }
.game-candy:nth-child(16) { animation-delay: 1.55s; }
.game-candy:nth-child(17) { animation-delay: 1.6s; }
.game-candy:nth-child(18) { animation-delay: 1.65s; }
.game-candy:nth-child(19) { animation-delay: 1.7s; }
.game-candy:nth-child(20) { animation-delay: 1.75s; }
.game-candy:nth-child(21) { animation-delay: 1.8s; }
.game-candy:nth-child(22) { animation-delay: 1.85s; }
.game-candy:nth-child(23) { animation-delay: 1.9s; }
.game-candy:nth-child(24) { animation-delay: 1.95s; }
.game-candy:nth-child(25) { animation-delay: 2s; }

@keyframes candyPop {
    from {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.gc-red {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.4), inset 0 -2px 4px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.3);
}

.gc-teal {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    box-shadow: 0 3px 8px rgba(78, 205, 196, 0.4), inset 0 -2px 4px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.3);
}

.gc-yellow {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 3px 8px rgba(255, 230, 109, 0.4), inset 0 -2px 4px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.3);
}

.gc-pink {
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-magenta));
    box-shadow: 0 3px 8px rgba(255, 133, 162, 0.4), inset 0 -2px 4px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.3);
}

.phone-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, var(--primary-glow), transparent 70%);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   SOCIAL PROOF TICKER
   ======================================== */

.social-proof {
    padding: 20px 0;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 107, 107, 0.1);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

.ticker-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
    border: 2px solid rgba(255, 107, 107, 0.15);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: var(--section-py) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.features-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.fc-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.fc-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

.fc-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 var(--radius-lg) 0 100%;
    opacity: 0.06;
    transition: opacity var(--transition-normal);
}

.feature-card:nth-child(1) .feature-card-bg { background: var(--primary); }
.feature-card:nth-child(2) .feature-card-bg { background: var(--secondary); }
.feature-card:nth-child(3) .feature-card-bg { background: var(--accent); }
.feature-card:nth-child(4) .feature-card-bg { background: var(--candy-purple); }
.feature-card:nth-child(5) .feature-card-bg { background: var(--candy-pink); }
.feature-card:nth-child(6) .feature-card-bg { background: var(--candy-blue); }

.feature-card:hover .feature-card-bg {
    opacity: 0.12;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    transition: transform var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-1 { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3); }
.feature-icon-2 { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3); }
.feature-icon-3 { background: linear-gradient(135deg, var(--candy-purple), #a855f7); box-shadow: 0 6px 20px rgba(192, 132, 252, 0.3); }
.feature-icon-4 { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 6px 20px rgba(255, 230, 109, 0.3); }
.feature-icon-5 { background: linear-gradient(135deg, var(--candy-pink), var(--candy-magenta)); box-shadow: 0 6px 20px rgba(255, 133, 162, 0.3); }
.feature-icon-6 { background: linear-gradient(135deg, var(--candy-blue), #3b82f6); box-shadow: 0 6px 20px rgba(96, 165, 250, 0.3); }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.04;
}

.feature-card:nth-child(odd) .feature-decoration { background: var(--primary); }
.feature-card:nth-child(even) .feature-decoration { background: var(--secondary); }

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--candy-pink) 50%, var(--candy-purple) 100%);
    position: relative;
}

.how-wave-top,
.how-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

.how-wave-top {
    top: -2px;
}

.how-wave-bottom {
    bottom: -2px;
}

.how-wave-top svg,
.how-wave-bottom svg {
    display: block;
    width: 100%;
    height: 60px;
}

.how-it-works .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.how-it-works .section-title {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.how-it-works .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 4px;
    z-index: 0;
    display: flex;
    align-items: center;
}

.step-line {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 2s ease-out 1s forwards;
}

@keyframes lineGrow {
    to { transform: scaleX(1); }
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number span {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.step-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    animation: stepPulse 2s ease-out infinite;
}

@keyframes stepPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.step-content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: white;
}

.step-content h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ========================================
   GAME PREVIEW SECTION
   ======================================== */

.game-preview {
    padding: var(--section-py) 0;
    background: var(--bg-light);
}

.preview-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-screen-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.preview-screen {
    width: 320px;
    background: linear-gradient(180deg, #1a0e2e 0%, #2d1b4e 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 107, 107, 0.2);
}

.preview-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.preview-level {
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.preview-score-display {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 800;
}

.preview-score-display i {
    font-size: 0.8rem;
}

.preview-moves {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.preview-game-board {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    padding: 12px;
}

.preview-candy {
    aspect-ratio: 1;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.preview-candy:hover {
    transform: scale(1.15);
}

.preview-candy.pc-red {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.4), inset 0 1px 3px rgba(255,255,255,0.3);
}

.preview-candy.pc-teal {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    box-shadow: 0 2px 6px rgba(78, 205, 196, 0.4), inset 0 1px 3px rgba(255,255,255,0.3);
}

.preview-candy.pc-yellow {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 2px 6px rgba(255, 230, 109, 0.4), inset 0 1px 3px rgba(255,255,255,0.3);
}

.preview-candy.pc-pink {
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-magenta));
    box-shadow: 0 2px 6px rgba(255, 133, 162, 0.4), inset 0 1px 3px rgba(255,255,255,0.3);
}

.preview-candy.pc-purple {
    background: linear-gradient(135deg, var(--candy-purple), #a855f7);
    box-shadow: 0 2px 6px rgba(192, 132, 252, 0.4), inset 0 1px 3px rgba(255,255,255,0.3);
}

.preview-candy.pc-green {
    background: linear-gradient(135deg, var(--candy-green), #10b981);
    box-shadow: 0 2px 6px rgba(52, 211, 153, 0.4), inset 0 1px 3px rgba(255,255,255,0.3);
}

.preview-candy.popping {
    animation: candyPopAnim 0.4s ease-out forwards;
}

@keyframes candyPopAnim {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
    100% { transform: scale(0); opacity: 0; }
}

.preview-bottom-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.preview-power {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.preview-power:hover {
    transform: scale(1.1);
}

.preview-power-bomb {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.preview-power-rocket {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.preview-power-rainbow {
    background: linear-gradient(135deg, var(--candy-purple), var(--candy-pink));
}

.power-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}

.preview-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(192, 132, 252, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Preview Features List */
.preview-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.preview-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.preview-feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.pf-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.preview-feature-item:nth-child(1) .pf-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    color: var(--primary);
}

.preview-feature-item:nth-child(2) .pf-icon {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.05));
    color: var(--secondary);
}

.preview-feature-item:nth-child(3) .pf-icon {
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.1), rgba(255, 230, 109, 0.05));
    color: var(--accent-dark);
}

.preview-feature-item:nth-child(4) .pf-icon {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.1), rgba(192, 132, 252, 0.05));
    color: var(--candy-purple);
}

.pf-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.pf-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   LIVE COUNTER SECTION
   ======================================== */

.live-counter-section {
    padding: 60px 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.live-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.live-counter-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.live-counter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.lcc-1 { border-bottom: 4px solid var(--primary); }
.lcc-2 { border-bottom: 4px solid var(--secondary); }
.lcc-3 { border-bottom: 4px solid var(--accent); }
.lcc-4 { border-bottom: 4px solid var(--candy-purple); }

.lcc-1:hover { border-color: var(--primary); }
.lcc-2:hover { border-color: var(--secondary); }
.lcc-3:hover { border-color: var(--accent); }
.lcc-4:hover { border-color: var(--candy-purple); }

.lcc-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.lcc-1 .lcc-icon { color: var(--primary); }
.lcc-2 .lcc-icon { color: var(--secondary); }
.lcc-3 .lcc-icon { color: var(--accent-dark); }
.lcc-4 .lcc-icon { color: var(--candy-purple); }

.lcc-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 8px;
}

.lcc-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.lcc-pulse {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--candy-green);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--section-py) 0;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.ta-1 { background: linear-gradient(135deg, var(--primary), var(--candy-pink)); }
.ta-2 { background: linear-gradient(135deg, var(--secondary), var(--candy-blue)); }
.ta-3 { background: linear-gradient(135deg, var(--candy-purple), var(--candy-magenta)); }
.ta-4 { background: linear-gradient(135deg, var(--accent), var(--candy-orange)); }
.ta-5 { background: linear-gradient(135deg, var(--candy-green), var(--secondary)); }

.testimonial-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.testimonial-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.3;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    opacity: 1;
    background: var(--primary);
    transform: scale(1.2);
}

/* ========================================
   TRUST & SECURITY SECTION
   ======================================== */

.trust-section {
    padding: var(--section-py) 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.trust-card:hover {
    border-color: var(--secondary-light);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-candy-teal);
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: var(--section-py) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.faq-blob {
    position: absolute;
    border-radius: var(--radius-blob);
    opacity: 0.05;
}

.faq-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: blobFloat 10s ease-in-out infinite;
}

.faq-blob-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation: blobFloat 12s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
    color: var(--text-muted);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
}

.faq-answer-inner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   SIGNUP / LEAD FORM SECTION
   ======================================== */

.signup-section {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, #2d1b2e 0%, #1a0e2e 50%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.signup-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.signup-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.signup-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    left: -50px;
}

.signup-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: -50px;
    right: -50px;
}

.signup-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    right: 20%;
    border-radius: var(--radius-blob);
}

.signup-shape-4 {
    width: 150px;
    height: 150px;
    background: var(--candy-purple);
    bottom: 20%;
    left: 10%;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.signup-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: white;
    margin-bottom: 16px;
}

.signup-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.signup-perks {
    margin-bottom: 32px;
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.perk-icon {
    color: var(--candy-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.signup-trust-badges {
    display: flex;
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge i {
    color: var(--secondary);
}

/* Form */
.signup-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.signup-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--candy-purple));
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--candy-pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-candy);
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8d8e9;
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input.error {
    border-color: var(--primary);
    background: #fff0f0;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 4px;
    min-height: 1.2em;
    font-weight: 600;
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #d0c0d1;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px;
    margin-top: 8px;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-disclaimer i {
    color: var(--secondary);
}

/* Success & Error Messages */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--candy-green);
    margin-bottom: 16px;
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-muted);
}

.form-error-message {
    text-align: center;
    padding: 40px 20px;
}

.error-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-error-message h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-error-message p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ========================================
   RESPONSIBLE GAMING
   ======================================== */

.responsible-gaming {
    padding: 40px 0;
    background: var(--bg-cream);
}

.responsible-gaming-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--candy-green);
    box-shadow: var(--shadow-sm);
}

.rg-icon {
    font-size: 2rem;
    color: var(--candy-green);
    flex-shrink: 0;
}

.rg-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.rg-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.rg-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
}

.footer-wave {
    position: relative;
    top: -2px;
    margin-bottom: -2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--candy-pink));
}

.footer-logo .logo-text {
    color: white;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--footer-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--footer-muted);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--footer-muted);
}

.footer-contact ul li i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: var(--footer-muted);
}

.footer-contact ul li a:hover {
    color: var(--primary-light);
}

.footer-contact ul li small {
    display: block;
    font-size: 0.75rem;
    color: var(--footer-muted);
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--footer-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--footer-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-candy);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

/* ========================================
   LEGAL CONTENT (for legal pages)
   ======================================== */

.legal-content {
    padding: 120px 0 80px;
    background: var(--bg-white);
    min-height: 80vh;
}

.legal-content .container {
    max-width: 860px;
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content .legal-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-content .legal-updated i {
    color: var(--primary);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    padding-bottom: 8px;
    border-bottom: 3px solid var(--primary-light);
    display: inline-block;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
}

.legal-content .legal-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 20px 0;
}

.legal-content .legal-box p {
    margin-bottom: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-connector {
        display: none;
    }

    .step {
        max-width: 400px;
    }

    .preview-showcase {
        grid-template-columns: 1fr;
    }

    .preview-screen-wrapper {
        order: -1;
    }

    .live-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        min-width: calc(50% - 12px);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-slow);
        z-index: 99;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 16px;
        width: 100%;
    }

    .nav-link.nav-cta {
        text-align: center;
        margin-top: 12px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 2px;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }

    .phone-notch {
        width: 100px;
        height: 24px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .live-counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card {
        min-width: calc(100% - 0px);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .signup-form-wrapper {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .responsible-gaming-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .live-counter-grid {
        grid-template-columns: 1fr;
    }

    .signup-trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .preview-screen {
        width: 280px;
    }
}

/* ========================================
   ANIMATIONS - Scroll Reveal
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   CONFETTI ANIMATION
   ======================================== */

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall 1.5s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
