        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #87da72, #7fb354);
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            overflow: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(114, 137, 218, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(114, 137, 218, 0.3) 0%, transparent 40%);
            z-index: -1;
        }
        
        .container {
            max-width: 800px;
            background: rgba(35, 39, 42, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #7bda72, #77b354, #75da72);
            animation: progress 4s linear forwards;
        }
        
        .logo {
            margin-bottom: 30px;
        }
        
        .logo i {
            font-size: 80px;
            color: #87da72;
            background: white;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #39FF14;
        }
c {
              font-size: 1.5rem;
            font-weight: 600;
            margin: 20px 0;
            color: #72da83;
        }
        
        .countdown {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 20px 0;
            color: #72da83;
        }
        
        .loader {
            width: 100%;
            max-width: 400px;
            margin: 40px auto;
        }
        
        .loader-bar {
            height: 12px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            margin-bottom: 10px;
        }
        
        .loader-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #72da80, #6fb354);
            border-radius: 10px;
            animation: loader 4s linear forwards;
        }
        
        .loader-text {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #a0a0a0;
        }
       
        
        .manual-link {
            margin-top: 30px;
            font-size: 1.1rem;
        }
        
        .manual-link a {
            color: #7bda72;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .manual-link a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        
        .discord-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .info-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            width: 200px;
            transition: transform 0.3s;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .info-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #72da80;
        }
        
        .info-card h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .info-card p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        @keyframes loader {
            0% { width: 0; }
            100% { width: 100%; }
        }
        
        @keyframes progress {
            0% { width: 0; }
            100% { width: 100%; }
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            p {
                font-size: 1rem;
            }
            
            .discord-info {
                gap: 15px;
            }
            
            .info-card {
                width: 100%;
                max-width: 250px;
            }
        }