/* --- 1. GLOBAL STYLES & FONT (UNCHANGED) --- */
body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Permanent Marker', cursive; 
    margin: 0;
    padding: 0;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    box-shadow: inset 0 0 100px 30px rgba(70, 0, 70, 0.8);
}

.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* --- 2. TYPOGRAPHY & HEADINGS (UPDATED) --- */
.title-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
    /* Reduced bottom margin to bring the subtitle closer */
    margin-bottom: 5px; 
}

/* NEW STYLE FOR SUBTITLE */
.page-subtitle {
    font-size: 1.3em;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px; /* Space between subtitle and separator */
    opacity: 0.8; /* Slightly less prominent than the main title */
}

.section-title {
    font-size: 2em;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* --- 3. KEY AESTHETIC ELEMENTS (UNCHANGED) --- */
.separator {
    width: 250px;
    height: 10px;
    /* Margin updated to align with subtitle change */
    margin: 10px auto 40px auto; 
    border-bottom: 2px solid #FFFFFF; 
}

.dashed-border {
    border: 3px dashed #FFFFFF; 
}

.media-element {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

/* --- [Remaining styles for Trailer, Gallery, Download, and Footer are unchanged] --- */

/* ... (rest of the CSS code remains the same as the previous step) ... */

/* --- 4. TRAILER SECTION --- */
.trailer-section { padding-bottom: 40px; }

.video-placeholder {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(50, 0, 50, 0.2); 
    position: relative;
    padding: 10px; 
    box-sizing: border-box; 
}

/* --- 5. GALLERY SECTION - SCROLLABLE GALLERY STYLES --- */

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    width: 90%; 
    padding: 0 10px; 
}

.gallery-container {
    display: flex; 
    gap: 10px;
    overflow-x: auto; 
    scroll-snap-type: x mandatory;
    flex-grow: 1; 
    height: 400px; 
    align-items: center;
    
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    min-width: 100%; 
    max-width: 100%; 
    height: 100%;
    flex-shrink: 0; 
    scroll-snap-align: start; 
    padding: 10px; 
    box-sizing: border-box; 
    display: flex; 
    justify-content: center;
    align-items: center;
}

.arrow-button {
    font-size: 2em;
    background: none;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px; 
    flex-shrink: 0; 
    z-index: 10;
}

/* --- 6. DOWNLOAD SECTION --- */
.download-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 40px;
}

.character-art {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    flex-shrink: 0;
    padding: 10px; 
    box-sizing: border-box;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 250px;
}

.download-button {
    text-decoration: none; 
    background: none;
    color: #FFFFFF;
    padding: 15px 20px; 
    font-family: inherit;
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
    display: block; 
}

.system-support {
    margin-top: 50px;
    padding-bottom: 50px;
}

.requirements {
    font-size: 0.9em;
    opacity: 0.8;
}

/* --- 7. FOOTER STYLES --- */
footer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-image {
    max-width: 150px; 
    height: auto;
    display: block; 
    margin: 0 auto; 
}

.copyright {
    font-size: 0.8em;
    opacity: 0.7;
}