/* --- 1. CORE VARIABLES --- */
:root {
    --bg-color: #0f0f0f;
    --surface-color: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-color: #39ff14;
    /* Neon Green */
    --accent-hover: #2cc90e;
    --brand-red: #a81c07;
    --deep-red: #330d05;
    --panel-bg: #1a1a1a;
    --text-main: #eeeeee;
    --text-muted: #aaaaaa;
    --border-color: #333333;
    --font-main: "Montserrat", sans-serif;

    /* ACMQ Specific Variables */
    --acmq-pink: #ff007f;
    --acmq-purple: #9d00ff;
    --acmq-font-type: "Special Elite", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* --- 2. UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
ul {
    list-style: none;
}

/* --- 3. BUTTONS --- */
.btn-main {
    background-color: var(--accent-color);
    color: #000;
    padding: 12px 30px;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}
.btn-main:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--text-primary);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 10px;
}
.btn-outline:hover {
    background-color: var(--text-primary);
    color: #000;
}

/* --- 4. NAVIGATION & LOGO --- */
.logo-img {
    height: 120px;
    width: auto;
    transition: all 0.4s ease-in-out;
}
nav.scrolled .logo-img {
    height: 60px;
}

nav {
    background-color: rgba(15, 15, 15, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    transition: all 0.4s ease-in-out;
}
nav.scrolled {
    padding: 10px 0;
    background-color: rgba(15, 15, 15, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-links li {
    display: inline-block;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.nav-links .btn-small {
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--accent-color);
    margin-left: 20px;
}
/* --- 4b. DROPDOWN MENU --- */
.dropdown {
    position: relative;
}
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(15, 15, 15, 0.98);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    border: 1px solid #333;
    border-top: 2px solid var(--accent-color);
    flex-direction: column;
    gap: 0 !important;
    z-index: 1001;
}
.nav-links .dropdown:hover .dropdown-menu {
    display: flex;
}
.dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
}
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #222;
    transition: all 0.2s ease;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.dropdown-menu a:hover {
    background-color: #222;
    color: var(--accent-color);
    padding-left: 25px;
    /* subtle shift right */
}

/* --- 5. GENERIC HEADER (For Sub-pages) --- */
header {
    padding: 60px 0 60px;
    text-align: center;
    background: #111;
    width: 100%;
}
header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}
header .btn-outline,
header .btn-main {
    margin: 0 10px;
}

/* --- 6. HOMEPAGE SECTIONS --- */
/* Legal Text */
.legal-text p {
    margin-bottom: 20px;
}
.legal-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}
.legal-text h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.legal-text a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.8)),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.highlight {
    color: var(--accent-color);
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
#services {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 10;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}
.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 20px auto;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
/* --- SERVICES GLOW-UP --- */
.card {
    background-color: rgba(26, 26, 26, 0.6); /* Semi-transparent tech look */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333; /* Subtle frame */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy high-end feel */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(
        5px
    ); /* Subtle glass effect if we add bg texture later */
}
/* The Neon Hover State */
.card:hover {
    transform: translateY(-10px) scale(1.02); /* Lifts up and grows slightly */
    border-color: var(--accent-color); /* Border turns Neon Green */
    box-shadow:
        0 10px 30px rgba(57, 255, 20, 0.15),
        /* Soft green ambient glow */ 0 0 0 1px var(--accent-color) inset; /* Inner glow ring */
}
/* The Icon Pop */
.card .icon {
    font-size: 2.5rem;
    color: var(--text-secondary); /* Starts grey/dim */
    margin-bottom: 20px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.card:hover .icon {
    color: var(--accent-color); /* Lights up Green on hover */
    transform: scale(1.2); /* Pops larger */
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6); /* Glowing icon */
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-family: "Jura", sans-serif; /* Using your Sci-Fi font for headers */
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-secondary);
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: var(--surface-color);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-text h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.mission-statement {
    font-weight: 500;
    color: #fff;
}

/* --- DIRECTORS GLOW-UP --- */
.directors-grid {
    display: grid;
    gap: 30px; /* More breathing room */
}

.director-card {
    background-color: #111;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;

    /* The "Tech Corner" accent */
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 40%
    );
}

.director-card h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-family: "Jura", sans-serif;
    color: #fff;
}

.director-card .role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.director-card p {
    margin-top: 15px;
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* NJ'S CARD (Green/Red Logic) */
.nj-card {
    border-left: 4px solid var(--accent-color); /* Green Bar */
}

.nj-card .role {
    color: var(--accent-color);
}

.nj-card:hover {
    box-shadow: -5px 0 20px rgba(57, 255, 20, 0.1); /* Subtle green side-glow */
    border-color: var(--accent-color); /* Full border lights up */
}

/* RICHARD'S CARD (White/Blue Logic) */
.richard-card {
    border-left: 4px solid #fff; /* White Bar */
}

.richard-card .role {
    color: #fff;
}

.richard-card:hover {
    box-shadow: -5px 0 20px rgba(255, 255, 255, 0.1); /* Subtle white side-glow */
    border-color: #fff;
}

/* Pricing */
#pricing {
    padding: 80px 0;
    background-color: #0a0a0a;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.price-card {
    text-align: center;
    position: relative;
}
.price-card h4 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}
.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.price-card ul {
    text-align: left;
    margin-bottom: 20px;
}
.price-card li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}
.price-card li i {
    color: var(--accent-color);
    margin-right: 10px;
}
.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: #000;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
}
.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #555;
    font-size: 0.9rem;
    font-style: italic;
}

/* --- PROCESS SECTION (How We Work) --- */
.process-section {
    padding: 80px 0;
    background-color: #141414; /* Slightly lighter than main bg to separate it */
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    margin-top: 40px;
}

/* The Connecting Line (Desktop Only) */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px; /* Aligns with the circle icons */
    left: 50px;
    right: 50px;
    height: 2px;
    background: #333;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #0f0f0f;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.process-step:hover .step-icon {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    transform: scale(1.1);
}

.process-step h4 {
    color: #fff;
    margin-bottom: 10px;
    font-family: "Jura", sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- CINEMATIC STACK PORTFOLIO (Fixed Layout) --- */
.split-container {
    display: flex;
    flex-direction: column; /* This forces Top/Bottom stacking */
    width: 100%;
    height: 100vh; /* Fills the screen */
    background-color: #000;
}

.split-panel {
    position: relative;
    width: 100%;
    height: 50vh; /* Each panel takes exactly half the screen height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    border-bottom: 1px solid #333;
    transition: height 0.5s ease; /* Smooth growing effect */
}

/* TOP PANEL (MARS) */
.split-mars {
    background-image: url("../images/mars-bg.jpg");
    background-attachment: fixed; /* Parallax ON */

    /* CRITICAL: Anchors image to bottom so astronauts are never cut off */
    background-position: center bottom;

    background-size: cover;
    background-repeat: no-repeat;
}

/* BOTTOM PANEL (CRIME) */
.split-crime {
    background-image: url("../images/crime-bg.jpg");
    background-attachment: fixed; /* Parallax ON */

    /* CRITICAL: Centers the handcuffs */
    background-position: center center;

    background-size: cover;
    background-repeat: no-repeat;
}

/* The Dark Tint */
.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s ease;
    z-index: 1;
}

/* Brighter on hover */
.split-panel:hover .split-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Content Styling */
.split-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 700px;
}

.split-logo-img {
    width: 220px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.9));
    transition: transform 0.3s ease;
}

.split-panel:hover .split-logo-img {
    transform: scale(1.05);
}

.split-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    font-weight: 500;
}

.split-btn {
    padding: 14px 40px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.3);
}

.split-mars .split-btn:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.split-crime .split-btn:hover {
    background-color: var(--acmq-pink);
    border-color: var(--acmq-pink);
}

/* HOVER EXPANSION (Desktop Only) */
@media (min-width: 769px) {
    /* When you hover a panel, it grows to 60% height */
    .split-panel:hover {
        height: 60vh;
    }
}

/* --- 7. WORLD WAR: MARS (WWM) PAGE --- */
.wwm-page {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-main);
}
.narrow-container {
    max-width: 800px;
}
.wwm-hero {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.hero-title {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px;
}
.hero-tagline {
    font-size: 1.2rem;
    color: var(--brand-red);
    font-weight: 700;
    margin: 0;
}

/* --- WORLD WAR: MARS PARALLAX HERO --- */
.wwm-hero-parallax {
    /* The Background Image with HEAVY Dark Overlay (0.7 opacity) */
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/mars-bg.jpg");
    background-attachment: fixed;
    background-position: center bottom;
    background-size: cover;

    /* Dimensions */
    height: 85vh;
    width: 100%;

    /* Layout: Stack Logo above Text vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px; /* Space between logo and slogan */
}

/* The Centered Logo */
.wwm-logo-overlay {
    /* Removed absolute positioning to let it stack naturally */
    width: 500px; /* Much larger */
    max-width: 90%; /* Responsive safety net */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.9));
    z-index: 10;
}

/* The Slogan - Thinner & Cleaner */
.wwm-slogan {
    font-family: "Jura", sans-serif; /* New Sci-Fi Font */
    font-weight: 300; /* Light/Thin weight */
    font-size: 1.3rem; /* Smaller, less overpowering */
    color: #e0e0e0; /* Slightly off-white looks more premium */
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px; /* Wide spacing for that cinematic feel */
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    line-height: 1.6;
}
/* --- WWM MISSION DATA (The Terminal) --- */
.wwm-mission-section {
    padding: 80px 20px;
    background-color: #0b0b0b; /* Deep background to blend with Mars parallax */
    display: flex;
    justify-content: center;
}

.wwm-terminal-card {
    background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent data bg */
    border: 1px solid #333;
    padding: 60px;
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);

    /* The Sci-Fi "Corner" Accents */
    background-image:
        linear-gradient(var(--brand-red), var(--brand-red)),
        /* Top Left Vertical */
        linear-gradient(var(--brand-red), var(--brand-red)),
        /* Top Left Horizontal */
        linear-gradient(var(--brand-red), var(--brand-red)),
        /* Bottom Right Vertical */
        linear-gradient(var(--brand-red), var(--brand-red)); /* Bottom Right Horizontal */

    background-repeat: no-repeat;
    background-size:
        2px 20px,
        20px 2px; /* Thickness and Length of corners */
    background-position:
        top left,
        top left,
        bottom right,
        bottom right;
}

.wwm-header-text {
    font-family: "Jura", sans-serif;
    color: var(--brand-red);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.wwm-body-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Status Bar at the bottom (Where we credit you) */
.wwm-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-family: "Jura", sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wwm-status-highlight {
    color: #fff;
    font-weight: 700;
}
.wwm-details {
    padding: 60px 0;
}
.section-heading {
    border-left: 4px solid var(--brand-red);
    padding-left: 15px;
    margin-bottom: 25px;
    font-size: 1.8rem;
}
.wwm-synopsis p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ddd;
}
.wwm-credits {
    background-color: var(--panel-bg);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border: 1px solid var(--border-color);
}
.wwm-credits h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.credits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.credits-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.credit-role {
    font-weight: 700;
    color: var(--text-muted);
}
.credit-name {
    text-align: right;
}
.wwm-actions {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.action-text {
    margin-bottom: 25px;
    font-style: italic;
    color: var(--text-muted);
}
.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn-primary {
    background-color: var(--brand-red);
    color: #fff;
    border: 1px solid var(--brand-red);
}
.btn-primary:hover {
    background-color: #a33;
    border-color: #a33;
}
/* --- WWM Actions & Socials --- */
.wwm-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.wwm-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px; /* Space before status bar */
    border-top: 1px solid #333; /* Divider line */
    padding-top: 20px;
}

.wwm-social-link {
    color: #666;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.wwm-social-link:hover {
    color: var(--brand-red); /* Glows red on hover */
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(168, 28, 7, 0.6);
}

/* Button overrides for WWM specifically */
.wwm-btn-primary {
    background-color: var(--brand-red);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Jura", sans-serif;
    letter-spacing: 1px;
    border: 1px solid var(--brand-red);
}

.wwm-btn-primary:hover {
    background-color: transparent;
    color: var(--brand-red);
}

.wwm-btn-outline {
    background-color: transparent;
    color: #ccc;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Jura", sans-serif;
    letter-spacing: 1px;
    border: 1px solid #666;
}

.wwm-btn-outline:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

/* Utility to hide the official site button until launch */
.hidden-launch {
    display: none;
}
/* --- 8. ACMQ PAGE STYLES --- */
/* 1. The Parallax Hero (Top) */
.acmq-hero-parallax {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../images/crime-bg.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;

    height: 85vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid #333;
    position: relative;
}

/* The Hero Logo */
.acmq-logo-hero {
    width: 500px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.9));
    z-index: 10;
}

/* The Slogan */
.acmq-hero-slogan {
    font-family: var(--acmq-font-type); /* Using the variable */
    font-size: 1.5rem;
    color: #e0e0e0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

/* 2. The Case File (Content Section) */
.acmq-mission-section {
    padding: 80px 20px;
    background-color: #111;
    display: flex;
    justify-content: center;
}

.acmq-file-card {
    background-color: var(--surface-color); /* Using the variable */
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.1);
    border-top: 2px solid var(--acmq-pink); /* Using the variable */

    padding: 60px;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.acmq-header-text {
    font-family: var(--acmq-font-type); /* Using the variable */
    color: var(--acmq-pink); /* Using the variable */
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.acmq-body-text {
    color: var(--text-secondary); /* Using the variable */
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: var(--font-main); /* Using the variable */
}

/* 3. The Button */
.acmq-btn-youtube {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(
        45deg,
        var(--acmq-purple),
        var(--acmq-pink)
    ); /* Using variables */
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.acmq-btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.4);
    filter: brightness(1.2);
}

.yt-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: white;
}

/* --- CONTACT SECTION (The Command Console) --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    border-top: 1px solid #333;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* The Neon Top Border */
.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--acmq-purple), var(--accent-color));
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: "Jura", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Inputs */
.form-input {
    width: 100%;
    padding: 15px;
    background-color: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color); /* Neon Green Focus */
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.1);
}

/* Textarea specific resize */
textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button Override */
.btn-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    background-color: var(--accent-color);
    font-family: "Jura", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    color: #000;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

/* --- 9. FOOTER & COOKIES --- */
footer {
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}
.footer-col p,
.footer-col a {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: block;
}
.footer-col a:hover {
    color: var(--accent-color);
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.8rem;
}

#cookie-banner {
    /* Note: 'display: none' is the default state usually toggled by JS. */
    /* To test (make visible), comment out 'display: none' */
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-content {
    flex: 1 1 600px;
}
.cookie-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}
.btn-accept {
    background-color: #ffffff;
    color: #000000;
}
.btn-decline {
    background-color: transparent;
    border: 1px solid #666;
    color: #ccc;
}
.btn-accept:hover,
.btn-decline:hover {
    opacity: 0.8;
}

/* --- 10. MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Home & General */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .logo img {
        height: 40px;
    }

    /* Cookie Banner Mobile */
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    /* Order process */
    .process-grid {
        flex-direction: column;
        gap: 40px;
    }
    .process-grid::before {
        display: none; /* Hide horizontal line */
    }
    /* Add a vertical line for mobile flow */
    .process-grid {
        position: relative;
    }
    .process-grid::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: #333;
        z-index: 0;
        transform: translateX(-50%);

    /* Features Split */
    .split-panel {
        height: 50vh;
    }
    .split-mars,
    .split-crime {
        /* Turn off Parallax on mobile to prevent jitter */
        background-attachment: scroll;
        background-position: center center;
    }

    /* WWM Mobile */
    .hero-title {
        font-size: 2rem;
    }
    .credits-list li {
        flex-direction: column;
        text-align: left;
    }
    .credit-name {
        text-align: left;
        margin-top: 4px;
    }
    .wwm-hero-parallax {
        background-attachment: scroll;
        height: 60vh;
        gap: 20px;
    }
    .wwm-logo-overlay {
        width: 250px; /* Smaller on phone */
    }
    .wwm-slogan {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .wwm-terminal-card {
        padding: 30px;
    }
    .wwm-status-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* ACMQ Mobile */
    .acmq-hero-parallax {
        background-attachment: scroll;
        height: 60vh;
    }
    .acmq-logo-hero {
        width: 250px;
    }
    .acmq-hero-slogan {
        font-size: 1rem;
    }
    .acmq-file-card {
        padding: 30px;
    }
}
