:root {
    --bg-dark: #020617;
    --card-bg: rgba(30, 41, 59, 0.5);
    --border: rgba(51, 65, 85, 0.5);
    --accent: #38bdf8;
    --text-white: #f8fafc;
    --text-dim: #94a3b8;
    --green: #22c55e;
    --red: #ef4444;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 60px 20px;
}

/* Header & Date */
header { text-align: center; margin-bottom: 40px; }
.date-display { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-size: 2.8rem; font-weight: 800; margin: 0; letter-spacing: -1.5px; }
.accent { color: var(--accent); }

.system-status { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.85rem; color: var(--text-dim); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #475569; }
.online .dot { background: var(--green); box-shadow: 0 0 12px var(--green); }
.offline .dot { background: var(--red); box-shadow: 0 0 12px var(--red); }

/* Security Banner */
.security-banner {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}
.banner-content { display: flex; gap: 15px; align-items: flex-start; }
.icon-warning { color: var(--red); flex-shrink: 0; margin-top: 2px; }
#geo-info { margin: 0; font-weight: 600; font-size: 0.9rem; }
.policy-note { display: block; margin-top: 5px; font-size: 0.75rem; color: var(--text-dim); line-height: 1.4; }

/* Admin Box */
.admin-box {
    background: rgba(56, 189, 248, 0.03);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.admin-header { display: flex; align-items: center; gap: 8px; color: var(--accent); font-size: 0.75rem; font-weight: 800; margin-bottom: 8px; letter-spacing: 0.5px; }
.admin-box p { margin: 0; font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }

/* Grid & Cards */
.grid { display: flex; flex-direction: column; gap: 12px; }
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover { border-color: var(--accent); background: rgba(30, 41, 59, 0.8); transform: scale(1.02); }
.card-left { display: flex; align-items: center; gap: 16px; }
.icon-box { background: rgba(255,255,255,0.03); padding: 12px; border-radius: 12px; color: var(--accent); }
.card h3 { margin: 0; font-size: 1.1rem; }
.card p { margin: 2px 0 0 0; font-size: 0.8rem; color: var(--text-dim); font-family: monospace; }
.status-indicator { width: 10px; height: 10px; border-radius: 50%; background: #334155; }

/* Disclaimer */
footer { margin-top: 50px; border-top: 1px solid var(--border); padding-top: 20px; }
.disclaimer { font-size: 0.7rem; color: var(--text-dim); text-align: center; line-height: 1.6; max-width: 500px; margin: 0 auto; }
