        :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: #10b981;
            --accent-yellow: #fbbf24;
            --accent-red: #ef4444;
            --warning: #f59e0b;
            --glow: rgba(16, 185, 129, 0.4);
            --ease: cubic-bezier(.4,0,.2,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;
            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); }
        }

        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        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;
            animation: slideIn 0.6s var(--ease);
        }

        .nav-content {
            max-width: 1400px;
            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(-2px);
        }

        .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);
        }

        .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: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -.02em;
            animation: fadeUp 0.8s var(--ease) 0.2s both;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--muted);
            margin-bottom: 2rem;
            animation: fadeUp 0.8s var(--ease) 0.3s both;
        }

        .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;
        }

        .maintenance-container {
            max-width: 900px;
            margin: 2rem auto 4rem;
            padding: 4rem;
            background: var(--card);
            backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 20px;
            text-align: center;
            animation: fadeUp 0.8s var(--ease) 0.5s both;
        }

        .maintenance-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            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), #fbbf24);
            -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;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 20px;
            color: var(--warning);
            font-weight: 600;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }

        .progress-container {
            margin: 3rem auto;
            max-width: 600px;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            color: var(--muted);
            font-size: 1rem;
        }

        .progress-bar {
            height: 10px;
            background: rgba(255,255,255,.05);
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--warning), #fbbf24);
            border-radius: 5px;
            width: 70%;
        }

        .bot-status-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .status-info-card {
            background: rgba(255,255,255,.02);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 2rem;
            text-align: left;
            transition: all 0.3s var(--ease);
        }

        .status-info-card:hover {
            border-color: var(--warning);
            transform: translateY(-5px);
        }

        .status-info-icon {
            width: 60px;
            height: 60px;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--warning);
            margin-bottom: 1.25rem;
        }

        .status-info-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .status-info-desc {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .status-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.9rem;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--warning);
        }

        .current-status {
            background: rgba(255,255,255,.02);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: center;
        }

        .current-status h3 {
            color: var(--warning);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .current-status p {
            color: var(--muted);
            font-size: 1rem;
        }

        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;
            }
            
            .bot-status-info {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: .75rem;
            }
        }

        @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;
            }
            
            .stat-card {
                padding: 1rem;
            }
            
            .stat-value {
                font-size: 2rem;
            }
        }