/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: #ff6b00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: #ff6b00;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
        border-top: 1px solid #ff6b00;
    }

    nav a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #333;
    }

    nav a:last-child {
        border-bottom: none;
    }
}

/* ========== AGE VERIFICATION BANNER ========== */
.age-verification {
    background: #ff6b00;
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    font-weight: bold;
}

/* ========== HERO SECTION (HOME) ========== */
.hero {
    position: relative;
    min-height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://monstahmike-graphics.s3.us-east-1.amazonaws.com/8DeBZcPQdSSSptzdHldM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.hero-content h1 span {
    color: #ff6b00;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-style: italic;
}

.hero-content p:last-child {
    font-style: normal;
    font-size: 1.1rem;
    color: #ddd;
}

/* ========== PAGE TITLE (ABOUT / OTHER PAGES) ========== */
.page-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-title h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.page-title h1 span {
    color: #ff6b00;
}

.page-title p {
    font-size: 1.2rem;
    color: #ddd;
}

/* ========== ABOUT / MAIN CONTENT BLOCKS ========== */
.about,
.about-content,
.main-content,
.platforms-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about h2,
.about-content h2,
.main-content h2,
.platforms-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.about h2:first-child,
.about-content h2:first-child,
.main-content h2:first-child,
.platforms-content h2:first-child {
    margin-top: 0;
}

.about h2 span,
.about-content h2 span,
.main-content h2 span,
.platforms-content h2 span {
    color: #ff6b00;
}

.about p,
.about-content p,
.main-content p,
.platforms-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #555;
}

.about ul,
.about-content ul,
.main-content ul,
.platforms-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

.about li,
.about-content li,
.main-content li,
.platforms-content li {
    margin-bottom: 0.75rem;
}

/* ========== SERVICES SECTION ========== */
.services {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.services h2 span {
    color: #ff6b00;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(255, 107, 0, 0.2);
}

.service-card h3 {
    color: #ff6b00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== GALLERY SECTION ========== */
.gallery {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.gallery h2 span {
    color: #ff6b00;
}

.gallery p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    min-height: 250px;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    min-height: 250px;
}

/* Login form additions (no color/font changes) */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.login-form label {
    font-weight: 600;
}

.login-form input {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.login-form input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

/* ========== LOGIN + MEDIA/PRESS ADDITIONS ========== */
.login-card {
    max-width: 560px;
    margin: 0 auto;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.login-form label {
    font-weight: 600;
    color: inherit;
}

.login-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: inherit;
    background: #ffffff;
}

.login-form input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

/* Media/Press: if the home hero is reused, keep spacing clean */
.hero {
    margin-bottom: 0;
}

/* ========== CONTACT SECTION ========== */
.contact {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.contact h2 span {
    color: #ff6b00;
}

.contact p {
    color: #666;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #ff6b00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #e55a00;
}

/* ========== FOOTER ========== */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    margin: 0;
}

footer a {
    color: #ff6b00;
    text-decoration: none;
}

/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .about,
    .about-content,
    .main-content,
    .platforms-content,
    .contact,
    .services,
    .gallery {
        padding: 1.5rem;
        margin: 2rem auto;
    }
}