* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: crosshair;
}

:root {
    --paper: #ffffff;
    --ink: #2a2a2a;
    --stamp-red: #8b0000;
    --matrix-green: #00ff00;
    --matrix-bg: #0d0208;
    --glass-bg: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(0, 255, 0, 0.2);
}

body {
    font-family: 'Courier Prime', monospace;
    background: var(--paper);
    color: var(--ink);
}

body.awakened {
    background: #000 !important;
    font-family: 'Inter', sans-serif;
}

body.awakened * { cursor: default; }

.simulation-layer { 
    transition: opacity 0.3s;
    background: var(--paper);
}

.simulation-layer.hidden { 
    opacity: 0; 
    pointer-events: none; 
}

.simulation-layer.glitching {
    animation: instantBlack 0.1s forwards;
}

@keyframes instantBlack {
    0% { 
        opacity: 1;
        background: var(--paper);
    }
    1% {
        background: #000 !important;
    }
    50% { 
        opacity: 0.3; 
        filter: hue-rotate(180deg) brightness(0.3);
    }
    100% { 
        opacity: 0;
        background: #000 !important;
    }
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
}

.glitch-overlay.active { animation: glitch 0.3s; }

@keyframes glitch {
    10% { opacity: 0.8; transform: translate(-5px, 5px); }
    20% { opacity: 0.6; transform: translate(5px, -5px); }
}

.document {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--paper);
    box-shadow: 0 0 40px rgba(0,0,0,0.3);
    min-height: 100vh;
    position: relative;
}

.classified-stamp {
    position: absolute;
    top: 20px;
    right: 40px;
    transform: rotate(12deg);
    border: 8px double var(--stamp-red);
    padding: 15px 30px;
    font-family: 'Special Elite', cursive;
    font-size: 48px;
    color: var(--stamp-red);
    opacity: 0.4;
}

h1 {
    font-family: 'Special Elite', cursive;
    font-size: 42px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.api-data {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-left: 3px solid #000;
    font-size: 12px;
    font-weight: bold;
}

.api-data span { color: #000; font-weight: bold; }

.chan-post {
    background: #d6daf0;
    border-left: 3px solid var(--stamp-red);
    padding: 25px;
    margin: 40px 0;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    position: relative;
}

.chan-post::before {
    content: 'INTERCEPTED TRANSMISSION';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--stamp-red);
    color: white;
    padding: 4px 12px;
    font-size: 10px;
}

.cycle-data {
    background: rgba(0,0,0,0.05);
    padding: 15px;
    border-left: 3px solid #000;
    font-size: 14px;
}

.highlight-text {
    background: #ffff00;
    padding: 2px 4px;
    font-weight: bold;
}

.redacted {
    background: #000;
    color: transparent;
}

.scratched {
    position: relative;
}

.scratched::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    height: 3px;
    background: var(--ink);
}

.handwritten {
    font-style: italic;
    color: #0000ff;
    transform: rotate(-2deg);
    padding: 10px;
    border-left: 3px solid #0000ff;
}

.section {
    margin-bottom: 50px;
    animation: fadeIn 0.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.breach-spot {
    position: fixed;
    bottom: 60px;
    right: 60px;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    animation: subtlePulse 3s ease-in-out infinite;
}

.breach-spot:hover {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

@keyframes subtlePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.breach-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
}

.breach-layer.visible { opacity: 1; pointer-events: all; }

.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.msdos-terminal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    background: #000;
    border: 3px solid var(--matrix-green);
    padding: 30px;
    color: var(--matrix-green);
    animation: terminalAppear 0.5s forwards;
}

@keyframes terminalAppear {
    from { opacity: 0; }
    to { opacity: 1; }
}

.terminal-line {
    margin-bottom: 8px;
    animation: lineAppear 0.1s forwards;
}

@keyframes lineAppear {
    from { opacity: 0; }
    to { opacity: 1; }
}

.choice-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.choice-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--matrix-green);
    color: var(--matrix-green);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Courier Prime', monospace;
    font-size: 14px;
}

.choice-btn:hover {
    background: var(--matrix-green);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.loading-screen.active { display: flex; }

.loading-text {
    font-size: 24px;
    color: var(--matrix-green);
    letter-spacing: 4px;
    font-family: 'Courier Prime', monospace;
}

.loading-bar {
    width: 400px;
    height: 30px;
    border: 2px solid var(--matrix-green);
    background: rgba(0, 255, 0, 0.1);
}

.loading-progress {
    height: 100%;
    background: var(--matrix-green);
    width: 0%;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

/* AWAKENED LAYER - GLASSMORPHISM CULT VIBES */
.awakened-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    background: #000;
    z-index: 997;
    opacity: 0;
    pointer-events: none;
}

.awakened-layer.visible { 
    opacity: 1; 
    pointer-events: all; 
}

/* FLOATING BACKGROUND IMAGES - ACTUALLY STYLED */
.float-img {
    position: fixed;
    z-index: -2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-in;
}

body.awakened .float-img {
    opacity: 1;
}

.float-img img {
    width: 100%;
    height: auto;
    filter: blur(2px) brightness(0.2);
    border: 1px solid rgba(0, 255, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.08);
}

/* STRATEGIC POSITIONING */
.img-1 {
    top: 15%;
    right: 5%;
    width: 280px;
    transform: rotate(5deg);
    animation: float1 20s ease-in-out infinite;
}

.img-2 {
    top: 40%;
    left: 8%;
    width: 220px;
    transform: rotate(-8deg);
    animation: float2 25s ease-in-out infinite;
}

.img-3 {
    bottom: 20%;
    right: 12%;
    width: 300px;
    transform: rotate(3deg);
    animation: float3 18s ease-in-out infinite;
}

.img-4 {
    top: 60%;
    left: 15%;
    width: 200px;
    transform: rotate(-5deg);
    animation: float4 22s ease-in-out infinite;
}

.img-5 {
    top: 25%;
    left: 45%;
    width: 180px;
    transform: rotate(7deg);
    animation: float5 19s ease-in-out infinite;
    opacity: 0.6;
}

.img-6 {
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 350px;
    animation: float6 30s ease-in-out infinite;
    opacity: 0.4;
}

/* PARALLAX FLOAT ANIMATIONS */
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(8deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(25px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-20px) rotate(6deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(35px) rotate(-8deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0) rotate(7deg); }
    50% { transform: translateY(-40px) rotate(10deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-3deg); }
    50% { transform: translateX(-50%) translateY(-25px) rotate(2deg); }
}

.matrix-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

/* GLASSMORPHISM NAVIGATION */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 40px;
    z-index: 1000;
    box-shadow: 0 8px 32px 0 rgba(0, 255, 0, 0.1);
}

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

.nav-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--matrix-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(0, 255, 0, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a.archive-link {
    padding: 8px 18px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 50px;
}

.nav-links a.archive-link:hover {
    background: rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--matrix-green);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--matrix-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 100px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--matrix-green);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 16px;
    color: rgba(0, 255, 0, 0.6);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes glowPulse {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.5),
                     0 0 40px rgba(0, 255, 0, 0.3);
    }
    50% { 
        text-shadow: 0 0 30px rgba(0, 255, 0, 0.8),
                     0 0 60px rgba(0, 255, 0, 0.5),
                     0 0 90px rgba(0, 255, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(0, 255, 0, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--matrix-green);
    color: var(--matrix-green);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--matrix-green);
    transition: left 0.4s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
}

/* CHART SECTION */
.chart-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-awakened {
    font-size: 52px;
    font-weight: 700;
    color: var(--matrix-green);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.dexscreener-embed {
    width: 100%;
    height: 700px;
    border: 2px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 255, 0, 0.15);
}

/* THEORY SECTION - GLASSMORPHISM CARDS */
.theory-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle-awakened {
    text-align: center;
    font-size: 18px;
    color: rgba(0, 255, 0, 0.7);
    margin-bottom: 60px;
    font-weight: 300;
}

.theory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.theory-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 45px;
    border-radius: 16px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.theory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--matrix-green), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.theory-card:hover::before {
    opacity: 1;
}

.theory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.25);
    border-color: rgba(0, 255, 0, 0.5);
    background: rgba(10, 10, 10, 0.85);
}

.theory-icon {
    font-size: 52px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
}

.theory-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--matrix-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theory-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 255, 0, 0.85);
    font-weight: 300;
}

/* Archives Grid */
.archives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.archive-file {
    background: #fff;
    border: 2px solid var(--ink);
    padding: 20px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.archive-file:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 12px rgba(0,0,0,0.3);
}

.archive-file::before {
    content: '📄';
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.archive-title {
    font-family: 'Special Elite', cursive;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--ink);
}

.archive-date {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
}

.archive-classified {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--stamp-red);
    color: white;
    padding: 3px 8px;
    font-size: 9px;
    letter-spacing: 1px;
    transform: rotate(5deg);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.post-name {
    color: #789922;
    font-weight: bold;
}

.post-id {
    background: #ffffcc;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.post-date, .post-no {
    color: #666;
    font-size: 13px;
}

.post-no {
    color: #0000ee;
}

.post-title {
    font-size: 18px;
    color: #0f0c5d;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.post-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.post-text {
    flex: 1;
}

.post-footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    font-size: 12px;
    color: #666;
    font-family: Arial, sans-serif;
}

.doc-header {
    border-bottom: 3px solid var(--ink);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.doc-id {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.doc-date {
    font-size: 13px;
    opacity: 0.6;
}

.section-title {
    font-family: 'Special Elite', cursive;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 5px solid var(--ink);
    padding-left: 15px;
}

.content-block {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
    text-align: justify;
}

.doc-footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 3px solid var(--ink);
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    opacity: 0.6;
}

/* MARKET STATS */
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 25px;
    text-align: center;
}

.stat-label {
    font-size: 11px;
    color: rgba(0, 255, 0, 0.6);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 20px;
    color: var(--matrix-green);
    font-weight: 700;
    font-family: 'Space Mono', monospace;
}

/* JOIN THE CULT SECTION */
.cult-section {
    padding: 100px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.construction-notice {
    background: rgba(0, 0, 0, 0.6);
    border: 2px dashed rgba(0, 255, 0, 0.3);
    padding: 60px 40px;
}

.construction-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.construction-text {
    font-size: 28px;
    color: var(--matrix-green);
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

.construction-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* IMAGE STYLING */
.lore-image, .visual-break, .cult-visual, .theory-visual, .test-visual {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.8;
    transition: all 0.3s;
}

.lore-image:hover, .visual-break:hover, .cult-visual:hover, .theory-visual:hover, .test-visual:hover {
    opacity: 1;
    transform: scale(1.02);
}

.section-img, .break-img, .cult-img, .theory-img, .test-img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.visual-break {
    margin: 60px auto;
}

.cult-visual, .theory-visual, .test-visual {
    margin-bottom: 30px;
}

/* LORE SECTION */
.lore-section {
    max-width: 900px;
    margin: 0 auto 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.lore-title {
    font-size: 18px;
    color: var(--matrix-green);
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    padding-bottom: 15px;
}

.lore-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 300;
    text-align: justify;
}

/* CHAT SECTION */
.chat-container {
    max-width: 900px;
    margin: 0 auto 60px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 30px;
}

.chat-title {
    font-size: 16px;
    color: var(--matrix-green);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.chat-box {
    background: #000;
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 20px;
    height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
    font-family: 'Courier Prime', monospace;
}

.chat-message {
    color: rgba(0, 255, 0, 0.8);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.chat-user {
    color: var(--matrix-green);
    font-weight: 700;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.chat-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: var(--matrix-green);
    padding: 10px;
    font-family: 'Courier Prime', monospace;
    font-size: 13px;
}

.chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send {
    background: transparent;
    border: 1px solid rgba(0, 255, 0, 0.5);
    color: var(--matrix-green);
    padding: 10px 25px;
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-send:hover:not(:disabled) {
    background: rgba(0, 255, 0, 0.1);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-notice {
    font-size: 11px;
    color: rgba(0, 255, 0, 0.5);
    text-align: center;
    font-style: italic;
}

/* ARCHIVE PREVIEW GRID */
.archive-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.archive-preview-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 25px;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    backdrop-filter: blur(10px);
}

.archive-preview-card:hover {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.card-number {
    font-size: 11px;
    color: var(--matrix-green);
    font-weight: 700;
    letter-spacing: 2px;
}

.card-tag {
    font-size: 9px;
    color: rgba(0, 255, 0, 0.6);
    letter-spacing: 1px;
}

.card-title {
    font-size: 18px;
    color: var(--matrix-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

/* CONSCIOUSNESS VERIFICATION - REDESIGNED (NOT AI SLOP) */
.consciousness-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.consciousness-header {
    text-align: center;
    margin-bottom: 60px;
}

.consciousness-title {
    font-size: 42px;
    color: var(--matrix-green);
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.consciousness-subtitle {
    font-size: 14px;
    color: rgba(0, 255, 0, 0.6);
    letter-spacing: 2px;
    font-weight: 300;
}

.verification-container {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 60px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.1);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.intro-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 255, 0, 0.03);
    border: 1px solid rgba(0, 255, 0, 0.1);
    transition: all 0.3s;
}

.intro-card:hover {
    background: rgba(0, 255, 0, 0.05);
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.intro-card h3 {
    font-size: 18px;
    color: var(--matrix-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.intro-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.intro-warning {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.warning-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.intro-warning p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.verify-start-btn, .verify-retry-btn {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px solid var(--matrix-green);
    color: var(--matrix-green);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.verify-start-btn:hover, .verify-retry-btn:hover {
    background: var(--matrix-green);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    margin-bottom: 30px;
}

.question-label {
    font-size: 12px;
    color: rgba(0, 255, 0, 0.6);
    letter-spacing: 3px;
    font-weight: 600;
}

.question-counter {
    font-size: 14px;
    color: var(--matrix-green);
    font-weight: 600;
}

.question-content {
    font-size: 24px;
    color: var(--matrix-green);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

.answer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.answer-grid button {
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.answer-grid button:hover {
    background: rgba(0, 255, 0, 0.05);
    border-color: var(--matrix-green);
    transform: translateX(5px);
}

.results-status {
    text-align: center;
    font-size: 18px;
    color: var(--matrix-green);
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 700;
}

.results-meter {
    margin-bottom: 40px;
}

.meter-label {
    font-size: 12px;
    color: rgba(0, 255, 0, 0.6);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.meter-track {
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.meter-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--matrix-green), #00cc00);
    width: 0%;
    transition: width 2s ease-out;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

.meter-value {
    text-align: center;
    font-size: 48px;
    color: var(--matrix-green);
    font-weight: 700;
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.results-verdict {
    text-align: center;
    font-size: 22px;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.results-explanation {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* GLITCH DETECTION TEST - TERMINAL STYLE */
.glitch-test-section {
    padding: 100px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.terminal-test {
    background: #000;
    border: 2px solid rgba(0, 255, 0, 0.5);
    font-family: 'Courier Prime', monospace;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.terminal-header {
    background: rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 0, 0.5);
    padding: 12px 20px;
    font-size: 13px;
    color: var(--matrix-green);
    letter-spacing: 1px;
}

.terminal-output {
    padding: 30px;
    color: var(--matrix-green);
    font-size: 14px;
    line-height: 1.8;
}

.terminal-output p {
    margin-bottom: 8px;
}

.terminal-output .spacer {
    margin-bottom: 16px;
}

.terminal-output .warning-line {
    color: #ff0000;
}

.terminal-btn {
    background: transparent;
    border: 1px solid var(--matrix-green);
    color: var(--matrix-green);
    padding: 12px 30px;
    font-family: 'Courier Prime', monospace;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 30px 30px;
    display: inline-block;
}

.terminal-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.question-number {
    color: rgba(0, 255, 0, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
}

.question-prompt {
    font-size: 16px;
    color: var(--matrix-green);
    font-weight: 700;
}

.terminal-choices {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.answer-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: rgba(0, 255, 0, 0.9);
    padding: 15px 20px;
    font-family: 'Courier Prime', monospace;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.answer-btn::before {
    content: '> ';
    color: rgba(0, 255, 0, 0.5);
}

.answer-btn:hover {
    border-color: var(--matrix-green);
    background: rgba(0, 255, 0, 0.05);
    padding-left: 30px;
}

.result-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(0, 255, 0, 0.6);
    margin-bottom: 12px;
}

.probability-bar {
    position: relative;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    margin-bottom: 20px;
}

.probability-fill {
    height: 100%;
    background: var(--matrix-green);
    width: 0%;
    transition: width 2s ease-out;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.probability-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-shadow: none;
    z-index: 2;
    mix-blend-mode: difference;
}

.verdict-line {
    color: #ff0000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.explanation-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* GLITCH WALL */
.glitch-wall-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.submit-glitch-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.glitch-input {
    width: 100%;
    min-height: 120px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: var(--matrix-green);
    padding: 20px;
    font-family: 'Courier Prime', monospace;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 15px;
}

.glitch-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.char-count {
    font-size: 12px;
    color: rgba(0, 255, 0, 0.5);
}

.glitch-submit-btn {
    background: transparent;
    border: 2px solid var(--matrix-green);
    color: var(--matrix-green);
    padding: 12px 30px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.glitch-submit-btn:hover {
    background: var(--matrix-green);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.glitch-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.glitch-node {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 20px;
    font-size: 13px;
    color: rgba(0, 255, 0, 0.8);
    line-height: 1.6;
    font-family: 'Courier Prime', monospace;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.glitch-node::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.glitch-node:hover::before {
    opacity: 1;
}

.glitch-node:hover {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transform: scale(1.02);
}

/* REALITY CLOCK */
.reality-clock {
    position: fixed;
    top: 100px;
    right: 40px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 15px 20px;
    z-index: 999;
    font-family: 'Space Mono', monospace;
    display: none;
}

body.awakened .reality-clock {
    display: block;
}

.clock-label {
    font-size: 10px;
    color: rgba(0, 255, 0, 0.6);
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
}

.clock-display {
    font-size: 20px;
    color: var(--matrix-green);
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    font-variant-numeric: tabular-nums;
}

/* SOURCE CODE TOGGLE */
.source-code-toggle {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(0, 255, 0, 0.5);
    color: var(--matrix-green);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

body.awakened .source-code-toggle {
    display: flex;
}

.source-code-toggle:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: scale(1.1);
}

body.source-code-mode * {
    font-family: 'Courier Prime', monospace !important;
    color: var(--matrix-green) !important;
    background: #000 !important;
    border-color: var(--matrix-green) !important;
}

body.source-code-mode {
    animation: codeFlicker 0.1s infinite;
}

@keyframes codeFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* DATA FRAGMENTS */
.data-fragment {
    position: fixed;
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    color: rgba(0, 255, 0, 0.2);
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s;
    display: none;
}

body.awakened .data-fragment {
    display: block;
}

.data-fragment.revealed {
    color: var(--matrix-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    font-size: 16px;
}

.fragment-1 { top: 20%; left: 10%; }
.fragment-2 { top: 40%; right: 15%; }
.fragment-3 { bottom: 30%; left: 20%; }
.fragment-4 { bottom: 20%; right: 25%; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .lore-section, .chat-container { padding: 25px; }
    .archive-preview-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 20px; }
    .test-container { padding: 30px 20px; }
    .glitch-wall { grid-template-columns: 1fr; }
    .reality-clock { top: 80px; right: 20px; }
    .source-code-toggle { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}