/* ==========================================================================
   X SMILE RECORDS - BASE & GLOBAL LAYOUT
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Background Video Imprint */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(35%);
}

/* Main Container Base */
.container {
    width: 95%;
    max-width: 450px;
    text-align: center;
    padding: 40px 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .container {
        max-width: 90% !important;
    }
}

/* Global Typography */
h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 1px solid #333;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.8;
}

/* Section Headline */
.section-headline {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #22c55e;
    display: inline-block;
    padding-bottom: 5px;
}