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

html {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: #050505;
}

/* Hero Section */
.hero {
    min-height: auto; /* Changed from 100vh to allow it to be compact */
    padding: 20px 20px 40px 20px; /* Minimal top padding, some bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Pushes content toward the top */
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 80%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6));
    animation: pulse 4s infinite ease-in-out;
}

/* 2. Remove default H1 margin causing the top gap */
h1 {
    margin: 0 0 10px 0; /* Zero top margin, tiny bottom margin */
    font-size: clamp(2.5rem, 10vw, 5rem);
    line-height: 1; /* Prevents extra vertical space around letters */
    letter-spacing: 15px;
    color: #ff003c;
    text-shadow: 0 0 20px #ff003c;
}

/* Store Section */
/* Center the section headings */
.store-announcement {
    padding-top: 60px;
    padding-bottom: 60px; /* Increase this number for more space */
    text-align: center;
}

.videos h2 {
    padding-top: 60px;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 5px;
    color: #ff003c;
    text-shadow: 0 0 10px #ff003c;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Ensure the store content box stays centered as well */
.content-box {
    margin: 0 auto; /* This centers the box horizontally */
    border: 2px solid #ff003c;
    padding: 40px;
    box-shadow: inset 0 0 20px #ff003c, 0 0 20px #ff003c;
    max-width: 600px;
}

.glow-bar {
    height: 4px;
    width: 50%;
    background: #ff003c;
    margin: 20px auto;
    box-shadow: 0 0 10px #ff003c;
}

/* Taglines */
.tagline {
    font-size: clamp(1.rem, 4vw, 2rem);
    font-weight: 800;
    color: #ffff00;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 10px 0 5px 0;
    text-shadow: 0 0 10px #ffff00, 0 0 20px #b8b800; /* Adds a yellow neon glow */
}

.sub-tag {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #bbbbbb; /* A light, clean grey */
    text-transform: uppercase;
    margin-top: 10px;
    margin: 5px 0 0 0;
}

.glow-line {
    height: 2px;
    width: 150px;
    background: #ff003c;
    box-shadow: 0 0 15px #ff003c;
    margin: 10px 0;
}

/* Video Section Layout */
.video-list {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
}

.video-item {
    display: flex;
    flex-direction: row; /* Desktop: Side-by-side */
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
    text-align: left;
}

/* The Video Container */
.video-window {
    flex: 1.5; /* Takes up more space than the text */
    position: relative;
    padding-bottom: 30.25%; /* Maintains 16:9 ratio */
    height: 0;
    min-width: 300px;
}

.video-window iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ff003c;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
}

/* The Description Text */
.video-info {
    flex: 1;
    padding: 10px;
}

.video-info h3 {
    color: #ff003c;
    margin-top: 0;
    letter-spacing: 2px;
}

.video-info p {
    color: #ccc;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* RESPONSIVE: Stack them on mobile */
@media (max-width: 850px) {
    .video-item {
        flex-direction: column; /* Switches to top-to-bottom */
        text-align: center;
    }

    .video-window {
        width: 100%;
        padding-bottom: 56.25%; /* Full 16:9 on mobile */
    }
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.laser-divider {
    height: 1px;
    width: 80%;
    max-width: 1000px;
    background: linear-gradient(90deg, transparent, #ff003c, transparent);
    margin: 0 auto;
    box-shadow: 0 0 10px #ff003c;
}

/* Trademark Symbol Styling */
.tm {
    font-size: 0.35em;       /* Makes it roughly 1/3 the size of the parent text */
    vertical-align: super;  /* Lifts it to the top of the letters */
    margin-left: 5px;       /* Adds a tiny gap so it's not touching the last letter */
    letter-spacing: normal; /* Prevents the header's wide spacing from stretching the TM */
    text-shadow: none;      /* Optional: removes the heavy glow if it's too blurry */
    font-weight: normal;    /* Ensures it doesn't look too bold */
}

/* Ensure the smaller TM symbol inherits the yellow glow but stays small */
.tagline .tm {
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
}

.store-button {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 30px;
    background-color: transparent;

    /* This forces the color to be yellow instead of browser blue */
    color: #ffff00 !important;

    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 2px solid #ffff00;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

/* Hover state to make it interactive */
.store-button:hover {
    background-color: #ffff00;
    color: #000 !important;
    box-shadow: 0 0 25px #ffff00;
    transform: scale(1.05);
}
