:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --neon-purple: #b026ff;
    --neon-green: #39ff14;
    --neon-cyan: #00ffff;
    --scanline-color: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        var(--scanline-color) 50%,
        var(--scanline-color)
    );
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.6;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header & Logo */
header {
    margin-bottom: 40px;
    margin-top: 20px;
}

.logo-container {
    display: inline-block;
    border: 2px solid var(--neon-purple);
    padding: 10px;
    box-shadow: 0 0 15px var(--neon-purple);
    background: rgba(0,0,0,0.8);
}

.glitch-logo {
    max-width: 100%;
    height: auto;
    width: 300px;
    display: block;
}

/* Typography */
h1, h2, .sign {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.hero {
    margin-bottom: 60px;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 900;
    position: relative;
    color: var(--text-color);
    text-shadow: 2px 2px var(--neon-purple), -2px -2px var(--neon-green);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(14px, 9999px, 122px, 0); transform: skew(0.55deg); }
    5% { clip: rect(69px, 9999px, 20px, 0); transform: skew(0.6deg); }
    10% { clip: rect(2px, 9999px, 85px, 0); transform: skew(0.2deg); }
    /* ... shortened for brevity, browser will interpolate ... */
    100% { clip: rect(100px, 9999px, 2px, 0); transform: skew(0.1deg); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(34px, 9999px, 12px, 0); }
    100% { clip: rect(2px, 9999px, 85px, 0); }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--neon-green);
    letter-spacing: 2px;
    margin-top: 10px;
}

.zodiac-info {
    margin-top: 20px;
    border-top: 1px solid var(--neon-cyan);
    border-bottom: 1px solid var(--neon-cyan);
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: rgba(0, 255, 255, 0.1);
}

.sign {
    color: var(--neon-purple);
    font-weight: bold;
}

/* Content Boxes */
.cyber-box {
    border: 1px solid var(--text-color);
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    background: rgba(20, 20, 20, 0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cyber-box:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 0px var(--neon-green);
    border-color: var(--neon-green);
}

.cyber-box h2 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: left;
}

.cyber-box p {
    text-align: left;
    line-height: 1.6;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px dashed #333;
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .zodiac-info {
        flex-direction: column;
        gap: 10px;
    }

    .container {
        padding: 10px;
    }
}
