/* vcmoney.money - serious research institution aesthetic */

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

:root {
    --forest-green: #2d5016;
    --dark-green: #1a3a1a;
    --charcoal: #1a1a1a;
    --off-white: #e8e8e8;
    --slate-gray: #4a5568;
    --muted-green: #4a6741;
    --accent-amber: #b8860b;
    --void: #0d0d0d;
    --paper-bg: #f5f5f0;
}

body {
    font-family: 'Courier New', 'Courier', monospace;
    background: var(--charcoal);
    color: var(--off-white);
    line-height: 1.6;
    font-size: 16px;
}

/* Money particles background - toned down */
.money-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.02;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

/* Ticker tape - muted institutional colors */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--forest-green);
    padding: 10px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--muted-green);
    border-bottom: 1px solid var(--muted-green);
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 20s linear infinite;
    color: var(--off-white);
    font-weight: normal;
    opacity: 0.9;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Anti-hero section */
.anti-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
    border-bottom: 2px solid var(--slate-gray);
}

.vcmoney-logo {
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 20px 0;
    text-transform: lowercase;
    color: var(--off-white);
}

.pulse {
    animation: subtle-pulse 3s ease-in-out infinite;
    color: var(--muted-green);
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.manifesto {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 30px;
    opacity: 0.85;
    color: var(--off-white);
}

.manifesto small {
    opacity: 0.6;
    font-style: italic;
}

/* Truth grid - research paper style */
.truth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.truth-box {
    padding: 30px;
    border: 1px solid;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.truth-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
}

.truth-box.red {
    border-color: #8b4545;
}

.truth-box.red::before {
    background: #8b4545;
}

.truth-box.blue {
    border-color: #4a5f7f;
}

.truth-box.blue::before {
    background: #4a5f7f;
}

.truth-box.purple {
    border-color: #6b5b7f;
}

.truth-box.purple::before {
    background: #6b5b7f;
}

.truth-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-width: 2px;
}

.truth-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: normal;
    color: var(--off-white);
}

.truth-box p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.85;
}

.pill-btn {
    background: none;
    border: 1px solid currentColor;
    color: inherit;
    padding: 10px 20px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 0.95rem;
}

.pill-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-width: 2px;
}

/* Equation section */
.equation-section {
    text-align: center;
    margin: 80px 0;
    padding: 40px 20px;
    border-top: 1px solid var(--slate-gray);
    border-bottom: 1px solid var(--slate-gray);
    background: rgba(255, 255, 255, 0.02);
}

.equation-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: normal;
    color: var(--off-white);
}

.equation {
    font-size: 1.6rem;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.equation .var {
    color: var(--muted-green);
    font-style: italic;
}

.equation .op {
    opacity: 0.5;
}

.equation .result {
    color: var(--accent-amber);
    font-weight: normal;
}

.equation-note {
    margin-top: 30px;
    opacity: 0.7;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Museum section */
.museum {
    margin: 80px 0;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--slate-gray);
}

.museum h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: normal;
}

.museum-subtitle {
    text-align: center;
    opacity: 0.6;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.exhibit-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.exhibit {
    padding: 10px;
}

.frame {
    border: 1px solid var(--slate-gray);
    padding: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.frame:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--muted-green);
}

.rejection {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.museum-gift-shop {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--muted-green);
    margin-top: 40px;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.02);
}

/* Enlightenment levels */
.enlightenment {
    margin: 80px 0;
}

.enlightenment h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 60px;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: uppercase;
}

.level-container {
    position: relative;
}

.level {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    border-left: 2px solid var(--muted-green);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.01);
}

.level:hover {
    background: rgba(255, 255, 255, 0.03);
    border-left-width: 3px;
}

.final-level {
    border-left-color: var(--accent-amber);
}

.level-num {
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--muted-green);
    min-width: 60px;
    opacity: 0.4;
}

.final-level .level-num {
    color: var(--accent-amber);
    opacity: 1;
}

.level-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--off-white);
    font-weight: normal;
}

.final-level .level-content h4 {
    color: var(--accent-amber);
}

.level-content p {
    line-height: 1.6;
    opacity: 0.8;
}

/* Conspiracy board - muted tones */
.conspiracy {
    margin: 80px 0;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--slate-gray);
    border-bottom: 1px solid var(--slate-gray);
}

.conspiracy h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #8b4545;
    font-weight: normal;
}

.board {
    position: relative;
    min-height: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.note {
    background: #e8e0c8;
    color: #2a2a2a;
    padding: 15px;
    font-size: 0.9rem;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.note:hover {
    transform: rotate(0deg) scale(1.03);
    z-index: 10;
}

.note-center {
    grid-column: span 3;
    background: #8b4545;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    transform: rotate(0deg);
    padding: 30px;
}

.conspiracy-conclusion {
    text-align: center;
    margin-top: 40px;
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.85;
}

/* Simulation section */
.simulation {
    margin: 80px 0;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.simulation h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: normal;
}

.simulator-box {
    max-width: 600px;
    margin: 0 auto;
}

.simulator-screen {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--forest-green);
    padding: 40px;
    min-height: 200px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    color: var(--muted-green);
    line-height: 1.8;
}

.sim-button {
    width: 100%;
    padding: 15px;
    background: var(--forest-green);
    color: var(--off-white);
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.sim-button:hover {
    background: var(--muted-green);
}

/* Scrolls section */
.scrolls {
    margin: 80px 0;
}

.scrolls h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: normal;
}

.scroll {
    margin-bottom: 20px;
    border: 1px solid var(--slate-gray);
    background: rgba(255, 255, 255, 0.02);
}

.scroll summary {
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: normal;
    user-select: none;
    transition: all 0.3s;
}

.scroll summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.scroll-content {
    padding: 30px;
    border-top: 1px solid var(--slate-gray);
    line-height: 1.8;
}

.scroll-content code {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 20px 0;
    border-left: 2px solid var(--muted-green);
    line-height: 1.6;
}

.scroll-content ol,
.scroll-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.scroll-content li {
    margin: 15px 0;
}

.scroll-wisdom {
    margin-top: 20px;
    padding: 15px;
    background: rgba(184, 134, 11, 0.1);
    border-left: 2px solid var(--accent-amber);
    font-style: italic;
}

/* Oracle section */
.oracle {
    margin: 80px 0;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.oracle h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: normal;
}

.oracle-box {
    max-width: 600px;
    margin: 0 auto;
}

.oracle-intro {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.7;
}

.oracle-box input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--slate-gray);
    color: var(--off-white);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 15px;
}

.oracle-box input:focus {
    outline: none;
    border-color: var(--muted-green);
}

.oracle-box button {
    width: 100%;
    padding: 15px;
    background: none;
    border: 1px solid var(--muted-green);
    color: var(--muted-green);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.oracle-box button:hover {
    background: var(--muted-green);
    color: var(--charcoal);
}

.oracle-response {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--muted-green);
    min-height: 50px;
    line-height: 1.8;
}

/* Exit section */
.exit-section {
    margin: 80px 0;
    text-align: center;
}

.exit-section h2 {
    font-size: 2rem;
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-weight: normal;
}

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

.exit-choice {
    padding: 30px 20px;
    border: 1px solid var(--slate-gray);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.exit-choice:hover {
    border-color: var(--muted-green);
    background: rgba(255, 255, 255, 0.04);
    border-width: 2px;
}

.exit-choice h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.exit-choice p {
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 20px;
}

.exit-choice button {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--forest-green);
    color: var(--off-white);
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.exit-choice button:hover {
    background: var(--muted-green);
}

.final-wisdom {
    padding: 60px 20px;
    line-height: 2;
    font-size: 1rem;
    border-top: 1px solid var(--slate-gray);
    opacity: 0.85;
}

/* Footer */
.anti-footer {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.6;
    line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .vcmoney-logo {
        font-size: 2rem;
    }

    .truth-grid {
        grid-template-columns: 1fr;
    }

    .equation {
        font-size: 1.2rem;
        flex-direction: column;
    }

    .exhibit-wall {
        grid-template-columns: 1fr;
    }

    .board {
        grid-template-columns: 1fr;
    }

    .note-center {
        grid-column: span 1;
    }

    .exit-choices {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--muted-green);
    color: var(--charcoal);
}

h2 {
    text-transform: uppercase;
}

small {
    display: block;
    margin-top: 5px;
}

/* Research card hover effects - subtle and professional */
a div {
    transition: all 0.3s ease;
}

a:hover div {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.04) !important;
    border-width: 2px !important;
}
