:root {
    --primary: #ffcc2a;
    --secondary: #e30504;
    --dark: #0f0f0f;
    --light: #ffffff;
    --gray: #f8f8f8;
    --text-dark: #333333;
    --transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn {
    text-transform: uppercase;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

/* Header & Nav */
header {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px; /* More compact header */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px; /* Fairly thick bar */
    background: var(--primary);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: 0.2s transform ease, 0.2s box-shadow ease;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--light);
}

.btn-outline {
    border: 2px solid var(--light);
    color: var(--light);
}

.header-player {
    display: flex;
    align-items: center;
}

.mini-player {
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    padding: 0.4rem 1.2rem 0.4rem 0.6rem;
    border-radius: 40px;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.mini-player:hover {
    transform: scale(1.05);
    background: var(--light);
}

.mini-play-btn {
    width: 35px;
    height: 35px;
    background: var(--dark); /* Changed to black */
    color: var(--secondary); /* Icon now red */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.mini-play-btn:hover {
    background: var(--secondary);
    color: var(--light);
}

.stream-info {
    display: flex;
    flex-direction: column;
}

.stream-status {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.8;
}

.stream-name {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Playing State for buttons */
.playing-icon::before {
    content: '||';
    font-family: inherit;
    font-weight: 800;
}

/* Main Player Refinements */
.volume-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vol-slider {
    width: 100px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--light);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, transparent 20%, rgba(15,15,15,0.8) 80%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    padding-top: 50px;
}

.hero-text h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.hero-text .slogan {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.hero-text .description {
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.header-spacer {
    height: 100px; /* Space under the header */
}

/* Video Container & Sequential Video */
.video-overlay-container {
    position: absolute;
    top: 50%;
    right: 12%; /* Moved further left from the edge */
    width: 45%;
    height: 80vh;
    transform: translateY(-40%);
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.video-overlay-container video {
    position: absolute;
    height: 100%;
    width: auto;
    right: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.8));
}

.video-overlay-container video.active {
    opacity: 1;
}

/* Audio Toggle */
.audio-toggle {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 50;
    width: 60px;
    height: 60px;
    background: rgba(255, 204, 42, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
}

.hero:hover .audio-toggle {
    opacity: 1;
    transform: translateY(0);
}

.audio-toggle:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

.audio-toggle .unmute-icon {
    display: none;
}

.audio-toggle.unmuted .mute-icon {
    display: none;
}

.audio-toggle.unmuted .unmute-icon {
    display: block;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light);
}

.about-section .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0px var(--primary);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
}

.stat-item h3 {
    color: var(--secondary);
    font-size: 2rem;
}

/* Shows Section */
.shows-section {
    padding: 100px 0;
    background: var(--gray);
}

.section-header {
    margin-bottom: 4rem;
}

.shows-grid {
    grid-template-columns: repeat(3, 1fr);
}

.show-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.show-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.show-time {
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.show-card h3 {
    margin-bottom: 1rem;
}

/* Live Player */
.live-player-section {
    padding: 60px 0;
    margin-top: -100px;
    position: relative;
    z-index: 20;
}

.player-card {
    background: var(--dark);
    color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    border-radius: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
}

.live-badge {
    background: var(--secondary);
    color: var(--light);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dark); /* Changed to black */
    color: var(--secondary); /* Icon now red */
    border: 2px solid var(--secondary); /* Optional nice touch for visibility */
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    background: var(--secondary);
    color: var(--light);
    transform: scale(1.1);
}

/* Updates Section */
.updates-section {
    padding: 100px 0;
}

.updates-grid {
    grid-template-columns: 1fr 1fr;
}

.update-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.update-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.update-content {
    padding: 2rem;
}

.update-content .date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
    display: block;
}

.update-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Nav */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--light);
    transition: var(--transition);
}

@media (max-width: 968px) {
    .player-card {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        border-radius: 20px;
        padding: 2rem;
    }
    .live-player-section {
        margin-top: 0;
    }
}

/* Media Queries */
@media (max-width: 968px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero::after {
        background: rgba(0,0,0,0.5);
    }
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s 0.9s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

footer .footer-about img {
    height: 50px;
    margin-bottom: 1.5rem;
}

footer h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--dark);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: scale(1.1);
    background: var(--secondary);
    color: var(--light);
}
