body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: black;
    color: white;
}

/* HERO AREA */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    text-align: center;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Foreground overlapping image */
.hero-fg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 250px;
    z-index: 2;
}

/* Overlay timers */
.timer-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    z-index: 3;
    background: rgba(0,0,0,0.4);
}

.timer-box {
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 12px;
}

.timer-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.timer-value {
    font-size: 28px;
    font-weight: bold;
}

/* Hero subtitle */
.hero-subtitle {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 28px;
    color: #39ff14; /* neon green */
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14;
    z-index: 4;
}

/* Footer ticker */
.footer-ticker {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: rgba(0,0,0,0.9);
    z-index: 5;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 20s linear infinite;
}

.ticker-item {
    flex: none;
    min-width: 200px;
    margin-right: 20px;
    background: #222;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    color: #0f0;
}

/* Ticker animation */
@keyframes scrollTicker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Footer link */
.links {
    margin-top: 30px;
    text-align: center;
}

.main-link {
    color: cyan;
    text-decoration: none;
    font-size: 20px;
}
