/* LoopDigger v2.5 — Premium Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --brand: #FF5C00;
    --background: #080808;
    --surface: #111111;
    --surface-raised: #181818;
    --subtle: #888888;
    --dim: #525252;
    --border: rgba(255,255,255,0.07);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.2); }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Glass Components */
.glass {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-dark {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Glow Effects */
.glow-on-hover:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Category Card Hover */
.category-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-card:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-5px);
}

/* Global Player Bar */
#global-player-bar {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-bar-inner {
    transition: width 0.1s linear;
}

/* Logo Sizing */
.site-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Selection */
::selection {
    background: var(--brand);
    color: white;
}
