        :root {
            --bg: #000000;
            --card: rgba(255,255,255,.03);
            --card-hover: rgba(255,255,255,.05);
            --border: rgba(255,255,255,.08);
            --text: #ffffff;
            --muted: #86868b;
            --accent: #007aff;
            --warning: #ff9500;
            --glow: rgba(0,122,255,.4);
            --ease: cubic-bezier(.4,0,.2,1);
            --spring: cubic-bezier(.34,1.56,.64,1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 50%;
            left: 50%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, var(--glow), transparent 70%);
            transform: translate(-50%, -50%);
            opacity: .12;
            animation: pulse 8s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes pulse {
            0%, 100% { opacity: .12; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: .2; transform: translate(-50%, -50%) scale(1.08); }
        }

        .loading {
            position: fixed;
            inset: 0;
            background: var(--bg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity .6s var(--ease);
        }

        .loading.fade {
            opacity: 0;
            pointer-events: none;
        }

        .loading-logo {
            width: 100px;
            height: 100px;
            border-radius: 22px;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 .5px rgba(255,255,255,.1);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .loading-text {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: -.02em;
        }

        .loading-dots {
            display: flex;
            gap: 10px;
        }

        .loading-dot {
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            animation: bounce 1.4s ease-in-out infinite;
        }

        .loading-dot:nth-child(2) { animation-delay: .2s; }
        .loading-dot:nth-child(3) { animation-delay: .4s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: scale(.8); opacity: .5; }
            40% { transform: scale(1.2); opacity: 1; }
        }

        nav {
            position: sticky;
            top: 0;
            background: rgba(0,0,0,.7);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: background .3s var(--ease);
        }

        nav.scrolled {
            background: rgba(0,0,0,.85);
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: .75rem;
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform .3s var(--ease);
        }

        .logo:hover {
            transform: translateY(-1px);
        }

        .logo img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
        }

        .nav-links {
            display: flex;
            gap: .5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            padding: .65rem 1rem;
            border-radius: 10px;
            font-size: .95rem;
            font-weight: 500;
            transition: all .3s var(--ease);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text);
            background: rgba(255,255,255,.06);
        }

        .nav-links a.active {
            color: #fff;
            background: var(--accent);
        }

        .hero {
            text-align: center;
            padding: 5rem 2rem 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            letter-spacing: -.03em;
            margin-bottom: 1rem;
            animation: fadeUp 1s var(--ease) .2s both;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--muted);
            margin-bottom: 2rem;
            animation: fadeUp 1s var(--ease) .3s both;
        }

        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .maintenance-container {
            max-width: 800px;
            margin: 2rem auto 4rem;
            padding: 4rem;
            background: var(--card);
            backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid rgba(255, 149, 0, 0.3);
            border-radius: 20px;
            text-align: center;
            animation: fadeUp 1s var(--ease) .5s both;
        }

        .maintenance-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: rgba(255, 149, 0, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--warning);
            animation: pulse-gentle 2s ease-in-out infinite;
        }

        @keyframes pulse-gentle {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }

        .maintenance-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
            background: linear-gradient(90deg, var(--warning), #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .maintenance-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--warning);
        }

        .maintenance-message {
            font-size: 1.1rem;
            color: var(--muted);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .maintenance-details {
            background: rgba(255,255,255,.03);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: left;
        }

        .maintenance-details h3 {
            color: var(--warning);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .maintenance-details h3 i {
            font-size: 1rem;
        }

        .maintenance-details ul {
            list-style: none;
            padding-left: 0;
        }

        .maintenance-details li {
            padding: 0.5rem 0;
            color: var(--muted);
            border-bottom: 1px solid rgba(255,255,255,.05);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .maintenance-details li:last-child {
            border-bottom: none;
        }

        .maintenance-details li i {
            color: var(--warning);
            width: 20px;
            text-align: center;
        }

        .progress-container {
            margin: 2rem 0;
            text-align: left;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            color: var(--muted);
            font-size: 0.9rem;
        }

        .progress-bar {
            height: 8px;
            background: rgba(255,255,255,.05);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--warning), #ffd700);
            border-radius: 4px;
            width: 75%;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255,149,0,.1);
            border: 1px solid rgba(255,149,0,.3);
            border-radius: 20px;
            color: var(--warning);
            font-weight: 600;
            margin: 1rem 0;
        }

        .coming-soon-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .feature-card {
            background: rgba(255,255,255,.02);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: left;
            transition: all 0.3s var(--ease);
        }

        .feature-card:hover {
            border-color: var(--warning);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,149,0,.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--warning);
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .feature-desc {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            max-width: 600px;
            margin: 2rem auto;
            animation: fadeUp 1s var(--ease) .4s both;
        }

        .stat-card {
            background: var(--card);
            backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: all .3s var(--ease);
        }

        .stat-card:hover {
            border-color: rgba(255,255,255,.15);
            transform: translateY(-2px);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: .25rem;
        }

        .stat-label {
            font-size: .9rem;
            color: var(--muted);
            font-weight: 500;
        }

        footer {
            margin-top: 4rem;
            padding: 3rem 2rem;
            border-top: 1px solid var(--border);
            background: rgba(255,255,255,.02);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 3rem;
        }

        .footer-section {
            flex: 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: .75rem;
            margin-bottom: .75rem;
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
            border-radius: 12px;
        }

        .footer-logo span {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-by {
            color: var(--muted);
            font-size: .9rem;
            margin-bottom: 1rem;
        }

        .footer-heading {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: rgba(255,255,255,.6);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: .95rem;
            transition: color .3s var(--ease);
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .footer-links a:hover {
            color: var(--text);
        }

        .footer-links i {
            width: 16px;
            font-size: .85rem;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--muted);
            font-size: .9rem;
        }

        @media (max-width: 968px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .maintenance-container {
                padding: 2rem;
                margin: 2rem 1rem;
            }
            
            .maintenance-title {
                font-size: 2rem;
            }
            
            .coming-soon-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .hero {
                padding: 3rem 1.5rem 2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: .75rem;
            }
            
            .stat-card {
                padding: 1rem;
            }
            
            .stat-value {
                font-size: 2rem;
            }
        }