/* OFFICIAL.MY - CORE ARCHITECTURE v4.1
   RECOVERY SUCCESSFUL 
*/

:root {
    /* DARK THEME (DEFAULT) */
    --bg: #020617;
    --card: #0f172a;
    --border: #1e293b;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --accent: #10b981;
    --glow: rgba(59, 130, 246, 0.4);
}

/* LIGHT THEME */
body.light-theme {
    --bg: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #2563eb;
    --accent: #059669;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

/* BENTO BOX STYLE */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glow-text {
    background: linear-gradient(to bottom right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* BUTTONS & LINKS */
a { color: var(--primary); text-decoration: none; transition: 0.3s; }
a:hover { filter: brightness(1.2); }

/* UTILITIES */
.text-center { text-align: center; }