/*
Theme Name: Leads Monopoly
Author: Antigravity
Description: A custom SaaS-style WordPress theme for Leads Monopoly.
Version: 1.0.0
*/

:root {
    /* Core Palette */
    --bg-dark: #0a0e14; /* Deep Navy/Black */
    --bg-panel: #141820; /* Slightly lighter for cards/sidebar */
    --bg-hover: #1e2430;
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-primary: #fbbf24; /* Amber-400 equivalent - Gold/Yellow */
    --accent-hover: #f59e0b;
    --accent-text: #0f172a; /* Dark text on gold button */

    --border-subtle: #1e293b;
    
    /* Spacing & Layout */
    --sidebar-width: 260px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Base Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--accent-text);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.hidden {
    display: none !important;
}
