/* 
   TAILWIND-COMPLEMENTARY CSS
   This file handles legacy support and custom complex interactions 
   that aren't easily done with Tailwind alone.
*/

:root {
    --bg-dark: #121212;
    --bg-panel: #1e1e1e;
    --gold: #C9A84C;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
}

/* Global Transitions */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Scrollbar Styling for a premium feel */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Text Selection */
::selection {
    background: var(--gold);
    color: #000;
}

/* Custom Glassmorphism Utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Typography spacing */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* Logo specific hover glow */
.logo-img:hover {
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(201, 168, 76, 0.4));
}
