/* ========== RESET - Brutalist Raw ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF;
    overflow-x: hidden;
    cursor: default;
}

/* ========== SPLASH SCREEN - Glitch Effect ========== */
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.splash-content {
    text-align: center;
    position: relative;
}

.splash-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #FFFFFF;
    text-transform: uppercase;
    position: relative;
    animation: glitchText 3s infinite;
}

@keyframes glitchText {

    0%,
    100% {
        text-shadow: none;
    }

    92%,
    95% {
        text-shadow: -3px 0 #FF0040, 3px 0 #FFFF00;
    }
}

.splash-logo::before {
    content: "TRUTH UNVEILED";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitchSplit 2s infinite;
}

@keyframes glitchSplit {

    0%,
    100% {
        transform: translate(0);
        opacity: 0;
    }

    95%,
    97% {
        transform: translate(-4px);
        opacity: 1;
    }
}

.splash-sub {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.7rem;
    color: #FF0040;
    letter-spacing: 4px;
    margin-top: 20px;
    border-top: 1px solid #FF0040;
    display: inline-block;
    padding-top: 10px;
}

.splash-loader {
    width: 200px;
    height: 2px;
    background: #222;
    margin: 40px auto 15px;
}

.loader-line {
    width: 0%;
    height: 100%;
    background: #FF0040;
    transition: width 0.05s linear;
}

/* ========== HEADER - Brutalist Asymmetry ========== */
header {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding: 15px 25px;
    border-left: 4px solid #FF0040;
    transform: rotate(-2deg);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.logo span {
    color: #FF0040;
}

nav {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: flex-end;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    padding: 8px 0;
    letter-spacing: 1px;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
}

nav a:hover,
nav a.active {
    color: #FF0040;
    border-bottom-color: #FF0040;
    padding-right: 10px;
}

.menu-toggle {
    display: none;
}

/* ========== HERO - The Sculpture ========== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 0, 64, 0.05) 0px, rgba(255, 0, 64, 0.05) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255, 0, 64, 0.05) 0px, rgba(255, 0, 64, 0.05) 1px, transparent 1px, transparent 40px);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.hero-left {
    width: 45%;
    padding: 150px 50px 80px 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.65rem;
    color: #FF0040;
    letter-spacing: 3px;
    border: 1px solid #FF0040;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 30px;
    background: rgba(255, 0, 64, 0.05);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title .censor {
    color: #FF0040;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}

.hero-desc {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #AAAAAA;
    max-width: 450px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #FF0040;
    color: #FF0040;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: #FF0040;
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.4);
}

.cta-btn::after {
    content: "→";
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.truth-meter {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.7rem;
}

.meter-bar {
    width: 150px;
    height: 3px;
    background: #222;
    margin-top: 8px;
}

.meter-fill {
    width: 94%;
    height: 100%;
    background: #FF0040;
}

.hero-right {
    width: 55%;
    position: relative;
    background: #050505;
    overflow: hidden;
}

.statue-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statue-image {
    width: 100%;
    max-width: 500px;
    filter: grayscale(100%) contrast(120%) brightness(0.7);
    position: relative;
    z-index: 1;
}

.censor-bar {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    background: #FF0040;
    padding: 12px 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: white;
    z-index: 10;
    white-space: nowrap;
    animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px #FF0040;
    }

    50% {
        opacity: 0.9;
        box-shadow: 0 0 30px #FF0040;
    }
}

.xray-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><path d="M200,100 L220,150 L280,150 L240,190 L260,250 L200,220 L140,250 L160,190 L120,150 L180,150 Z" fill="none" stroke="%23FFD700" stroke-width="1.5" opacity="0.15"/><circle cx="200" cy="300" r="40" fill="none" stroke="%23FFD700" stroke-width="1" opacity="0.1"/></svg>') center/contain no-repeat;
    pointer-events: none;
    mix-blend-mode: screen;
}

.glitch-elements {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.glitch-bit {
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 64, 0.3);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation: glitchRotate 3s infinite;
}

@keyframes glitchRotate {

    0%,
    100% {
        transform: rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: rotate(45deg);
        opacity: 0.8;
    }
}

/* ========== EVIDENCE TAGS ========== */
.evidence-section {
    padding: 100px 60px;
    background: #0A0A0A;
    border-top: 1px solid #FF0040;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.evidence-card {
    background: #000000;
    border: 1px solid #222;
    padding: 30px;
    position: relative;
    transition: 0.3s;
}

.evidence-card:hover {
    border-color: #FF0040;
    transform: translateX(5px);
}

.evidence-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #FF0040;
    color: black;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.6rem;
    padding: 3px 10px;
    font-weight: 700;
}

.evidence-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.evidence-card p {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.debunked-stamp {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    color: #FF0040;
    border: 1px solid #FF0040;
    padding: 2px 8px;
    transform: rotate(-5deg);
    font-weight: 800;
}

/* ========== MANIFESTO PAGE ========== */
.manifesto {
    padding: 150px 60px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 40px;
    border-left: 4px solid #FF0040;
    padding-left: 25px;
}

.manifesto p {
    font-family: 'Source Code Pro', monospace;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #CCC;
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    padding: 150px 60px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.whistleblower-box {
    background: #0A0A0A;
    border: 1px solid #FF0040;
    padding: 40px;
}

.whistleblower-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FF0040;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: #111;
    border: 1px solid #333;
    color: white;
    font-family: 'Source Code Pro', monospace;
}

.submit-btn {
    background: transparent;
    border: 2px solid #FF0040;
    color: #FF0040;
    padding: 12px 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #FF0040;
    color: black;
}

/* ========== FOOTER ========== */
footer {
    padding: 40px 60px;
    border-top: 1px solid #222;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.7rem;
    color: #555;
    text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 120px 30px 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .contact-page {
        grid-template-columns: 1fr;
        padding: 120px 30px 60px;
    }

    header {
        bottom: auto;
        top: 20px;
        left: 20px;
    }

    nav {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .manifesto {
        padding: 120px 25px 60px;
    }

    .manifesto h1 {
        font-size: 2.5rem;
    }
}

/* Additional styles for article detail */
.hero-badge {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.65rem;
    color: #FF0040;
    letter-spacing: 3px;
    border: 1px solid #FF0040;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,0,64,0.05);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.evidence-card {
    background: #000000;
    border: 1px solid #222;
    padding: 25px;
    position: relative;
    transition: 0.3s;
}

.evidence-card:hover {
    border-color: #FF0040;
    transform: translateX(5px);
}

.evidence-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #FF0040;
    color: black;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.6rem;
    padding: 3px 10px;
    font-weight: 700;
}

.debunked-stamp {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.6rem;
    color: #FF0040;
    border: 1px solid #FF0040;
    padding: 2px 8px;
    transform: rotate(-5deg);
    font-weight: 800;
    background: #000;
}

.truth-meter-small {
    margin: 15px 0;
}

.meter-bar {
    height: 2px;
    background: #222;
}

.meter-fill {
    height: 100%;
    background: #FF0040;
}

@media (max-width: 768px) {
    .evidence-grid {
        grid-template-columns: 1fr;
    }
}