/* --- 1. GLOBAL VARIABLES & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg-color: #050505;
    --bg-secondary: #111111;
    --card-bg: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --accent: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.2);
    --font-main: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.discord-btn-small {
    text-decoration: none;
    color: #050505;
    background: #ffffff;
    padding: 8px 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 70%);
    padding-top: 100px;
}

.glitch-wrapper {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #aaaaaa;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* --- UPLOAD BOX --- */
.input-group {
    display: flex;
    background: #111;
    border: 1px solid #333;
    padding: 5px;
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px;
    outline: none;
}

.main-cta {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 25px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

/* --- CARDS --- */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 50px 5%;
}

.card {
    background: #111;
    border: 1px solid #222;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
}

.card:hover { border-color: #fff; }

.meta {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
}

.thumbnail { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
iframe { width: 100%; height: 100%; background: #000; border: none; }