@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

        :root {
            --bg: #000000;
            --text: #FFFFFF;
            --text-dim: #8E8E93;
            --nav-bg: rgba(0, 0, 0, 0.6);
            --glow-purple: rgba(138, 43, 226, 0.4);
            --glow-pink: rgba(255, 105, 180, 0.4);
            --glow-cyan: rgba(0, 255, 255, 0.3);
            --font-main: 'Inter', -apple-system, sans-serif;
            --ring-gradient: conic-gradient(from 180deg, #ff2a2a, #ff7a00, #ffde00, #24ff00, #00f0ff, #0004ff, #c200ff, #ff2a2a);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-main);
            overflow-x: hidden;
            selection-background: var(--text);
            selection-color: var(--bg);
        }

        h1, h2, h3 {
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1.05;
        }

        .hashtag {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--text);
            text-shadow: 0 4px 24px rgba(0,0,0,0.8);
            position: relative;
            z-index: 2;
        }

        .avatar-ring {
            position: relative;
            border-radius: 50%;
            background: var(--ring-gradient);
            padding: 2px;
            display: inline-flex;
        }

        .avatar-ring img, .avatar-ring .emoji-avatar {
            border-radius: 50%;
            border: 2px solid var(--bg);
            background: #111;
            display: block;
            object-fit: cover;
        }

        .icon-hollow {
            fill: none;
            stroke: var(--text-dim);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s ease;
        }

        .icon-hollow:hover {
            stroke: var(--text);
        }

        nav.global-nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
        }

        @media (min-width: 768px) {
            nav.global-nav {
                padding: 1.5rem 3rem;
            }
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 900;
            letter-spacing: -0.05em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        @media (min-width: 768px) {
            .logo {
                font-size: 1.5rem;
            }
        }

        .logo span { color: var(--text-dim); }

        .nav-links {
            display: none;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
                gap: 2rem;
                font-weight: 500;
                color: var(--text-dim);
            }
        }

        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text);
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.98);
            z-index: 99;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .nav-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--text); }

        .btn-primary {
            background: var(--text);
            color: var(--bg);
            padding: 0.625rem 1.25rem;
            border-radius: 2rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            font-size: 0.875rem;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255,255,255,0.3);
        }

        @media (min-width: 768px) {
            .btn-primary {
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
            }
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            padding-top: 4rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        @media (min-width: 768px) {
            .hero {
                min-height: 140vh;
                padding-top: 5rem;
                padding-left: 0;
                padding-right: 0;
            }
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
            max-width: 800px;
            padding: 1.5rem;
            border-radius: 1.5rem;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
        }

        @media (min-width: 768px) {
            .hero-content {
                padding: 3rem;
                border-radius: 2rem;
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 10vw, 7rem);
            margin-bottom: 1rem;
            font-weight: 900;
            background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--text-dim);
            margin-bottom: 2rem;
            font-weight: 400;
            line-height: 1.5;
        }

        @media (min-width: 768px) {
            .hero h1 {
                font-size: clamp(4rem, 8vw, 7rem);
                margin-bottom: 1.5rem;
                line-height: 1.05;
            }
            .hero p {
                font-size: 1.5rem;
                margin-bottom: 3rem;
            }
        }

        .hero p {
            font-size: 1.5rem;
            color: var(--text-dim);
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .perspective-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .dot-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(var(--cols, 20), 1fr);
            grid-template-rows: repeat(var(--rows, 12), 1fr);
            gap: 1rem;
            transition: opacity 0.3s ease;
        }

        .dot {
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            justify-self: center;
            align-self: center;
            transition: opacity 0.3s ease;
        }

        .emoji-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .emoji-item {
            position: absolute;
            font-size: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s ease;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
        }

        .emoji-item.forest { filter: drop-shadow(0 0 20px rgba(0, 255, 100, 0.4)); }
        .emoji-item.fire { filter: drop-shadow(0 0 20px rgba(255, 50, 0, 0.5)); }
        .emoji-item.magic { filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.5)); }
        .emoji-item.water { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4)); }

        .app-showcase {
            position: relative;
            z-index: 20;
            margin-top: 0;
            display: flex;
            justify-content: center;
            width: 100%;
            padding: 0 1rem;
            perspective: 1000px;
        }

        @media (min-width: 768px) {
            .app-showcase {
                margin-top: -10vh;
            }
        }

        .ambient-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            z-index: -1;
            pointer-events: none;
        }

        .glow-1 { top: -10%; left: 10%; background: var(--glow-cyan); }
        .glow-2 { top: 40%; right: 10%; background: var(--glow-purple); }

        
        .app-window {
            width: 320px;
            height: 694px;
            background: #000;
            border: 10px solid #1a1a1c;
            border-radius: 44px;
            overflow: hidden;
            box-shadow: 
                0 30px 80px rgba(0,0,0,0.8), 
                0 0 60px rgba(138, 43, 226, 0.15),
                inset 0 0 0 2px #333,
                inset 0 0 20px rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            position: relative;
            flex-shrink: 0;
            transform: translateY(0);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @media (min-width: 768px) {
            .app-window {
                width: 393px;
                height: 852px;
                border: 14px solid #1a1a1c;
                border-radius: 55px;
                box-shadow: 
                    0 40px 100px rgba(0,0,0,0.8), 
                    0 0 80px rgba(138, 43, 226, 0.15),
                    inset 0 0 0 2px #333,
                    inset 0 0 20px rgba(255,255,255,0.05);
            }
            .app-window:hover {
                transform: translateY(-20px);
            }
        }

        .features {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        @media (min-width: 768px) {
            .features {
                padding: 10rem 2rem;
            }
        }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .feature-row {
                grid-template-columns: 1fr 1fr;
                gap: 6rem;
                margin-bottom: 10rem;
            }
            .feature-row:nth-child(even) {
                grid-template-columns: 1.2fr 0.8fr;
            }
        }

        .feature-text h2 {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .feature-text p {
            font-size: 1rem;
            color: var(--text-dim);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .feature-text h2 {
                font-size: 4rem;
                margin-bottom: 1.5rem;
            }
            .feature-text p {
                font-size: 1.25rem;
                margin-bottom: 2rem;
            }
        }

        .feature-text p {
            font-size: 1.25rem;
            color: var(--text-dim);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .feature-visual {
            position: relative;
            aspect-ratio: 1;
            background: #080808;
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .cluster-visual {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .floating-avatar {
            position: absolute;
            box-shadow: 0 20px 40px rgba(0,0,0,0.8);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .floating-avatar:hover {
            transform: scale(1.1) translateY(-10px);
            z-index: 10;
        }

        .floating-avatar .avatar-ring { padding: 3px; }
        .floating-avatar img { width: 64px; height: 64px; }

        .fa-1 { top: 20%; left: 20%; }
        .fa-2 { top: 15%; right: 25%; }
        .fa-3 { bottom: 30%; left: 30%; }
        .fa-4 { bottom: 20%; right: 20%; }
        
        .community {
            padding: 2rem 1rem 6rem;
            text-align: center;
            position: relative;
        }
        .community-content h2 {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .community-content p {
            font-size: 1.125rem;
            color: var(--text-dim);
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) {
            .community {
                padding: 1rem 2rem 8rem;
            }
            .community-content h2 {
                font-size: 3.5rem;
                margin-bottom: 1rem;
            }
            .community-content p {
                font-size: 1.25rem;
                margin-bottom: 3rem;
            }
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        @media (min-width: 768px) {
            .social-links {
                gap: 1.5rem;
            }
        }
        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: 600;
            color: var(--text);
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }
        .social-link svg {
            width: 20px;
            height: 20px;
        }

        @media (min-width: 768px) {
            .social-link {
                gap: 0.75rem;
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            .social-link svg {
                width: 24px;
                height: 24px;
            }
        }
        .social-link svg {
            width: 24px;
            height: 24px;
        }
        .social-link:hover {
            transform: translateY(-3px);
            background: rgba(255,255,255,0.1);
        }
        .social-link.discord:hover {
            box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
            border-color: rgba(88, 101, 242, 0.5);
        }
        .social-link.x:hover {
            box-shadow: 0 0 30px rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
        }
        .social-link.tiktok:hover {
            box-shadow: 0 0 30px rgba(255, 0, 80, 0.4);
            border-color: rgba(255, 0, 80, 0.5);
        }
