body, html {
    background-color: #000;
    color: #00FF00;
    font-family: "Comic Sans MS", "Chalkboard SE", cursive;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed; 
}

#overlay h2 { 
    font-size: clamp(1.5rem, 8vw, 3rem); 
    color: #00FF00; 
    text-align: center; 
    padding: 20px;
    text-shadow: 2px 2px 0px #ff0000;
}

#overlay img {
    max-width: 250px;
    width: 60%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    text-align: center;
    position: relative;
}

h1 {
    font-size: clamp(3rem, 15vw, 8rem);
    color: #fff;
    text-shadow: 5px 5px 0px #00FF00;
    margin: 10px 0;
    letter-spacing: -5px;
}

.hero-img {
    width: 90%;
    max-width: 350px;
    border: 5px solid #fff;
    box-shadow: 15px 15px 0px #00FF00;
    margin: 20px 0;
}

.hero-text {
    color: #fff; 
    font-size: clamp(1rem, 5vw, 1.5rem);
    margin-bottom: 30px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn {
    background: #fff;
    color: #000;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.2rem;
    border: 4px solid #00FF00;
    font-weight: bold;
    display: inline-block;
    transition: 0.2s;
}

.btn-black {
    background: #000 !important;
    color: #fff !important;
}

.btn:hover {
    background: #00FF00 !important;
    color: #000 !important;
    box-shadow: 0 0 20px #00FF00;
    transform: scale(1.05);
}

.ca-box {
    background: #00FF00;
    color: #000;
    padding: 20px;
    margin: 30px 10px;
    border: 4px solid #fff;
    font-weight: bold;
}

.ca-address {
    font-family: monospace;
    font-size: clamp(0.8rem, 4vw, 1.3rem);
    word-break: break-all;
    background: #000;
    color: #00FF00;
    padding: 12px;
    display: block;
    margin: 10px 0;
    border: 2px dashed #00FF00;
}

.copy-btn {
    background: transparent;
    border: 2px solid #000;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
}

.meme-marquee-container {
    width: 100%;
    overflow: hidden;
    background: #111;
    border-top: 3px solid #00FF00;
    border-bottom: 3px solid #00FF00;
    padding: 15px 0;
    display: flex;
}

.meme-track {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    animation: scroll-memes 25s linear infinite;
    will-change: transform;
}

.meme-track img {
    height: clamp(100px, 20vh, 180px);
    border: 3px solid #00FF00;
    flex-shrink: 0;
    object-fit: contain;
}

@keyframes scroll-memes {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #111;
    padding: 30px 10px;
    border-top: 5px solid #fff;
    gap: 20px;
}

.stat-card h2 { color: #fff; margin: 0; font-size: 2rem; }
.stat-card p { font-size: 1rem; margin: 5px; color: #00FF00; }

.floating-meme {
    position: fixed;
    z-index: -1;
    opacity: 0.4;
    animation: float linear infinite;
    pointer-events: none;
    bottom: -150px;
}

@keyframes float {
    from { transform: translateY(0vh) rotate(0deg); }
    to { transform: translateY(-120vh) rotate(360deg); }
}

footer {
    background: #00FF00;
    color: #000;
    padding: 10px 0;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.footer-track {
    display: inline-flex;
    animation: footer-scroll 15s linear infinite;
    will-change: transform;
}

.footer-track span {
    font-size: 1.2rem;
    padding-right: 50px;
}

@keyframes footer-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-33.33%); }
}

@media (max-width: 600px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-img {
        box-shadow: 8px 8px 0px #00FF00;
    }
}