/* 
 * DGWeb SaaS - Elite Design System
 * Obsidian & Amber Gold Aesthetic
 */

:root {
    --bg-dark: #0a0a0b;
    --surface: #121214;
    --surface-hover: #18181b;
    --primary: #d4af37; /* Amber Gold */
    --primary-hover: #f1c40f;
    --text: #f8fafc;
    --text-dim: #94a3b8;
    --border: rgba(212, 175, 55, 0.2);
    --border-dim: rgba(255, 255, 255, 0.05);
    --red: #ef4444;
    --green: #10b981;
    --glass: rgba(18, 18, 20, 0.8);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glow: 0 0 15px rgba(212, 175, 55, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Glass Card */
.elite-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.elite-card:hover {
    border-color: var(--border);
    transform: translateY(-2px);
    box-shadow: var(--shadow), var(--glow);
}

/* Typography */
h1, h2, h3 {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: 1px solid transparent;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Inputs */
input, select {
    background: #000;
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    width: 100%;
    outline: none;
    transition: all 0.2s;
}

input:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Badges */
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-active { background: rgba(16, 185, 129, 0.1); color: var(--green); border: 1px solid var(--green); }
.badge-expired { background: rgba(239, 68, 68, 0.1); color: var(--red); border: 1px solid var(--red); }
