/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', 'Courier New', monospace;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* Canvas backgrounds */
#test-pattern, #static-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

#test-pattern {
    opacity: 0.8;
    border: 8px solid #000;
    box-sizing: border-box;
}

#static-canvas {
    opacity: 0.2;
    mix-blend-mode: screen;
}

/* Content container */
#content-container {
    position: relative;
    z-index: 10;
    padding-top: 60px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px auto;
    min-height: 100vh;
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    padding: 10px 0;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

#main-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-nav li {
    margin: 5px 10px;
}

#main-nav a {
    color: #0ff;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    padding: 5px 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s;
    display: block;
    text-align: center;
}

#main-nav a:hover, #main-nav a.active {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px #0ff;
}

/* Burger Menu */
.burger-menu {
    display: none;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 102;
    cursor: pointer;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.burger-icon {
    width: 30px;
    height: 25px;
    position: relative;
}

.burger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #0ff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    box-shadow: 0 0 8px #0ff;
}

.burger-icon span:nth-child(1) {
    top: 0px;
}

.burger-icon span:nth-child(2) {
    top: 10px;
}

.burger-icon span:nth-child(3) {
    top: 20px;
}

.burger-icon.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.burger-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.burger-icon.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    #main-nav {
        padding: 10px 0;
    }
    
    .burger-menu {
        display: block;
    }
    
    #nav-menu {
        position: fixed;
        top: 0;
        right: -250px; /* Start off-screen */
        width: 250px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding-top: 60px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 255, 255, 0.2);
        z-index: 100;
        display: flex; /* Always display flex, but off-screen */
    }
    
    #nav-menu.open {
        right: 0; /* Slide in from right */
    }
    
    #main-nav li {
        margin: 10px 20px;
    }
    
    #main-nav a {
        font-size: 1em;
        text-align: left;
        padding: 4px 6px;
    }
}

/* Sections */
.section {
    display: block !important;
    margin-bottom: 3em;
    padding: 1.5em;
    border-bottom: 1px dashed rgba(0, 255, 255, 0.3);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Section Content Boxes */
.mystery-box, .contract-box, .epstein-list-container, .alien-transmission, .log-entries, .cipher-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5em;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* Text readability improvements */
p, .log-entry, .alien-text, .epstein-name, .cipher-text {
    text-shadow: 0 0 5px #000;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5em;
    border-radius: 3px;
    margin: 0.7em 0;
}

h1, h2, h3, h4 {
    text-shadow: 0 0 10px #000, 0 0 20px #0ff;
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 0.3em 0.8em;
    border-radius: 5px;
    margin: 0.8em 0;
}

/* Contract section readability */
.big-address {
    background: rgba(0, 0, 0, 0.9) !important;
    padding: 1em !important;
    border-radius: 5px !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3) !important;
    margin: 1em auto !important;
    max-width: 90% !important;
}

/* Mobile responsiveness for sections */
@media (max-width: 768px) {
    .section {
        padding: 0.5em;
    }
    
    h1, h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    .big-address {
        font-size: 0.8em;
        word-break: break-all;
    }
    
    .epstein-names {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Intro Section */
#intro-title {
    font-size: 2.5em;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px #0ff, 0 0 24px #f0f, 0 0 8px #fff;
    margin-bottom: 1em;
    animation: flicker 1.5s infinite alternate;
}

.typewriter-green {
    color: #00ff66 !important;
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-size: 1.5em;
    text-shadow: 0 0 12px #00ff66, 0 0 30px #00ff66, 0 0 8px #fff;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #00ff66;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.5;
    animation: crtGlow 1.8s infinite alternate;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.typewriter-green .blink-text {
    animation: blink 1s infinite;
    color: #00ff66;
    font-weight: bold;
}

/* Contract Section */
.contract-box {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid #0ff;
    border-radius: 10px;
    padding: 2em;
    margin: 1em auto;
    max-width: 80%;
    box-shadow: 0 0 30px #f0f, 0 0 15px #0ff;
}

.big-address {
    font-size: 1.5em;
    font-family: 'Courier New', monospace;
    color: #0ff;
    background: #111;
    padding: 0.5em;
    border-radius: 5px;
    margin-bottom: 1em;
    word-break: break-all;
    text-shadow: 0 0 10px #0ff;
    border: 1px solid #0ff;
}

#copy-btn {
    background: #0ff;
    color: #000;
    border: none;
    padding: 0.5em 2em;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: all 0.3s;
}

#copy-btn:hover {
    background: #f0f;
    box-shadow: 0 0 15px #f0f;
}

/* Mystery Box */
.mystery-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #f0f;
    border-radius: 8px;
    padding: 2em;
    margin: 1em auto;
    max-width: 80%;
    box-shadow: 0 0 20px #f0f;
}

.mystery-narrative {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #0ff;
    text-shadow: 0 0 8px #0ff;
}

/* Mystery elements */
.redacted {
    background: #000;
    color: #000;
    padding: 0 5px;
    border-radius: 3px;
    position: relative;
    cursor: help;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
    user-select: none;
}

.redacted:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #f00;
    text-shadow: 0 0 8px #f00;
}

.redacted:after {
    content: "REDACTED";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f00;
    font-size: 0.7em;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.redacted:hover:after {
    opacity: 0;
}

.log-entry {
    border-left: 3px solid #0ff;
    padding: 0.5em 1em;
    margin: 1em 0;
    background: rgba(0, 255, 255, 0.05);
    text-align: left;
}

.log-date {
    color: #0ff;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    margin-bottom: 0.5em;
}

.log-content {
    color: #fff;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
}

.cipher-text {
    font-family: 'Courier New', monospace;
    color: #0f0;
    background: rgba(0, 0, 0, 0.5);
    padding: 1em;
    margin: 1em 0;
    border-radius: 5px;
    overflow-wrap: break-word;
    text-align: center;
    letter-spacing: 0.1em;
    border: 1px solid #0f0;
    text-shadow: 0 0 5px #0f0;
    animation: cipherPulse 4s infinite alternate;
}

@keyframes cipherPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.mystery-list {
    text-align: left;
    color: #0ff;
    font-family: 'Courier New', monospace;
    line-height: 1.8;
    margin: 1em 0;
    list-style-type: none;
}

.mystery-list li {
    margin-bottom: 0.8em;
    padding-left: 1.5em;
    position: relative;
}

.mystery-list li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #f0f;
}

.glitch-text {
    position: relative;
    color: #f0f;
    animation: glitchText 2s infinite alternate-reverse;
}

.countdown {
    margin: 2em auto;
    text-align: center;
    padding: 1em;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 2px solid #f00;
    max-width: 300px;
}

#countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 2em;
    color: #f00;
    text-shadow: 0 0 10px #f00;
    margin-bottom: 0.5em;
}

.countdown-label {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    letter-spacing: 0.2em;
    font-size: 0.9em;
}

.hidden-message {
    position: absolute;
    left: -9999px;
    color: transparent;
    font-size: 0;
    opacity: 0.01;
}

/* Glitch effect */
.glitch {
    font-size: 2em;
    position: relative;
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px #0ff, 0 0 30px #f0f;
    animation: glitchText 3s infinite alternate-reverse;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #f0f;
    z-index: -1;
    animation: glitchOffset 3.5s infinite alternate-reverse;
}

.glitch::after {
    color: #0ff;
    z-index: -2;
    animation: glitchOffset 3s infinite alternate-reverse;
}

.flash-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #0f0;
    padding: 1em 2em;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    z-index: 1000;
    text-align: center;
    border: 1px solid #0f0;
    box-shadow: 0 0 30px #0f0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.intense-glitch {
    animation: intenseGlitch 0.5s steps(1) infinite !important;
    opacity: 1 !important;
}

@keyframes intenseGlitch {
    0% { transform: translate(-3px, 2px); filter: hue-rotate(90deg); }
    10% { transform: translate(1px, -3px); filter: hue-rotate(180deg); }
    20% { transform: translate(3px, 1px); filter: hue-rotate(270deg); }
    30% { transform: translate(-2px, -2px); filter: hue-rotate(0deg); }
    40% { transform: translate(2px, 3px); filter: hue-rotate(45deg); }
    50% { transform: translate(-3px, -1px); filter: hue-rotate(135deg); }
    60% { transform: translate(1px, 2px); filter: hue-rotate(225deg); }
    70% { transform: translate(3px, -3px); filter: hue-rotate(315deg); }
    80% { transform: translate(-2px, 1px); filter: hue-rotate(180deg); }
    90% { transform: translate(2px, -2px); filter: hue-rotate(270deg); }
    100% { transform: translate(0, 0); filter: hue-rotate(0deg); }
}

/* Footer */
#site-footer {
    position: relative;
    z-index: 50;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-top: 2px solid #0ff;
    padding: 1em 0;
    margin-top: 3em;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    text-align: center;
}

.footer-left {
    text-align: left;
    color: #0ff;
    font-size: 0.9em;
    text-shadow: 0 0 5px #0ff;
}

.footer-right {
    text-align: right;
    color: #f0f;
    font-size: 0.9em;
    text-shadow: 0 0 5px #f0f;
}

.glitch-small {
    font-size: 1em;
    color: #00ff66;
    text-shadow: 0 0 8px #00ff66;
    animation: glitchText 2s infinite alternate-reverse;
    letter-spacing: 0.1em;
}

/* Animations */
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.97; }
    100% { opacity: 1; }
}

@keyframes glitchText {
    0% { text-shadow: 0 0 10px #fff, 0 0 20px #0ff, 0 0 30px #f0f; }
    50% { text-shadow: 0 0 10px #f0f, 0 0 20px #fff, 0 0 30px #0ff; }
    100% { text-shadow: 0 0 10px #0ff, 0 0 20px #f0f, 0 0 30px #fff; }
}

@keyframes glitchOffset {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes crtGlow {
    0% { text-shadow: 0 0 8px #00ff66, 0 0 24px #00ff66, 0 0 4px #fff; }
    100% { text-shadow: 0 0 24px #00ff66, 0 0 40px #00ff66, 0 0 8px #fff; }
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Alien Transmission Section */
.transmission-header {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8em 1em;
    margin-bottom: 1.5em;
    border: 1px solid #f00;
    border-radius: 5px;
}

.signal-indicator {
    color: #f00;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    animation: blink 1.5s infinite;
}

.signal-strength {
    color: #0f0;
    font-family: 'Courier New', monospace;
}

.alien-transmission {
    margin: 2em 0;
}

.alien-text {
    font-family: 'Arial', sans-serif;
    color: #0ff;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.8em;
    margin: 0.8em 0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 1.2em;
    position: relative;
    overflow: hidden;
}

.alien-text:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px #0ff;
}

.alien-text.translated {
    color: #fff;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #0f0;
}

.alien-text.translated:after {
    content: attr(data-translation);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    color: #0f0;
    font-family: 'Courier New', monospace;
    padding: 0.8em;
}

.alien-text.translating {
    animation: translatingEffect 0.2s infinite alternate;
}

@keyframes translatingEffect {
    0% { transform: translateX(-2px); background: rgba(255, 0, 255, 0.1); }
    100% { transform: translateX(2px); background: rgba(0, 255, 255, 0.1); }
}

.translation-interface {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5em;
    border-radius: 8px;
    border: 2px solid #0ff;
    margin-top: 2em;
}

.translation-header {
    font-family: 'Orbitron', sans-serif;
    color: #0ff;
    font-size: 1.2em;
    margin-bottom: 1em;
    text-align: center;
    letter-spacing: 0.2em;
}

.translation-progress {
    margin: 1.5em 0;
}

.progress-bar {
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #0ff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5em;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0ff, #f0f);
    width: 0%;
    transition: width 0.5s ease-in-out;
}

.progress-text {
    text-align: center;
    color: #0ff;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.translation-instructions {
    margin-top: 1.5em;
    text-align: center;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 0.8em;
    line-height: 1.6;
}

.translation-instructions p {
    margin: 0.5em 0;
}

/* Terminal Easter Egg */
.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal-window {
    width: 80%;
    max-width: 800px;
    height: 70%;
    background: #000;
    border: 2px solid #0f0;
    padding: 1em;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    overflow: auto;
    font-family: 'Courier New', monospace;
}

.terminal-content {
    color: #0f0;
    font-size: 1em;
    line-height: 1.5;
    white-space: pre-wrap;
}

/* Terminal accessed effects */
.terminal-accessed .contract-box {
    position: relative;
}

.terminal-accessed .contract-box::after {
    content: "MONITORED";
    position: absolute;
    bottom: -15px;
    right: 10px;
    color: #f00;
    font-size: 0.7em;
    font-family: 'Courier New', monospace;
    animation: blink 1s infinite;
}

/* Easter Egg Styles */
.hidden-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glitchBackground 0.5s infinite alternate;
}

.hidden-mode-message {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0f0;
    padding: 2em;
    max-width: 80%;
    color: #0f0;
    font-family: 'Courier New', monospace;
    text-align: center;
    box-shadow: 0 0 30px #0f0;
}

.hidden-mode-message h2 {
    font-size: 2em;
    margin-bottom: 1em;
    animation: glitchText 2s infinite alternate;
}

.hidden-mode-message p {
    margin: 0.8em 0;
    line-height: 1.5;
}

.hidden-mode-close {
    margin-top: 2em;
    padding: 0.8em 1.5em;
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
}

.hidden-mode-close:hover {
    background: #0f0;
    color: #000;
}

.secret-wallet {
    margin-top: 1.5em;
    padding: 1em;
    background: #111;
    border: 1px dashed #f0f;
    font-size: 0.9em;
    color: #f0f;
}

/* Hidden Pixel Easter Egg */
.hidden-pixel {
    position: absolute;
    width: 1px;
    height: 1px;
    background: transparent;
    top: 10px;
    right: 10px;
    z-index: 10;
    cursor: default;
}

#secret-pixel:hover {
    cursor: crosshair;
}

/* Hidden Symbol Easter Egg */
.symbol-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s;
}

.mysterious-symbol {
    width: 300px;
    height: 300px;
    animation: rotateSymbol 20s linear infinite;
}

.mysterious-symbol svg {
    width: 100%;
    height: 100%;
}

.mysterious-symbol svg circle,
.mysterious-symbol svg polygon {
    animation: glowPath 3s infinite alternate;
}

.symbol-text {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-family: 'Courier New', monospace;
    text-align: center;
    width: 100%;
    font-size: 1.2em;
    letter-spacing: 0.2em;
    animation: pulseText 2s infinite alternate;
}

@keyframes rotateSymbol {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glowPath {
    0% { stroke-width: 2; }
    50% { stroke-width: 3; }
    100% { stroke-width: 2; }
}

@keyframes pulseText {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes glitchBackground {
    0% { background-color: rgba(0, 0, 0, 0.9); }
    25% { background-color: rgba(255, 0, 255, 0.05); }
    50% { background-color: rgba(0, 0, 0, 0.9); }
    75% { background-color: rgba(0, 255, 255, 0.05); }
    100% { background-color: rgba(0, 0, 0, 0.9); }
}

/* Seventh Seal Broken Effects */
.seventh-seal-broken .mystery-box {
    border-color: #f00 !important;
    box-shadow: 0 0 20px #f00 !important;
}

.seventh-seal-broken .big-address {
    animation: pulseAddress 3s infinite alternate !important;
}

@keyframes pulseAddress {
    0% { box-shadow: 0 0 10px #0ff; }
    50% { box-shadow: 0 0 20px #f00; }
    100% { box-shadow: 0 0 10px #0ff; }
}

/* Epstein Mysteries Section */
.epstein-intro {
    margin-bottom: 2em;
    text-align: center;
    color: #fff;
}

.epstein-intro p {
    margin: 0.8em 0;
    font-family: 'Courier New', monospace;
}

.epstein-list-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 2em;
    border: 1px solid #f00;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    margin: 1em 0;
}

.epstein-flight-log {
    color: #fff;
    font-family: 'Courier New', monospace;
}

.epstein-flight-log h3 {
    text-align: center;
    margin-bottom: 1em;
    color: #f00;
}

.epstein-flight-log .instructions {
    text-align: center;
    color: #ccc;
    margin-bottom: 1.5em;
    font-size: 0.9em;
}

.epstein-progress {
    margin-bottom: 2em;
}

.epstein-names {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 2em;
}

.epstein-name {
    padding: 0.5em;
    cursor: pointer;
    border: 1px solid rgba(255, 0, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    font-family: 'Runic', 'Elder Futhark', 'Arial', sans-serif;
    color: #f0f;
    text-align: center;
}

.epstein-name:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: scale(1.05);
}

.epstein-name.decrypted {
    font-family: 'Courier New', monospace;
    color: #0ff;
    border-color: #0ff;
    background: rgba(0, 255, 255, 0.1);
}

.epstein-name.translating {
    animation: translatingEffect 0.2s infinite alternate;
}

.epstein-message {
    margin-top: 2em;
    text-align: center;
    padding: 1em;
    border: 1px dashed #f00;
    background: rgba(255, 0, 0, 0.1);
    animation: pulseBackground 3s infinite alternate;
}

.epstein-message p {
    margin: 0.7em 0;
}

@keyframes pulseBackground {
    0% { background: rgba(255, 0, 0, 0.1); }
    100% { background: rgba(255, 0, 0, 0.2); }
}

/* Screen Flash Effect */
.screen-flash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.3);
    z-index: 9999;
    pointer-events: none;
    animation: flashFade 0.5s forwards;
}

@keyframes flashFade {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Center all boxes and content */
.mystery-box, .contract-box, .epstein-list-container, .alien-transmission, .log-entries, .cipher-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

/* Hunter Biden Laptop Section */
.hunter-intro {
    margin-bottom: 2em;
    text-align: center;
    color: #fff;
}

.hunter-intro p {
    margin: 0.8em 0;
    font-family: 'Courier New', monospace;
}

.laptop-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 2em;
    border: 1px solid #f00;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    margin: 1em 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.laptop-evidence {
    color: #fff;
    font-family: 'Courier New', monospace;
}

.laptop-evidence h3 {
    text-align: center;
    margin-bottom: 1em;
    color: #f00;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 2em 0;
}

.evidence-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #f00;
    padding: 1.2em;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.evidence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.evidence-icon {
    font-size: 2em;
    text-align: center;
    margin-bottom: 0.5em;
}

.evidence-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1em;
    color: #f00;
    font-size: 1.1em;
    text-shadow: 0 0 5px #f00;
}

.evidence-content {
    font-size: 0.9em;
    line-height: 1.4;
}

.evidence-content p {
    margin: 0.5em 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4em;
}

.evidence-text {
    color: #0ff;
    font-style: italic;
    border-left: 2px solid #0ff;
    padding-left: 0.8em !important;
}

.evidence-note {
    color: #f0f;
    font-size: 0.8em;
    border-left: 2px solid #f0f;
    padding-left: 0.8em !important;
}

.highlight {
    color: #ff0;
    font-weight: bold;
}

.alien-conclusion {
    margin-top: 2em;
    padding: 1.5em;
    background: rgba(255, 0, 0, 0.1);
    border: 1px dashed #f00;
}

.conclusion-text {
    text-align: center;
}

.conclusion-text p {
    margin: 0.8em 0;
    font-size: 1.1em;
    letter-spacing: 0.05em;
}

/* Mobile responsiveness for laptop section */
@media (max-width: 768px) {
    .evidence-grid {
        grid-template-columns: 1fr;
    }
    
    .evidence-item {
        padding: 1em;
    }
    
    .evidence-title {
        font-size: 1em;
    }
    
    .evidence-content {
        font-size: 0.8em;
    }
}

/* Evidence item expanded state */
.evidence-item.evidence-expanded {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.evidence-item .evidence-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.evidence-item.evidence-expanded .evidence-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 1em;
}

/* Glitching effect for evidence content */
.evidence-content.glitching {
    animation: textGlitch 0.3s infinite alternate;
}

@keyframes textGlitch {
    0% { transform: skew(0deg, 0deg); text-shadow: 2px 0 0 #f00, -2px 0 0 #0ff; }
    25% { transform: skew(1deg, 1deg); text-shadow: -2px 0 0 #f00, 2px 0 0 #0ff; }
    50% { transform: skew(-1deg, -1deg); text-shadow: 2px 0 0 #f0f, -2px 0 0 #0f0; }
    100% { transform: skew(1deg, -1deg); text-shadow: -2px 0 0 #f0f, 2px 0 0 #0f0; }
}

/* Flash message */
.flash-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #f00;
    font-family: 'Courier New', monospace;
    font-size: 1.5em;
    padding: 1em;
    border: 2px solid #f00;
    z-index: 9999;
    text-align: center;
    animation: flashMessageAnim 2s forwards;
    text-shadow: 0 0 10px #f00;
    max-width: 80%;
}

@keyframes flashMessageAnim {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    10% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    20% { transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

/* Evidence aware state */
.evidence-aware .contract-box::after {
    content: "MONITORED";
    position: absolute;
    bottom: -15px;
    right: 10px;
    color: #f00;
    font-size: 0.7em;
    font-family: 'Courier New', monospace;
    animation: blink 1s infinite;
}

/* COVID Scamdemic Section */
.covid-intro {
    margin-bottom: 2em;
    text-align: center;
    color: #fff;
}

.covid-intro p {
    margin: 0.8em 0;
    font-family: 'Courier New', monospace;
}

.covid-grid-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 2em;
    border: 1px solid #f00;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    margin: 1em 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.covid-figure-container {
    margin-bottom: 3em;
}

.covid-figure-container h3 {
    text-align: center;
    margin-bottom: 1em;
    color: #f00;
}

.covid-evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 2em 0;
}

.covid-evidence-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #f00;
    padding: 1.2em;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.covid-evidence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

/* Timeline Styles */
.covid-timeline {
    margin: 2em 0;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.covid-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f00;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 2em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-date {
    background: #000;
    color: #f00;
    padding: 0.5em 1em;
    border: 1px solid #f00;
    font-weight: bold;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-right: 2em;
}

.timeline-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 1em;
    border: 1px solid #f00;
    flex: 1;
    max-width: 60%;
}

.timeline-content p {
    margin: 0.5em 0;
    font-size: 0.9em;
}

.covid-conclusion {
    margin-top: 3em;
    padding: 1.5em;
    background: rgba(255, 0, 0, 0.1);
    border: 1px dashed #f00;
}

.covid-conclusion .conclusion-text {
    text-align: center;
}

.covid-conclusion .conclusion-text p {
    margin: 0.8em 0;
    font-size: 1.1em;
    letter-spacing: 0.05em;
}

/* Mobile responsiveness for COVID section */
@media (max-width: 768px) {
    .covid-evidence-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-date {
        margin-right: 0;
        margin-bottom: 1em;
    }
    
    .timeline-content {
        max-width: 90%;
    }
}

/* Token Buttons */
.token-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2em auto;
    max-width: 500px;
}

.token-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.token-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 400%;
    border-radius: 50px;
    animation: glowing-border 10s linear infinite;
}

.buy-button {
    background-color: #8a2be2;
    color: white;
}

.utilities-button {
    background-color: #00c896;
    color: black;
}

.token-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(0, 255, 255, 0.7);
}

.token-button:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6);
}

@keyframes glowing-border {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Mobile responsiveness for token buttons */
@media (max-width: 768px) {
    .token-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .token-button {
        width: 80%;
        padding: 10px 20px;
        font-size: 1em;
    }
}
