:root {
    --text-primary: #f8fafc;
    --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    /* Keep overflow hidden to prevent scrolling and keep the focus purely on the single image */
    overflow: hidden; 
    font-family: var(--font-main);
    background-color: #000;
}

/* Fullscreen Background Image */
.fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Ensures the image fills the screen without stretching */
    z-index: 1;
}

/* Content Overlay for the text */
.overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes header to top, footer to bottom */
    align-items: center;
    padding-top: 5vh; /* Positions text at the top */
    padding-bottom: 5vh; /* Positions text at the bottom */
    /* Add a subtle dark gradient at the top and bottom so the white text is always readable */
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 20%, transparent 50%, rgba(0,0,0,0.1) 80%, rgba(0,0,0,0.8) 100%);
    pointer-events: none; /* Allows clicks to pass through to the image */
}

.hero-header {
    text-align: center;
    animation: fadeInDown 0.8s ease-out forwards;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
    /* Heavy text shadow to ensure it pops out from the background image */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0,0,0,0.7);
}

.hero-footer {
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    padding: 0 2rem;
    margin-bottom: 2vh;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.85); /* Much darker background for contrast */
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3); /* Thicker, brighter border */
    padding: 1.5rem 3.5rem; /* Larger padding */
    border-radius: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.highlight-text {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Considerably larger text */
    font-weight: 900;
    color: #ff3333; /* Brighter, more intense red */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 15px rgba(255, 51, 51, 0.6);
}

.divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
}

.impact-text {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Considerably larger text */
    font-weight: 700; /* Bolder font */
    color: #ffffff; /* Pure white */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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