body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #00ffcc;
    background-color: #000;
}

#effect-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #00ffcc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 1px 1px #ff00ff;
}

#logo-layer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-image: url('Logo1200.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    pointer-events: none;
    mix-blend-mode: screen;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.button {
    padding: 8px 20px;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    margin: 10px;
}

.button:hover {
    background: #00ffcc;
    color: black;
}

/* Hover Corruption Effect */
.button.corrupt {
    animation: glitch-anim 0.15s infinite;
    color: #ff00ff !important;
    border-color: #ff00ff !important;
    text-shadow: 2px 0 #00ffff, -2px 0 #ff00ff;
}

@keyframes glitch-anim {
    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); }
}

/* Ticker Styles */
#ticker-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.135);
    /* border-top: 1px solid #00ffcc; */
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 4;
    font-family: monospace;
    font-size: 0.9rem;
    color: #00ffcc;
}

#ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Logo1200.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
