:root {
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.12);
    --accent: #38bdf8;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    /* Default Blob Colors */
    --blob1: #1e40af;
    --blob2: #0ea5e9;
    --blob3: #312e81;
}

/* Theme Variations controlled by Admin */
[data-theme="sunset"] {
    --blob1: #991b1b;
    --blob2: #ea580c;
    --blob3: #450a0a;
    --accent: #fb923c;
}
[data-theme="forest"] {
    --blob1: #065f46;
    --blob2: #16a34a;
    --blob3: #064e3b;
    --accent: #4ade80;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #020617;
    color: var(--text-main);
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Background Blobs */
.liquid-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 { width: 500px; height: 500px; top: -10%; left: -10%; background: var(--blob1); }
.blob-2 { width: 400px; height: 400px; bottom: 10%; right: -5%; background: var(--blob2); }
.blob-3 { width: 300px; height: 300px; top: 40%; left: 30%; background: var(--blob3); }

@keyframes move { from { transform: translate(0, 0); } to { transform: translate(100px, 100px); } }

/* Layout & Cards */
.container { max-width: 700px; width: 100%; padding: 120px 20px; }

.glass-nav { 
    position: fixed; top: 20px; z-index: 100;
    background: var(--glass); backdrop-filter: blur(15px);
    border: 1px solid var(--border); padding: 12px 30px; border-radius: 40px; 
}

.nav-links { display: flex; gap: 25px; }
.nav-links a { color: #fff; text-decoration: none; font-size: 0.9rem; opacity: 0.7; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); opacity: 1; }

.glass-card { 
    background: var(--glass); backdrop-filter: blur(20px); 
    border: 1px solid var(--border); padding: 40px; border-radius: 32px; 
    margin-bottom: 20px; box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
}

h1 { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 10px; text-align: center; }
.subtitle { color: var(--accent); text-transform: uppercase; font-size: 0.8rem; text-align: center; margin-bottom: 40px; }

.label { display: block; font-size: 0.65rem; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; }
.contact-item a { color: #fff; text-decoration: none; font-size: 1.3rem; font-weight: 300; }

.theme-grid { display: flex; gap: 10px; justify-content: center; margin-top: 15px; }
.theme-btn { border: none; padding: 10px 20px; border-radius: 12px; color: white; cursor: pointer; font-weight: 600; transition: transform 0.2s; }
.theme-btn:hover { transform: scale(1.05); }

/* Status Indicators */
#status-card { display: flex; align-items: center; justify-content: center; margin-bottom: 30px; font-family: monospace; font-size: 0.8rem; }
.dot { height: 6px; width: 6px; border-radius: 50%; background: #94a3b8; margin-right: 10px; }
.status-online .dot { background: #4ade80; box-shadow: 0 0 10px #4ade80; }
.status-offline .dot { background: #ef4444; }

footer { margin-top: 60px; text-align: center; opacity: 0.5; font-size: 0.8rem; }
