/* --- VARIABLES --- */
:root {
    --color-bg: #050505;
    --color-paper: #F0F0F0;
    --color-red: #FF3131;
    --color-yellow: #F5D04C;
    --font-head: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-thick: 4px solid var(--color-paper);
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--color-bg);
    color: var(--color-paper);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Grain Overlay */
.noir-grain {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
}

img { max-width: 100%; display: block; }
h1, h2, h3, h4, .btn-verdict, .caption-stamp { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; }

/* --- HEADER --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #333;
}

.logo-container { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: auto; }
.logo-text { font-family: var(--font-head); font-size: 1.5rem; color: var(--color-paper); }

nav a { color: var(--color-paper); text-decoration: none; margin-left: 20px; font-weight: 600; }
.nav-cta { color: var(--color-red); }

/* --- HERO --- */
.hero {
    position: relative;
    padding: 80px 20px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: grayscale(100%) contrast(120%) brightness(50%);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 0%, #050505 90%);
    z-index: 1;
}

.container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

.hero-intro { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.hero-intro h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; margin-bottom: 20px; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }
.evidence-tags { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; }
.tag { background: var(--color-paper); color: #000; padding: 4px 8px; font-weight: bold; transform: rotate(-2deg); }
.tag.yellow { background: var(--color-yellow); }

/* Panels */
.comic-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px; align-items: end; }
.panel {
    border: var(--border-thick);
    background: #000;
    position: relative;
    transition: transform 0.2s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.panel img { width: 100%; height: auto; display: block; filter: contrast(110%); }

.panel:hover { transform: scale(1.03) rotate(0deg) !important; border-color: var(--color-red); z-index: 10; }
.rotate-left { transform: rotate(-2deg); margin-bottom: 20px; }
.rotate-right { transform: rotate(2deg); margin-bottom: 20px; }

.caption-stamp {
    position: absolute;
    bottom: 0; left: 0;
    background: var(--color-paper);
    color: #000;
    padding: 5px 15px;
    font-size: 1.1rem;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.caption-stamp.red { background: var(--color-red); color: white; }

/* --- RIBBON --- */
.ribbon-banner {
    background: var(--color-paper);
    color: #050505;
    padding: 25px 0;
    transform: skewY(-2deg);
    text-align: center;
    border-top: 5px solid #050505;
    border-bottom: 5px solid #050505;
    margin: 60px 0;
}
.ribbon-banner h2 { font-size: clamp(2rem, 5vw, 4rem); transform: skewY(2deg); margin: 0; }

/* --- SECTIONS --- */
.section-padded { padding: 80px 20px; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; text-align: center; }

/* Text Highlight Section */
.text-highlight {
    background: var(--color-paper);
    color: var(--color-bg);
    border-bottom: 10px solid var(--color-bg);
}

.h3-small {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0.7;
}

.quote-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.body-text-narrow {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Comic Strip */
.comic-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; }
.strip-panel { aspect-ratio: 1/1; overflow: hidden; border: var(--border-thick); position: relative;}
.strip-panel img { width: 100%; height: 100%; object-fit: cover; }
.panel-desc {
    position: absolute; bottom: 45px; left: 10px; right: 10px;
    color: var(--color-paper); text-shadow: 2px 2px 0 #000;
    font-weight: 600; font-size: 0.9rem; pointer-events: none;
}

/* Roles */
.dark-grey-bg { background: #111; }
.roles-collage { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.role-card {
    background: var(--color-paper); color: #000;
    width: 260px; padding: 12px;
    transform: rotate(1deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    position: relative;
}
.role-inner { border: 2px solid #000; padding: 15px; height: 100%; text-align: center; }
.role-img-crop {
    width: 100%; height: 200px;
    overflow: hidden; border-bottom: 2px solid #000;
    margin-bottom: 15px;
}
.role-img-crop img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.role-stamp {
    position: absolute; top: -10px; right: -10px;
    background: #000; color: #fff; padding: 5px 10px;
    font-family: var(--font-head); transform: rotate(10deg);
}
.role-stamp.red { background: var(--color-red); }

/* --- FINAL CTA SECTION --- */
.final-cta {
    position: relative;
    padding: 100px 20px;
    background-size: cover; background-position: center;
}
.cta-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5,5,5,0.85);
}
.relative-z { position: relative; z-index: 5; }
.huge-headline { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 10px; }

/* --- NOIR FORM STYLES (THE FIX) --- */
.noir-form {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
    text-align: left; /* Forces labels to left align */
}

.form-group {
    margin-bottom: 25px;
}

.noir-form label {
    display: block; /* Forces label onto its own line */
    font-family: var(--font-head);
    color: var(--color-paper);
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.noir-form input, 
.noir-form textarea {
    width: 100%; /* Forces input to fill width */
    display: block;
    background: #000; /* Turns input black */
    color: #fff;
    border: 3px solid var(--color-paper);
    padding: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    border-radius: 0;
    transition: 0.2s;
}

.noir-form input::placeholder,
.noir-form textarea::placeholder {
    color: #666;
    text-transform: uppercase;
}

.noir-form input:focus, 
.noir-form textarea:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 15px rgba(255, 49, 49, 0.3);
}

.noir-form .btn-verdict {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Button (General) */
.btn-verdict {
    display: inline-block;
    background: var(--color-red); color: #fff;
    border: none; padding: 15px 40px; font-size: 1.5rem;
    text-decoration: none; cursor: pointer;
    box-shadow: 6px 6px 0px var(--color-paper);
    transition: all 0.1s ease-out; margin-top: 20px;
}
.btn-verdict:hover { transform: translate(-1px, -1px); box-shadow: 7px 7px 0px var(--color-paper); }
.btn-verdict:active { transform: translate(6px, 6px); box-shadow: 0px 0px 0px var(--color-paper); }

/* Footer */
footer { text-align: center; padding: 40px; color: #666; font-size: 0.9rem; }
.socials a { color: #888; margin: 0 10px; }

/* Animation Utils */
.reveal { opacity: 0; transform: translateY(20px); transition: 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.rotate-left.visible { transform: rotate(-2deg); }
.reveal.rotate-right.visible { transform: rotate(2deg); }

/* Responsive */
@media (max-width: 768px) {
    .comic-grid { grid-template-columns: 1fr; gap: 40px; }
    .rotate-left, .rotate-right { margin: 0; transform: rotate(0); }
}
/* --- SPECIAL EDITION STYLES --- */
:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-orange: #ff9d00;
}

/* The Editions Section Container */
.editions-section {
    background: #000;
    position: relative;
    border-top: 10px solid var(--color-paper);
    overflow: hidden;
}

/* Neon Glow Text */
.neon-text {
    color: #fff;
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-pink);
    font-family: var(--font-head);
    letter-spacing: 2px;
}

/* Two-Column Layout for Editions */
.edition-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.edition-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.edition-visuals {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* CARD FLIP / GLITCH EFFECT */
.glitch-card-container {
    width: 260px;
    height: 360px; /* Adjust based on your image aspect ratio */
    position: relative;
    cursor: pointer;
}

.glitch-card {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    transition: opacity 0.3s ease;
    border: 4px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.card-standard {
    z-index: 2;
    opacity: 1;
}

.card-special {
    z-index: 1;
    opacity: 0;
}

/* On Hover: Hide Standard, Show Special */
.glitch-card-container:hover .card-standard {
    opacity: 0;
}
.glitch-card-container:hover .card-special {
    opacity: 1;
    box-shadow: 0 0 30px var(--neon-pink);
    border-color: var(--neon-blue);
}

/* Exclusive Roles Badges */
.exclusive-badge {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: absolute;
    top: -15px;
    right: -10px;
    transform: rotate(5deg);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}
.feature-list li strong { color: var(--color-paper); }
/* --- SOCIAL ICONS --- */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.2s, filter 0.2s;
    /* Optional: This makes them look a bit brighter/contrastier on the dark bg */
    filter: brightness(0.9);
}

.social-icon:hover {
    transform: scale(1.2) rotate(-5deg);
    /* This filter hack turns the icon RED on hover */
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

/* --- EVIDENCE PAGE GALLERY --- */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the cards in the middle */
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    /* FIXED WIDTH: This prevents them from becoming enormous */
    width: 180px; 
    border: 2px solid var(--color-paper);
    background: #111;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, z-index 0.3s;
    /* Keeps the poker card shape */
    aspect-ratio: 2.5/3.5; 
    flex-shrink: 0; /* Prevents squishing on small screens */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.evidence-label {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.9);
    color: #fff;
    text-align: center;
    padding: 4px;
    font-size: 0.75rem; /* Slightly smaller text for cleaner look */
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s;
    font-family: var(--font-head);
    letter-spacing: 1px;
}

/* Hover Effects */
.gallery-item:hover {
    transform: scale(1.15) rotate(1deg); /* Slight pop up */
    z-index: 100;
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}
.gallery-item:hover .evidence-label {
    transform: translateY(0);
}

/* Special Edition Specifics */
.gallery-item.special {
    border-color: #333;
}

.gallery-item.special:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-pink);
}

/* Badge Tweaks for smaller cards */
.gallery-item .exclusive-badge {
    font-size: 0.6rem;
    padding: 3px 6px;
}
/* --- IMAGE PROTECTION --- */
img {
    /* Prevents dragging the image to the desktop */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    
    /* Prevents highlighting the image like text */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    /* Optional: Disables pointer events on decorative overlays so they can't be saved */
    pointer-events: auto; 
}