/* 
   NovelsVault Custom Theme Hub
   Edit these variables to change the entire site's look & feel.
*/

:root {
    /* Core Colors - Classic Netflix / Noir */
    --vault-bg-main: #141414;
    --vault-bg-dark: #000000;
    --vault-card-bg: #181818;
    --vault-accent: #e50914;
    --vault-accent-hover: #b9090b;
    --vault-gold: #d4af37;
    --vault-gold-light: #f1d279;
    --vault-gold-dark: #aa8c2c;

    /* Text Colors */
    --vault-text-main: #f8f8f8;
    --vault-text-muted: #a1a1a1;
    --vault-text-dim: #666666;

    /* Spacing & Borders */
    --vault-border: rgba(255, 255, 255, 0.08);
    --vault-border-bright: rgba(255, 255, 255, 0.15);
    --vault-radius: 12px;
    --vault-radius-lg: 20px;
    --vault-container-width: 1700px;
}

/* Typography Helpers */
.font-serif-premium { font-family: 'Playfair Display', serif; }
.font-sans-premium { font-family: 'Outfit', sans-serif; }

/* Premium Interactive Forms */
input, select, textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

input:focus, select:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 10px 25px -5px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-1px);
    outline: none !important;
}

/* Floating Label Animation Support */
.input-group {
    position: relative;
}

.input-group input:not(:placeholder-shown) {
    background: rgba(255, 255, 255, 0.05);
}

/* Password Toggle Sync */
.password-toggle-btn {
    transition: color 0.2s ease, transform 0.2s ease;
}

.password-toggle-btn:hover {
    color: #d4af37 !important;
    transform: scale(1.1);
}

.password-toggle-btn:active {
    transform: scale(0.9);
}

/* Smooth Form Loading State */
.auth-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    filter: grayscale(0.5);
}

/* Premium Utility Classes */
.premium-shadow { box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.9); }
.premium-border { border: 1px solid var(--vault-border); }
.premium-gradient { background: linear-gradient(135deg, #1a1a1a, #000000); }
.gold-glow { text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }

/* Fiscal Visualization */
.fiscal-bar-bg { background: rgba(255, 255, 255, 0.03); border-radius: 100px; overflow: hidden; height: 8px; }
.fiscal-bar-fill { height: 100%; border-radius: 100px; transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.gold-fill { background: var(--vault-gold-gradient); }

/* Cinematic Hero Text */
.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 700;
}

/* Premium Glass Effect (Performance-Optimized) */
.glass-card, .glass-pill, .glass {
    background-color: var(--vault-card-bg) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid var(--vault-border) !important;
}

.bg-dark-bg { background-color: var(--vault-bg-dark); }
.text-vault-gold { color: var(--vault-gold); }
.bg-vault-gold { background-color: var(--vault-gold); }

/* Global Container Optimization */
.max-w-7xl {
    max-w-full !important;
    max-width: var(--vault-container-width) !important;
}

/* Mobile Spacing Optimization */
@media (max-width: 640px) {
    .px-4 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
    .sm\:px-6 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
}

/* Specific User Overrides: Fixing Overlap */
.pt-4 {
    padding-top: 0rem !important;
}

.pb-12 {
    padding-bottom: 5rem !important;
}

/* Scrollbar - Minimalist Gold */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #d4af37; }

