:root {
    --primary-color: #00ff88;
    --secondary-color: #FFD700;
    --bg-color: #000000;
    --text-color: #ffffff;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    height: 100vh;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-sequence {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* Smoother transition: 2.5s for opacity, 10s for zoom */
    transition: opacity 2.5s cubic-bezier(0.4, 0.0, 0.2, 1), transform 10s linear;
    transform: scale(1.0);
    will-change: opacity, transform;
}

.hero-image.active {
    opacity: 1;
    transform: scale(1.15);
    /* Slightly stronger zoom for effect */
}

/* Gradient Overlay */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 80%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    /* Make sure links don't have underline */
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    background-color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Fixed Player */
.fixed-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.station-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-indicator {
    background: #ff0000;
    color: white;
    padding: 2px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.station-name {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

.player-controls .play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-color);
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.player-controls .play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

/* Equalizer */
.equalizer {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: flex-end;
}

.bar {
    width: 4px;
    background: var(--secondary-color);
    animation: equalizer 1s infinite;
}

.bar:nth-child(1) {
    height: 10px;
    animation-duration: 0.5s;
}

.bar:nth-child(2) {
    height: 18px;
    animation-duration: 0.7s;
}

.bar:nth-child(3) {
    height: 12px;
    animation-duration: 0.4s;
}

.bar:nth-child(4) {
    height: 6px;
    animation-duration: 0.6s;
}

.bar:nth-child(5) {
    height: 14px;
    animation-duration: 0.8s;
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes equalizer {
    0% {
        height: 5px;
    }

    50% {
        height: 20px;
    }

    100% {
        height: 5px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .player-container {
        flex-direction: column;
        gap: 10px;
    }

    .equalizer {
        display: none;
    }
}