        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #00D084;
            --primary-dark: #00A868;
            --primary-hover: #00BF78;
            --accent: #00E6A1;
            --accent-dark: #008F5A;
            --soft-green: #A8F5D2;
            --light-green: #D9FFF0;
            --bg-primary: #07120E;
            --bg-secondary: #0B2E22;
            --bg-card: #0F211A;
            --surface: #122820;
            --accent-green: var(--primary);
            --accent-green-dark: var(--primary-dark);
            --accent-blue: var(--accent-dark);
            --accent-purple: var(--soft-green);
            --text-primary: #F4FFF9;
            --text-secondary: #A8F5D2;
            --text-muted: #B7EED5;
            --text-on-green: #FFFFFF;
            --border-color: rgba(183, 238, 213, 0.22);
            --shadow-green: rgba(0, 168, 104, 0.25);
            --main-gradient: linear-gradient(135deg, #00D084, #00A868);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #07120E;
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .bg-gradient::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at 20% 20%, rgba(0, 208, 132, 0.14) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 80%, rgba(0, 230, 161, 0.09) 0%, transparent 50%),
                        radial-gradient(ellipse at 50% 50%, rgba(0, 168, 104, 0.08) 0%, transparent 60%);
            animation: bgPulse 15s ease-in-out infinite;
        }
        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: var(--particle-size, 10px);
            height: var(--particle-size, 10px);
            background: rgba(0, 208, 132, 0.36);
            border-radius: 50%;
            opacity: 0.22;
            box-shadow: 0 0 24px rgba(0, 208, 132, 0.28);
            animation: float 20s infinite;
        }
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(7, 18, 14, 0.86);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(7, 18, 14, 0.96);
            box-shadow: 0 4px 30px var(--shadow-green);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--accent-green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .logo:hover {
            text-shadow: 0 0 24px rgba(0, 208, 132, 0.32);
            transform: scale(1.02);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--main-gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-on-green);
        }

        .header-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .tg-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .tg-link:first-child {
            color: var(--text-secondary);
            background: transparent;
            border: 1px solid var(--border-color);
        }

        .tg-link:first-child:hover {
            color: var(--text-primary);
            border-color: var(--primary);
            background: rgba(0, 208, 132, 0.1);
        }

        .tg-link:last-child {
            color: var(--text-on-green);
            background: var(--main-gradient);
            border: none;
        }

        .tg-link:last-child:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-green);
        }

        .tg-icon {
            width: 18px;
            height: 18px;
        }

        /* Main content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* Section styling */
        .section {
            margin-bottom: 3rem;
        }

        .section-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 18px 60px rgba(0, 168, 104, 0.16);
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.42), transparent);
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-icon {
            width: 40px;
            height: 40px;
            background: var(--main-gradient);
            color: var(--text-on-green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Download button */
        .download-btn {
            width: 100%;
            padding: 1.25rem 2rem;
            background: var(--main-gradient);
            color: var(--text-on-green);
            border: none;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .download-btn:hover::before {
            left: 100%;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--shadow-green);
        }

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

        /* Instructions */
        .instructions {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--bg-secondary);
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .instructions-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--accent-green);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .instruction-step {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.25rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.035);
            border-radius: 12px;
            border-left: 3px solid var(--accent-green);
            transition: all 0.3s ease;
        }

        .instruction-step:hover {
            background: rgba(255, 255, 255, 0.065);
            transform: translateX(5px);
        }

        .step-number {
            width: 28px;
            height: 28px;
            background: var(--main-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            flex-shrink: 0;
            color: var(--text-on-green);
        }

        .step-content {
            flex: 1;
        }

        .step-content strong {
            color: var(--text-primary);
        }

        .step-content a {
            color: var(--accent-blue);
            text-decoration: none;
        }

        .step-content a:hover {
            text-decoration: underline;
        }

        /* Ping section */
        .ping-section {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(0, 208, 132, 0.12), rgba(0, 230, 161, 0.12));
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .ping-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-blue);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .ping-btn {
            padding: 0.875rem 1.5rem;
            background: var(--main-gradient);
            color: var(--text-on-green);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .ping-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-green);
        }

        .ping-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .ping-spinner {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: none;
        }

        .ping-btn.loading .ping-spinner {
            display: block;
        }

        .ping-btn.loading .ping-icon {
            display: none;
        }

        .servers-info {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .servers-info span {
            color: var(--accent-green);
            font-weight: 600;
        }



        .connect-note {
            margin-top: 0.75rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .feed-panels {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .feed-box {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1rem;
            box-shadow: inset 0 0 0 1px rgba(168, 245, 210, 0.08);
        }

        .feed-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .feed-title {
            color: var(--accent);
            font-size: 1rem;
        }

        .feed-controls {
            display: flex;
            gap: 0.5rem;
        }

        .feed-nav {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--primary-dark);
            background: var(--main-gradient);
            color: var(--text-on-green);
            cursor: pointer;
            font-size: 0;
            font-weight: 700;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 22px var(--shadow-green);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .feed-nav::before {
            content: '›';
            font-size: 2rem;
            line-height: 1;
            transform: translateY(-1px);
        }

        .feed-nav[data-dir="-1"]::before {
            content: '‹';
        }

        .feed-nav:hover {
            background: linear-gradient(135deg, var(--primary-hover), var(--accent-dark));
            transform: translateY(-1px);
            box-shadow: 0 12px 28px var(--shadow-green);
        }

        .feed-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(220px, 220px);
            gap: 1rem;
            overflow-x: hidden;
            overscroll-behavior-inline: contain;
            scroll-snap-type: x mandatory;
            scrollbar-color: rgba(0, 208, 132, 0.45) rgba(255, 255, 255, 0.05);
            -webkit-overflow-scrolling: touch;
            padding: 0 1rem 0.8rem;
            scroll-padding-inline: 1rem;
            max-width: 100%;
        }

        .feed-track::-webkit-scrollbar {
            height: 10px;
        }

        .feed-track::-webkit-scrollbar-track {
            background: var(--surface);
            border-radius: 999px;
        }

        .feed-track::-webkit-scrollbar-thumb {
            background: rgba(0, 208, 132, 0.45);
            border-radius: 999px;
        }

        .feed-card {
            scroll-snap-align: start;
            aspect-ratio: 1 / 1;
            padding: 1rem;
            border-radius: 14px;
            background: var(--surface);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 26px rgba(0, 168, 104, 0.14);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 0.5rem;
        }

        .feed-card a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .feed-card a:hover {
            color: var(--accent-green);
        }

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

        /* Games section */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }

        .game-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--main-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .game-card:hover::before {
            opacity: 0.1;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-blue);
            box-shadow: 0 10px 40px rgba(0, 168, 104, 0.2);
        }

        .game-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .game-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            position: relative;
            z-index: 1;
        }

        .game-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        /* App Store buttons */
        .store-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .store-btn:hover {
            background: var(--surface);
            border-color: var(--accent-green);
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(0, 168, 104, 0.12);
        }

        .store-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

        .store-text {
            display: flex;
            flex-direction: column;
        }

        .store-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .store-name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            padding: 3rem 1.5rem;
            text-align: center;
            border-top: 1px solid var(--border-color);
            margin-top: 2rem;
        }

        .footer-text {
            font-size: 1.25rem;
            color: var(--text-muted);
            font-weight: 500;
        }

            .logo {
                font-size: 1.4rem;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
            }

            .tg-link span {
                display: none;
            }

            .tg-link {
                padding: 0.6rem;
            }

            main {
                padding-top: 80px;
            }

            .container {
                padding: 1rem;
            }

            .section-card {
                padding: 1.5rem;
                border-radius: 20px;
            }

            .section-title {
                font-size: 1.25rem;
            }

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

            .game-icon {
                font-size: 2rem;
            }

            .store-buttons {
                grid-template-columns: 1fr;
            }

            .instruction-step {
                padding: 0.875rem;
            }
        /* Glow effects */
        .glow-green {
            box-shadow: 0 0 40px rgba(0, 208, 132, 0.2);
        }

        /* Tooltip */
        .tooltip {
            position: relative;
        }

        .tooltip::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            padding: 0.5rem 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .tooltip:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* Animation initial states */
        .gsap-reveal {
            opacity: 1;
        }
