/* Root Colors */
:root {
    --lime: #C6D870;
    --lime-bright: #D0E580;
    --black: #000000;
    --dark: #1A1A1A;
    --glass: rgba(26, 26, 26, 0.8);
}

/* Global Body */
body {
    background-color: var(--black);
    color: #D0E580;
    font-family: 'Rubik Maze', system-ui;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Font Classes */
.rubik-maze-regular { font-family: 'Rubik Maze', system-ui; font-weight: 400; font-style: normal; }
.serif-headline { font-family: 'Rubik Maze', system-ui; }
.cursive { font-family: 'Rubik Maze', system-ui; color: var(--lime); }
.condensed { font-family: 'Rubik Maze', system-ui; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 10px; }

/* Animation Keyframes */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.animate-fade { animation: fadeIn 0.8s forwards; }
.hero-zoom { animation: slowZoom 20s infinite alternate linear; }

/* Layout Elements */
.view { display: none; min-height: 100vh; }
.view.active { display: block; animation: fadeIn 1s ease-out; }

/* Navigation Style */
.nav-link {
    font-family: 'Rubik Maze', system-ui;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lime);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--lime); text-shadow: 0 0 10px rgba(198, 216, 112, 0.4); }

/* Buttons */
.btn-elite {
    font-family: 'Rubik Maze', system-ui;
    padding: 1.25rem 3rem;
    background: var(--lime);
    color: black;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}
.btn-elite:hover { background: var(--lime-bright); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(198, 216, 112, 0.2); }

.btn-outline {
    font-family: 'Rubik Maze', system-ui;
    padding: 1.25rem 3rem;
    border: 1px solid var(--lime);
    color: var(--lime);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-block;
}
.btn-outline:hover { background: var(--lime); color: black; }

/* Editorial Cards */
.editorial-card {
    font-family: 'Rubik Maze', system-ui;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    cursor: pointer;
}
.editorial-card img { transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
.editorial-card:hover img { transform: scale(1.08); }

.overlay-gradient {
    font-family: 'Rubik Maze', system-ui;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 60%);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    opacity: 1;
}

/* Filter Pills */
.filter-pill {
    font-family: 'Rubik Maze', system-ui;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(198, 216, 112, 0.2);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-pill.active { background: var(--lime); color: black; border-color: var(--lime); }

/* Dropcap */
.dropcap::first-letter {
    font-family: 'Rubik Maze', system-ui;
    float: left;
    font-size: 5rem;
    line-height: 0.8;
    padding-right: 0.5rem;
    color: var(--lime);
}

/* Quickview Modal */
.modal {
    font-family: 'Rubik Maze', system-ui;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}
.modal.active { display: block; }

/* Auth Sections */
.auth-container { font-family: 'Rubik Maze', system-ui; max-width: 450px; margin: 0 auto; }
.input-group { position: relative; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2.5rem; }
.input-group input {
    font-family: 'Rubik Maze', system-ui;
    width: 100%;
    background: transparent;
    padding: 1rem 0;
    outline: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}
.input-group label {
    font-family: 'Rubik Maze', system-ui;
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    pointer-events: none;
    transition: all 0.3s ease;
}
.input-group input:focus ~ label, .input-group input:valid ~ label { top: -1.5rem; font-size: 0.6rem; color: var(--lime); }