       :root {
    --bg-dark: #050a10;
    --bg-panel: rgba(13, 19, 28, 0.84);
    --bg-panel-strong: rgba(9, 13, 19, 0.96);
    --primary: #f5c518;
    --accent: #ffd55b;
    --accent-soft: rgba(245, 197, 24, 0.12);
    --text-light: #edf3fb;
    --text-muted: #a2b0c3;
    --glass-border: rgba(245, 197, 24, 0.22);
    --shadow-lg: 0 24px 54px rgba(2, 8, 23, 0.5);
    --discord: #5865f2;
}

* {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    margin: 0;
    padding: 22px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 12% 0%, rgba(245, 197, 24, 0.16) 0%, transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(88, 101, 242, 0.14) 0%, transparent 26%),
        linear-gradient(180deg, #0b1118 0%, #050a10 100%);
    text-align: center;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(245, 197, 24, 0.04), transparent 35%, rgba(88, 101, 242, 0.04) 100%);
    pointer-events: none;
}

.container {
    width: min(760px, 100%);
    padding: 30px 28px 24px;
    background: linear-gradient(180deg, rgba(16, 22, 31, 0.94), rgba(9, 14, 20, 0.96));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.container::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 18px rgba(245, 197, 24, 0.6);
}

.container::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.14), transparent 60%);
    pointer-events: none;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(245, 197, 24, 0.45);
    background: rgba(245, 197, 24, 0.12);
    color: #fff3c3;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Orbitron', sans-serif;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin: 0 auto 24px;
    max-width: 580px;
    line-height: 1.7;
}

.icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(245, 197, 24, 0.45);
    background: rgba(245, 197, 24, 0.12);
    font-size: 2.2em;
    color: #fff3c3;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.btn-discord {
    background: linear-gradient(135deg, var(--discord), #4752c4);
    color: white;
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Orbitron';
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 16px 32px rgba(88, 101, 242, 0.24);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(88, 101, 242, 0.34);
}

.admin-login {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.84em;
}

.admin-login a {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.admin-login a:hover {
    color: #fff3c3;
}

.login-footer {
    margin: 40px auto 0 auto;
    width: min(92%, 760px);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.55;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(10, 15, 22, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
    position: relative;
    z-index: 1;
}

.login-footer .dev-credit {
    margin-top: 4px;
}

.login-footer .heart-icon {
    color: rgba(239, 68, 68, 0.95);
}

.login-footer a {
    color: #d9dce3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-footer a:hover {
    color: #fff3c3;
}

@media (max-width: 640px) {
    body {
        padding: 12px;
    }

    .login-footer {
        margin-top: 28px;
        font-size: 0.74rem;
        padding: 10px 8px;
        width: 98%;
    }

    .container {
        padding: 22px 14px 18px;
        border-radius: 18px;
    }

    .icon-box {
        width: 72px;
        height: 72px;
        font-size: 1.9em;
    }

    p {
        font-size: 0.96rem;
    }
}
