   @import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
        @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
        
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --dark-bg: #0f0f23;
            --card-bg: #1a1a2e;
            --accent: #00d4ff;
            --discord: #5865F2;
        }

        html, body {
            width: 100%;
            height: 100%;
        }
                
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: var(--dark-bg);
            background-image: url("/assets/img/bg.jpg");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            font-family: "Exo 2", sans-serif;

            display: flex;
            align-items: center;
            justify-content: center;

            min-height: 100vh;
            margin: 0;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 15, 35, 0.92);
            backdrop-filter: blur(8px);
            z-index: 0;
        }
        
        .login-container {
            position: relative;
            z-index: 1;
            max-width: 450px;
            width: 90%;
            padding: 60px 40px;
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            animation: fadeInUp 0.6s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .logo-container {
            margin-bottom: 40px;
        }
        
        .logo-container img {
            max-width: 280px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.4));
        }
        
        .login-title {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 15px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .login-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .discord-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            width: 100%;
            padding: 18px 40px;
            background: var(--discord);
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
        }
        
        .discord-btn:hover {
            background: #4752C4;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
            color: white;
        }
        
        .discord-btn i {
            font-size: 1.5rem;
        }
        
        .features {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .feature-text {
            flex: 1;
        }
        
        .feature-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 3px;
        }
        
        .feature-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .back-home {
            margin-top: 30px;
        }
        
        .back-home a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .back-home a:hover {
            color: #fff;
        }