* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: linear-gradient(135deg, #0b0f1c 0%, #1a1f33 100%);
    font-family: 'Segoe UI', 'Poppins', sans-serif;
    color: #e0e0ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container { width: 100%; max-width: 500px; padding: 20px; }
.glass-card {
    background: rgba(20, 30, 50, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(100, 150, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(0, 255, 255, 0.1) inset;
    transition: 0.3s;
}
.glass-card:hover { box-shadow: 0 20px 50px rgba(0, 180, 255, 0.3); }
h1.glitch {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #a0f0ff;
    text-shadow: 0 0 10px cyan, 0 0 20px blue;
    margin-bottom: 10px;
    position: relative;
}
h1.glitch::before, h1.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
h1.glitch::before { left: 2px; text-shadow: -2px 0 red; animation: glitch-1 2s infinite linear alternate-reverse; }
h1.glitch::after { left: -2px; text-shadow: 2px 0 blue; animation: glitch-2 3s infinite linear alternate-reverse; }
@keyframes glitch-1 { 0% { clip-path: inset(0 0 0 0); } 5% { clip-path: inset(10% 0 30% 0); } 10% { clip-path: inset(0 0 0 0); } 100% { clip-path: inset(0 0 0 0); } }
@keyframes glitch-2 { 0% { clip-path: inset(0 0 0 0); } 5% { clip-path: inset(70% 0 10% 0); } 10% { clip-path: inset(0 0 0 0); } 100% { clip-path: inset(0 0 0 0); } }
.subtitle { text-align: center; color: #aabbee; margin-bottom: 30px; }
.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.input-group input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(0, 10, 30, 0.6);
    border: 1px solid #2f4f8f;
    border-radius: 40px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
}
.input-group input:focus { border-color: #00ccff; box-shadow: 0 0 15px #00ccff80; }
.input-group button {
    padding: 0 25px;
    background: linear-gradient(45deg, #0066ff, #00ccff);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.2s;
}
.input-group button:hover { transform: scale(1.05); box-shadow: 0 0 20px #00ccff; }
.primary-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid #00ffff;
    border-radius: 40px;
    color: #00ffff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.primary-btn:hover { background: #00ffff22; box-shadow: 0 0 30px cyan; }
.account-info {
    background: #0a1428;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #00ffcc;
    word-break: break-all;
}
.countdown {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffaa00;
    margin-top: 20px;
    text-shadow: 0 0 15px orange;
}


.footer { margin-top: 30px; display: flex; justify-content: center; gap: 20px; color: #99aacc; font-size: 14px; }
.footer a { color: #aaccff; text-decoration: none; border-bottom: 1px dashed; }
.message { margin: 10px 0; padding: 10px; border-radius: 8px; text-align: center; }
.message.success { background: #1e3a2e; color: #a0ffa0; border: 1px solid #00aa00; }
.message.error { background: #4a1e2e; color: #ffa0a0; border: 1px solid #aa0000; }
.admin-container { display: flex; width: 100%; min-height: 100vh; }
.admin-nav { width: 240px; background: #0b0f20; padding: 20px; border-right: 1px solid #2f3f6f; }
.admin-nav ul { list-style: none; margin-top: 30px; }
.admin-nav li a { display: block; padding: 12px 20px; color: #bbd0ff; text-decoration: none; border-radius: 12px; margin-bottom: 5px; }
.admin-nav li a:hover, .admin-nav li a.active { background: #1a2a4a; color: white; }
.admin-main { flex: 1; padding: 30px; background: #0e1228; }
.stats { display: flex; gap: 20px; margin-top: 20px; }
.stat-card { background: #151e36; padding: 30px; border-radius: 24px; flex: 1; text-align: center; font-size: 1.4rem; border: 1px solid #2a3f6f; }