body {
    font-family: "Courier New", Courier, monospace;
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #0f0;
}

#hydra-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

.main-container {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header ASCII */
.ascii-header {
    font-size: 8px;
    line-height: 8px;
    color: #0f0;
    text-shadow: 2px 2px #f0f;
    animation: jitter 0.15s infinite;
}

@keyframes jitter {
    0% { transform: translate(0,0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-2px, -1px); }
    100% { transform: translate(1px, 2px); }
}

/* Boxes */
.presskit-box {
    background: rgba(0, 0, 0, 0.85);
    border: 3px double #0f0;
    padding: 20px;
    color: #0f0;
    margin-bottom: 20px;
    box-shadow: 0 0 15px #0f0;
}

.glitch-text {
    color: #f0f;
    text-shadow: 2px 2px #0ff;
    border-bottom: 1px solid #f0f;
    text-transform: uppercase;
}

/* LIVE CODING TERMINAL */
.live-coding-zone {
    background: #000;
    border: 2px solid #f0f;
    box-shadow: 5px 5px #0ff;
    padding: 10px;
    margin-top: 20px;
}

.editor-header {
    background: #f0f;
    color: #000;
    font-weight: bold;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}

#hydra-editor {
    width: 95%;
    height: 180px;
    background-color: #050505 !important;
    color: #00ff00 !important;
    border: 2px solid #00ff00 !important;
    font-family: "Courier New", monospace !important;
    font-size: 14px;
    padding: 10px;
    resize: vertical;
    outline: none;
    box-shadow: inset 0 0 5px #00ff00;
}

.run-btn {
    background: #0f0;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: "Courier New", monospace;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    border: 2px solid #000;
}

.run-btn:hover {
    background: #0ff;
    box-shadow: 0 0 10px #0ff;
}

/* Sidebar & Social */
.sidebar-gabb {
    background: rgba(20, 20, 20, 0.9);
    padding: 15px;
    border: 1px solid #333;
    box-shadow: inset 0 0 10px #000;
}

.cyber-button {
    display: inline-block;
    background: #000;
    color: #0ff;
    border: 2px solid #0ff;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    font-size: 12px;
}

.cyber-button:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 15px #0ff;
}

.navigation-zone {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border: 1px dashed #0ff;
    margin-bottom: 10px;
}

.radio-section {
    background: #000;
    border: 1px solid #f0f;
    padding: 5px;
    margin-top: 15px;
}

.radio-section iframe {
    filter: invert(1) hue-rotate(180deg) brightness(1.1) contrast(1.2);
    border: 1px solid #f0f;
}

.radio-header {
    background: #f0f;
    color: #000;
    font-size: 11px;
    font-weight: bold;
    padding: 3px;
    text-align: center;
}

marquee {
    border: 1px solid #0f0;
    padding: 5px;
}

footer {
    margin-top: 30px;
    font-size: 10px;
    color: #0ff;
}