        :root {
            --clr-primary: #F5A623;
            --clr-primary-dark: #E0911A;
            --clr-primary-light: #FFF3E0;
            --clr-secondary: #2B6CB0;
            --clr-secondary-dark: #1E4F85;
            --clr-secondary-light: #E8F2FC;
            --clr-accent: #FF6B6B;
            --clr-success: #38A169;
            --clr-success-light: #E6F9EE;
            --clr-bg: #FAFAF8;
            --clr-white: #FFFFFF;
            --clr-text: #2D3748;
            --clr-text-light: #718096;
            --clr-border: #E2E8F0;
            --clr-dark: #1A202C;
            --radius-sm: 8px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 28px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Nunito', sans-serif;
            --header-h: 72px;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-body); color: var(--clr-text); background: var(--clr-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        button { cursor: pointer; border: none; font-family: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--clr-primary-dark); background: var(--clr-primary-light); padding: 6px 16px; border-radius: 50px; margin-bottom: 12px; }
        .section-title { font-family: var(--font-heading); font-size: clamp(28px, 5vw, 42px); font-weight: 800; color: var(--clr-text); line-height: 1.2; margin-bottom: 12px; }
        .section-subtitle { font-size: 17px; color: var(--clr-text-light); max-width: 560px; }
        .section-header { text-align: center; margin-bottom: 48px; }
        .section-header .section-subtitle { margin: 0 auto; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; border-radius: var(--radius-md); transition: all 0.25s; white-space: nowrap; }
        .btn--primary { background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)); color: #fff; padding: 10px 24px; font-size: 14px; box-shadow: 0 4px 12px rgba(245,166,35,0.35); }
        .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.45); }
        .btn--lg { padding: 16px 40px; font-size: 17px; border-radius: var(--radius-lg); }

        /* HEADER */
        .header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-h); background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--clr-border); z-index: 1000; transition: box-shadow 0.3s; }
        .header.scrolled { box-shadow: var(--shadow-md); }
        .header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--clr-text); flex-shrink: 0; }
        .logo__icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; }
        .logo span { color: var(--clr-primary); }
        .nav { display: flex; align-items: center; gap: 8px; }
        .nav__link { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--clr-text-light); padding: 8px 16px; border-radius: var(--radius-sm); transition: all 0.2s; white-space: nowrap; }
        .nav__link:hover { color: var(--clr-text); background: var(--clr-primary-light); }
        .user-bar { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
        .user-bar__logged { display: none; align-items: center; gap: 12px; }
        .user-bar__logged.active { display: flex; }
        .user-bar__guest.hidden { display: none; }
        .user-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-secondary-light), var(--clr-primary-light)); display: flex; align-items: center; justify-content: center; font-size: 18px; border: 2px solid var(--clr-primary); }
        .user-points { display: flex; align-items: center; gap: 6px; background: var(--clr-primary-light); padding: 6px 14px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--clr-primary-dark); cursor: pointer; transition: all 0.2s; }
        .user-points:hover { background: var(--clr-primary); color: #fff; }
        .burger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; z-index: 1001; }
        .burger__line { width: 24px; height: 2.5px; background: var(--clr-text); border-radius: 2px; transition: all 0.3s; }
        .burger.active .burger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .burger.active .burger__line:nth-child(2) { opacity: 0; }
        .burger.active .burger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        .mobile-menu { display: none; position: fixed; top: var(--header-h); left: 0; width: 100%; height: calc(100vh - var(--header-h)); background: var(--clr-white); padding: 24px 20px; z-index: 999; overflow-y: auto; }
        .mobile-menu.active { display: flex; flex-direction: column; gap: 8px; }
        .mobile-menu .nav__link { display: block; font-size: 18px; padding: 14px 16px; border-radius: var(--radius-md); color: var(--clr-text); }

        /* ЕКРАН 1: HERO GAME ZONE */
        .hero-game { padding: calc(var(--header-h) + 24px) 0 12px; background: linear-gradient(170deg, #FFF8EE 0%, #FFF0D9 30%, #FFFAF2 60%, #F0F6FF 100%); position: relative; overflow: hidden; min-height: 100vh; min-height: 100dvh; }
        .hero-game::before { content: ''; position: absolute; top: -120px; right: -120px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); border-radius: 50%; }
        .hero-game .container { position: relative; z-index: 1; }
        .hero-game__top { text-align: center; margin-bottom: 16px; }
        .hero-game__title { font-family: var(--font-heading); font-size: clamp(20px, 3.5vw, 30px); font-weight: 600; line-height: 1.15; margin-bottom: 4px; animation: fadeInUp 0.6s ease 0.1s both; }
        .hero-game__title em { font-style: normal; background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-game__subtitle { font-size: 14px; color: var(--clr-text-light); max-width: 420px; margin: 0 auto; animation: fadeInUp 0.6s ease 0.2s both; }

        /* 3-COLUMN LAYOUT */
        .game-zone { display: grid; grid-template-columns: 1.22fr 2.5fr 1.26fr; gap: 24px; align-items: start; animation: fadeInUp 0.6s ease 0.3s both; }

        /* LEFT COLUMN — LIVE FEED */
        .live-feed { background: var(--clr-white); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); border: 1.5px solid #CBD5E0; overflow: hidden; max-height: 480px; display: flex; flex-direction: column; }
        .live-feed__header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--clr-border); }
        .live-feed__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-success); animation: livePulse 1.5s ease-in-out infinite; }
        @keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
        .live-feed__label { font-family: var(--font-heading); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-text-light); }
        .live-feed__list { display: flex; flex-direction: column; gap: 0; overflow: hidden; flex: 1; }
        .live-feed__marquee { animation: marqueeScroll 20s linear infinite; }
        @keyframes marqueeScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .feed-item { display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-radius: var(--radius-sm); transition: background 0.2s; }
        .feed-item:hover { background: var(--clr-primary-light); }
        .feed-item__avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
        .feed-item__avatar--f { background: linear-gradient(135deg, #FFDEE9, #FFB6C1); }
        .feed-item__avatar--m { background: linear-gradient(135deg, #D4E4FF, #A8C8FF); }
        .feed-item__info { min-width: 0; }
        .feed-item__name { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--clr-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .feed-item__amount { font-size: 12px; font-weight: 700; color: var(--clr-success); }

        /* CENTER COLUMN — GAME CARD */
        .game-card { background: var(--clr-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1.5px solid #CBD5E0; overflow: hidden; position: relative; }
        .game-card__photo { width: 100%; aspect-ratio: 6/5; object-fit: cover; display: block; background: linear-gradient(135deg, #FFE0B2, #FFCC80); position: relative; overflow: hidden; }
        .game-card__photo img { width: 100%; height: 100%; object-fit: cover; }
        .game-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 100px; background: linear-gradient(135deg, #FFE0B2 0%, #FFCC80 50%, #FFD54F 100%); position: relative; }
        .game-card__photo-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 35%, transparent 55%); }
        .game-card__animal-name { position: absolute; bottom: 32px; left: 20px; font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.35); z-index: 2; }
        .game-card__animal-info { position: absolute; bottom: 12px; left: 20px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); text-shadow: 0 1px 4px rgba(0,0,0,0.3); z-index: 2; }
        .game-card__animal-tag { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 50px; font-family: var(--font-heading); font-size: 11px; font-weight: 700; color: var(--clr-text); z-index: 2; }
        .game-card__body { padding: 12px 20px; }
        .game-card__shelter { display: none; }

        /* STATE A: Default button */
        .game-card__actions { }
        .btn-feed { width: 100%; padding: 14px 20px; font-family: var(--font-heading); font-size: 16px; font-weight: 800; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)); color: #fff; box-shadow: 0 6px 24px rgba(245,166,35,0.4); transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; letter-spacing: 0.5px; animation: btnPulse 2.5s ease-in-out infinite; }
        .btn-feed:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(245,166,35,0.55); }
        .btn-feed:active { transform: translateY(0) scale(0.97); }
        @keyframes btnPulse { 0%, 100% { box-shadow: 0 6px 24px rgba(245,166,35,0.4); } 50% { box-shadow: 0 6px 36px rgba(245,166,35,0.6), 0 0 0 8px rgba(245,166,35,0.08); } }

        /* Feeding animation */
        .feeding-overlay { display: none; position: absolute; inset: 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(4px); z-index: 10; flex-direction: column; align-items: center; justify-content: center; gap: 16px; border-radius: var(--radius-md); }
        .feeding-overlay.active { display: flex; }
        .feeding-anim { font-size: 64px; animation: feedBounce 0.6s ease infinite; }
        @keyframes feedBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-12px) scale(1.15); } }
        .feeding-text { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--clr-primary-dark); }

        /* STATE B: Two buttons */
        .btn-pair { display: none; gap: 12px; }
        .btn-pair.active { display: flex; }
        .btn-next { flex: 7; padding: 14px 16px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-dark)); color: #fff; box-shadow: 0 4px 14px rgba(43,108,176,0.3); transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .btn-next:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(43,108,176,0.4); }
        .btn-video { flex: 3; padding: 14px 10px; font-family: var(--font-heading); font-size: 13px; font-weight: 800; border-radius: var(--radius-md); background: linear-gradient(135deg, #FFB300, #FF8F00); color: #fff; box-shadow: 0 4px 14px rgba(255,179,0,0.35); transition: all 0.25s; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; line-height: 1.2; }
        .btn-video:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,179,0,0.5); }
        .btn-video__badge { font-size: 11px; opacity: 0.9; }

        /* HOW IT WORKS - under left column */
        .how-it-works { background: var(--clr-white); border-radius: var(--radius-md); padding: 10px 14px; box-shadow: var(--shadow-sm); border: 1.5px solid #CBD5E0; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; }
        .how-it-works__step { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--clr-text); font-family: var(--font-heading); font-weight: 700; }
        .how-it-works__arrow { color: var(--clr-primary-dark); font-size: 16px; font-weight: 900; -webkit-text-stroke: 1px var(--clr-primary-dark); }

        /* RIGHT COLUMN — STATS HUD */
        .stats-hud { display: flex; flex-direction: column; gap: 12px; }
        .progress-card { background: var(--clr-white); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); border: 1.5px solid #CBD5E0; text-align: center; }
        .progress-card__title { font-family: var(--font-heading); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-text-light); margin-bottom: 10px; }

        /* KIBBLE PARTICLE ANIMATION */
        .kibble-particle {
            position: fixed;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            will-change: transform, opacity;
        }
        .kibble-particle--large { width: 12px; height: 12px; }
        .kibble-particle--small { width: 7px; height: 7px; }

        /* BOWL ANIMATION */
        .bowl-container { position: relative; width: 100px; height: 60px; margin: 0 auto 12px; }
        .bowl { position: relative; width: 100%; height: 100%; }
        .bowl__body { position: absolute; bottom: 0; left: 5px; right: 5px; height: 40px; border: 3px solid var(--clr-text); border-top: none; border-radius: 0 0 40px 40px; background: rgba(255,255,255,0.5); overflow: hidden; }
        .bowl__rim { position: absolute; top: 8px; left: 0; right: 0; height: 12px; border: 3px solid var(--clr-text); border-radius: 50px; background: var(--clr-white); z-index: 2; }
        .bowl__fill { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, var(--clr-primary), #FFD54F); transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); border-radius: 0 0 37px 37px; }

        .progress-card__amount { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: var(--clr-text); margin-bottom: 4px; }
        .progress-card__amount span { color: var(--clr-text-light); font-size: 16px; font-weight: 600; }
        .progress-card__bar { width: 100%; height: 6px; background: var(--clr-border); border-radius: 50px; overflow: hidden; margin-bottom: 6px; }
        .progress-card__bar-fill { height: 100%; background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent)); border-radius: 50px; transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .progress-card__bar-fill--full { background: linear-gradient(90deg, var(--clr-success), #68D391); }
        .progress-card__label { font-size: 12px; color: var(--clr-text-light); }
        .progress-card__label--danger { color: var(--clr-accent); font-weight: 700; }

        /* GUEST BADGE */
        .guest-badge { background: #FFFBEB; border: 2px dashed var(--clr-primary); border-radius: var(--radius-md); padding: 12px; text-align: center; }
        .guest-badge__icon { font-size: 20px; margin-bottom: 4px; }
        .guest-badge__title { font-family: var(--font-heading); font-size: 13px; font-weight: 800; color: var(--clr-primary-dark); margin-bottom: 4px; }
        .guest-badge__text { font-size: 11px; color: var(--clr-text-light); line-height: 1.4; }

        /* WIN MODAL */
        /* WIN OVERLAY */
        .win-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 2000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; }
        .win-overlay.active { display: flex; }
        .win-overlay.visible { opacity: 1; }
        .win-modal { background: var(--clr-white); border-radius: 20px; padding: 36px 32px 28px; max-width: 400px; width: 90%; text-align: center; transform: translateY(30px) scale(0.95); opacity: 0; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease; position: relative; }
        .win-overlay.visible .win-modal { transform: translateY(0) scale(1); opacity: 1; }
        .win-modal__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: none; background: none; cursor: pointer; font-size: 18px; color: #aaa; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
        .win-modal__close:hover { background: #f0f0f0; color: #666; }
        .win-modal__icon { font-size: 48px; margin-bottom: 12px; }
        .win-modal__title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--clr-text); margin-bottom: 8px; }
        .win-modal__subtitle { font-size: 15px; color: var(--clr-text); line-height: 1.5; margin-bottom: 6px; }
        .win-modal__warning { font-size: 13px; color: var(--clr-text-light); line-height: 1.5; margin-bottom: 24px; padding: 10px 14px; background: #FFF8E1; border-radius: 10px; border: 1px solid #FFE082; }
        .win-modal__btn-save { width: 100%; padding: 16px; font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #43A047, #2E7D32); border: none; border-radius: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 16px rgba(46,125,50,0.35); transition: transform 0.2s, box-shadow 0.2s; }
        .win-modal__btn-save:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.45); }
        .win-modal__btn-skip { display: inline-block; margin-top: 16px; font-size: 12px; color: #aaa; background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: color 0.2s; }
        .win-modal__btn-skip:hover { color: #888; }

        /* TOAST NOTIFICATION */
        .toast { position: fixed; top: -80px; left: 50%; transform: translateX(-50%); z-index: 3000; background: linear-gradient(135deg, #43A047, #2E7D32); color: #fff; padding: 14px 28px; border-radius: 14px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; box-shadow: 0 8px 30px rgba(46,125,50,0.4); display: flex; align-items: center; gap: 10px; white-space: nowrap; transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .toast.visible { top: 24px; }
        .toast__icon { font-size: 20px; }
        .toast__text { line-height: 1.4; }
        .toast__text span { font-weight: 400; opacity: 0.9; font-size: 12px; display: block; }

        @media (max-width: 600px) {
            .toast { left: 12px; right: 12px; transform: none; font-size: 13px; padding: 12px 20px; border-radius: 12px; white-space: normal; }
        }

        /* CONFETTI */
        .confetti-piece { position: fixed; width: 10px; height: 10px; z-index: 1999; pointer-events: none; will-change: transform; }
        .confetti-piece--strip { width: 8px; height: 20px; border-radius: 2px; }
        .confetti-piece--circle { border-radius: 50%; }
        .confetti-piece--square { border-radius: 2px; }

        /* AD SLOT */

        /* MOBILE GAME ZONE */
        @media (max-width: 1024px) and (min-width: 601px) {
            .hero-game { padding: calc(var(--header-h) + 20px) 0 12px; }
            .hero-game__title { font-size: 20px; }
            .game-zone { grid-template-columns: 6fr 4fr; grid-auto-rows: min-content; gap: 12px; align-items: start; }
            .game-card { order: 1; grid-row: 1 / 4; }
            .stats-hud { order: 2; grid-column: 2; flex-direction: column; gap: 12px; }
            .live-feed-wrap { order: 3; grid-column: 2; }
            .live-feed { max-height: 270px; }
            .how-it-works { margin-top: 8px; }
            .progress-card { min-width: unset; }
            .guest-badge { min-width: unset; }
        }
        @media (max-width: 600px) and (min-width: 480px) {
            .hero-game { padding: calc(var(--header-h) + 14px) 0 12px; }
            .hero-game__title { font-size: 16px; }
            .game-zone { grid-template-columns: 1fr; gap: 12px; }
            .game-card { order: 1; }
            .game-card__photo { aspect-ratio: unset; max-height: 40vh; max-height: 40dvh; }
            .game-card__photo-placeholder { max-height: 40vh; max-height: 40dvh; }
            .game-card__photo-placeholder img { object-fit: cover; width: 100%; height: 100%; }
            .stats-hud { order: 2; flex-direction: row; flex-wrap: wrap; }
            .progress-card { flex: 1; min-width: 160px; }
            .guest-badge { flex: 1; min-width: 160px; }
            .live-feed-wrap { order: 3; }
            .live-feed { max-height: 240px; }
        }
        @media (max-width: 479px) {
            .hero-game { padding: calc(var(--header-h) + 14px) 0 12px; }
            .hero-game__title { font-size: 16px; }
            .game-zone { grid-template-columns: 1fr; gap: 12px; }
            .game-card { order: 1; }
            .game-card__photo { aspect-ratio: unset; max-height: 250px; }
            .game-card__photo-placeholder { max-height: 250px; }
            .game-card__photo-placeholder img { object-fit: cover; width: 100%; height: 100%; }
            .stats-hud { order: 2; flex-direction: column; }
            .progress-card { min-width: unset; }
            .guest-badge { min-width: unset; }
            .live-feed-wrap { order: 3; }
            .live-feed { max-height: 220px; }
        }
        @media (max-width: 768px) {
            .stats-hud { flex-direction: column; }
            .game-card__photo-placeholder { font-size: 72px; }
            .hero-game { padding-bottom: 32px; }
        }

        /* ЕКРАН 2: КОНКУРСИ */
        .contests { padding: 80px 0; background: var(--clr-white); }
        .carousel-wrap { position: relative; overflow: hidden; }
        .carousel { display: flex; gap: 20px; transition: transform 0.4s ease; padding: 10px 0; }
        .contestant-card { min-width: 260px; background: var(--clr-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; flex-shrink: 0; }
        .contestant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .contestant-card__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: flex; align-items: center; justify-content: center; font-size: 72px; }
        .contestant-card__body { padding: 16px; }
        .contestant-card__name { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 2px; }
        .contestant-card__city { font-size: 13px; color: var(--clr-text-light); margin-bottom: 12px; }
        .contestant-card__votes { font-size: 13px; color: var(--clr-text-light); margin-bottom: 10px; }
        .vote-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; background: #FFF0F0; color: var(--clr-accent); border-radius: var(--radius-md); font-family: var(--font-heading); font-size: 14px; font-weight: 700; transition: all 0.2s; }
        .vote-btn:hover { background: var(--clr-accent); color: #fff; }
        .vote-btn.voted { background: var(--clr-accent); color: #fff; }
        .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
        .carousel-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--clr-white); border: 1.5px solid #CBD5E0; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.2s; color: var(--clr-text); }
        .carousel-btn:hover { border-color: var(--clr-primary); background: var(--clr-primary-light); color: var(--clr-primary); }
        .contest-cta { text-align: center; margin-top: 40px; }

        /* ЕКРАН 3: КРАУДФАНДИНГ */
        .crowdfunding { padding: 80px 0; background: var(--clr-bg); }
        .crowd-header__badge { display: inline-flex; align-items: center; gap: 6px; background: var(--clr-success-light); color: var(--clr-success); font-family: var(--font-heading); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin-bottom: 12px; }
        .crowd-subtitle { font-size: 16px; color: var(--clr-text-light); max-width: 480px; margin: 0 auto 48px; }
        .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .fund-card { background: var(--clr-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
        .fund-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
        .fund-card__img-wrap { position: relative; overflow: hidden; }
        .fund-card__img { width: 100%; height: 200px; object-fit: cover; }
        .fund-card__badge { position: absolute; top: 12px; left: 12px; display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); color: var(--clr-success); font-family: var(--font-heading); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 50px; z-index: 2; }
        .fund-card__body { padding: 20px; }
        .fund-card__title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 14px; line-height: 1.3; }
        .fund-card__progress-bar { width: 100%; height: 10px; background: var(--clr-border); border-radius: 50px; overflow: hidden; }
        .fund-card__progress-fill { height: 100%; background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent)); border-radius: 50px; transition: width 1s ease; }
        .fund-card__progress-info { display: flex; justify-content: space-between; font-size: 13px; color: var(--clr-text-light); margin-top: 6px; }
        .fund-card__progress-info strong { color: var(--clr-text); font-weight: 700; }
        .fund-card__cta { width: 100%; margin-top: 16px; padding: 14px; font-size: 15px; font-weight: 700; font-family: var(--font-heading); background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-dark)); color: #fff; border-radius: var(--radius-md); transition: all 0.25s; box-shadow: 0 4px 12px rgba(43,108,176,0.25); }
        .fund-card__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(43,108,176,0.35); }
        .fund-card__note { text-align: center; font-size: 12px; color: var(--clr-text-light); margin-top: 8px; }
        .fund-card__note::before { content: '🔒 '; }
        .fund-card--hidden-mobile { display: block; }
        .show-more-wrap { display: none; text-align: center; margin-top: 20px; }
        .show-more-wrap.hidden { display: none; }
        .show-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--clr-white); border: 1.5px solid #CBD5E0; border-radius: var(--radius-md); font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--clr-text); transition: all 0.2s; }
        .show-more-btn:hover { border-color: var(--clr-primary); color: var(--clr-primary); background: var(--clr-primary-light); }

        /* ДОВІРА */
        .trust { padding: 80px 0; background: var(--clr-white); }
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
        .stat-card { background: var(--clr-bg); border-radius: var(--radius-xl); padding: 32px; text-align: center; position: relative; overflow: hidden; }
        .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent)); }
        .stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--clr-secondary), #63B3ED); }
        .stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--clr-success), #68D391); }
        .stat-card__icon { font-size: 36px; margin-bottom: 12px; }
        .stat-card__number { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 44px); font-weight: 900; color: var(--clr-text); line-height: 1; margin-bottom: 4px; }
        .stat-card__label { font-size: 14px; color: var(--clr-text-light); font-weight: 600; }
        .docs-section { margin-bottom: 64px; }
        .docs-section h3, .partners-section h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 24px; text-align: center; }
        .docs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
        .doc-card { background: var(--clr-bg); border: 1.5px solid #CBD5E0; border-radius: var(--radius-md); padding: 20px; text-align: center; cursor: pointer; transition: all 0.2s; }
        .doc-card:hover { border-color: var(--clr-secondary); background: var(--clr-secondary-light); }
        .doc-card__icon { font-size: 36px; margin-bottom: 8px; }
        .doc-card__name { font-family: var(--font-heading); font-size: 13px; font-weight: 700; }
        .partners-ribbon { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
        .partner-logo { height: 40px; padding: 8px 20px; background: var(--clr-bg); border-radius: var(--radius-sm); font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--clr-text-light); display: flex; align-items: center; gap: 8px; filter: grayscale(1); opacity: 0.6; transition: all 0.3s; }
        .partner-logo:hover { filter: grayscale(0); opacity: 1; }

        /* FOOTER */
        .footer { background: var(--clr-dark); color: #A0AEC0; padding: 64px 0 32px; }
        .footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
        .footer__brand .logo { color: #fff; margin-bottom: 16px; }
        .footer__text { font-size: 14px; line-height: 1.7; max-width: 280px; }
        .footer__col-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 20px; }
        .footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer__link { font-size: 14px; color: #A0AEC0; transition: color 0.2s; }
        .footer__link:hover { color: var(--clr-primary); }
        .footer__socials { display: flex; gap: 12px; margin-top: 8px; }
        .footer__social { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.2s; }
        .footer__social:hover { background: var(--clr-primary); color: #fff; }
        .footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 13px; }

        /* MODALS */
        .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 2000; align-items: center; justify-content: center; }
        .modal-overlay.active { display: flex; }
        .modal { background: var(--clr-white); border-radius: var(--radius-xl); padding: 40px; max-width: 440px; width: 90%; position: relative; animation: modalIn 0.3s ease; }
        @keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
        .modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--clr-bg); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--clr-text-light); transition: all 0.2s; }
        .modal__close:hover { background: var(--clr-border); color: var(--clr-text); }
        .modal__icon { font-size: 48px; text-align: center; margin-bottom: 16px; }
        .modal__title { font-family: var(--font-heading); font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 12px; }
        .modal__text { font-size: 15px; color: var(--clr-text-light); text-align: center; line-height: 1.6; }
        .login-form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
        .form-input { width: 100%; padding: 14px 16px; border: 1.5px solid #CBD5E0; border-radius: var(--radius-md); font-family: var(--font-body); font-size: 15px; transition: border-color 0.2s; outline: none; }
        .form-input:focus { border-color: var(--clr-secondary); }
        .social-login { display: flex; gap: 12px; margin-top: 8px; }
        .social-login__btn { flex: 1; padding: 12px; border: 1.5px solid #CBD5E0; border-radius: var(--radius-md); background: var(--clr-white); display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--clr-text); transition: all 0.2s; }
        .social-login__btn:hover { border-color: var(--clr-primary); background: var(--clr-primary-light); }
        .form-divider { text-align: center; font-size: 13px; color: var(--clr-text-light); position: relative; margin: 4px 0; }
        .form-divider::before, .form-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 20px); height: 1px; background: var(--clr-border); }
        .form-divider::before { left: 0; }
        .form-divider::after { right: 0; }
        .lightbox-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 3000; align-items: center; justify-content: center; padding: 40px; }
        .lightbox-overlay.active { display: flex; }
        .lightbox-content { background: var(--clr-white); border-radius: var(--radius-lg); padding: 40px; max-width: 600px; width: 100%; max-height: 80vh; overflow-y: auto; position: relative; }
        .lightbox-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; background: var(--clr-bg); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--clr-text); cursor: pointer; border: none; }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
        .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
        .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 1024px) { .nav { display: none; } .burger { display: flex; } .footer__grid { grid-template-columns: 1fr 1fr; } .user-bar__guest { display: none; } }
        @media (max-width: 768px) {
            :root { --header-h: 64px; }
            .stats-grid { grid-template-columns: 1fr; gap: 16px; }
            .cards-grid { grid-template-columns: 1fr; gap: 16px; }
            .fund-card--hidden-mobile { display: none; }
            .fund-card--hidden-mobile.shown { display: block; }
            .show-more-wrap { display: block; }
            .contestant-card { min-width: 240px; }
            .footer__grid { grid-template-columns: 1fr; gap: 32px; }
            .docs-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-game { padding-bottom: 32px; }
        }
        @media (max-width: 480px) { .container { padding: 0 16px; } .partners-ribbon { gap: 16px; } .modal { padding: 28px 20px; } }
