:root {
    --neon-blue: #00e5ff;
    --neon-cyan: #00fbff;
    --neon-yellow: #ffd700;
    --bg-dark: #000000;
}

*, *::before, *::after {
    box-sizing: border-box; /* Forces padding to stay inside boxes */
}

html, body {
    background: var(--bg-dark);
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Absolutely no horizontal scrolling */
    min-height: 100vh;
}

.full-screen-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px 10px;
}

.form-box {
    background: rgba(0,0,0,0.85);
    border: 1px solid var(--neon-blue);
    width: 95%;
    max-width: 400px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,229,255,0.15);
    z-index: 10;
    margin: 20px auto;
}

.btn {
    border: 1px solid var(--neon-blue);
    padding: 10px 15px;
    color: var(--neon-blue);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    background: rgba(0,0,0,0.8);
    white-space: normal; word-wrap: break-word; padding: 12px 15px; height: auto; display: flex; align-items: center; justify-content: center; line-height: 1.2;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.btn:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 15px var(--neon-blue);
}

/* =========================================
   THE GLOBAL SVG CAGE
   Forces all mathematical vectors to obey their parent containers
========================================= */
img {
    max-width: 100%;
}

img[src$=".svg"], img[src*="data:image/svg"] {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; background: transparent !important;
}

/* The Guillotine: Force containers to chop off exploding elements */
.media-socket, 
.track-item, 
.admin-item, 
.transmission-box, 
.track-card,
.swiper-slide {
    overflow: hidden !important;
}

/* =========================================
   GHOST PLACEHOLDERS (Stop text from looking pre-filled)
========================================= */
input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    opacity: 1 !important; /* Firefox override */
}