/* ========================================
   REVIEWS SECTION - REDESIGNED
   ======================================== */

.reviews-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #013C32 0%, #015248 50%, #013C32 100%);
    overflow: hidden;
}

.reviews-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(252, 252, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(252, 252, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.reviews-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 252, 0, 0.15);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.reviews-subtitle i {
    font-size: 0.9rem;
}

.reviews-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Review Carousel Wrapper */
.review-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.review-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.review-carousel::-webkit-scrollbar {
    display: none;
}

/* Review Card */
.review-card {
    min-width: 340px;
    max-width: 360px;
    flex: 0 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    scroll-snap-align: center;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700, var(--accent-color));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(252, 252, 0, 0.2);
}

/* Quote Icon */
.review-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #015248 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(1, 60, 50, 0.3);
}

/* Stars */
.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-stars i.far {
    color: #ddd;
    filter: none;
}

/* Review Text */
.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 2rem;
}

/* Review User */
.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #026b5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(1, 60, 50, 0.25);
    position: relative;
    flex-shrink: 0;
}

.review-avatar::before {
    content: attr(data-initials);
}

.review-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
}

.review-user-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.review-user-info span {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.review-user-info span i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

/* Carousel Arrows */
.carousel-arrow {
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(252, 252, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.carousel-arrow.left {
    margin-right: 1.5rem;
}

.carousel-arrow.right {
    margin-left: 1.5rem;
}

.carousel-arrow:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.carousel-arrow:active {
    transform: scale(1.05);
}

/* Review Dots (Navigation Indicator) */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

/* ========================================
   REVIEWS SECTION - RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .reviews-section {
        padding: 80px 0;
    }
    
    .review-card {
        min-width: 320px;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-header {
        margin-bottom: 2.5rem;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .review-carousel-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .review-carousel {
        padding: 1rem 0;
        gap: 1rem;
        scroll-padding: 0 1rem;
    }
    
    .review-card {
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        margin: 0 0.5rem;
    }
    
    .review-quote-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-subtitle {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .reviews-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .reviews-desc {
        font-size: 0.9rem;
    }
    
    .review-card {
        min-width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .review-text {
        font-size: 0.95rem;
        padding-right: 0;
    }
    
    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .review-user-info h4 {
        font-size: 0.95rem;
    }
    
    .review-quote-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        top: 1rem;
        right: 1rem;
    }
}


/* 
  Bamba Radio - Global Styles
  Primary Color: #013C32 (Deep Jungle Green)
  Accent Color: #FCFC00 (Vivid Yellow)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&display=swap');

:root {
    --primary-color: #013C32;
    --accent-color: #FCFC00;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --bg-light: #F4F4F4;
    --transition: all 0.3s ease;
    
    /* Fluid Typography */
    --fs-h1: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(2rem, 5vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2rem);
    --fs-body: clamp(1rem, 2vw, 1.125rem);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, .brand-name {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Mobile-only auth in hamburger menu – hidden on desktop */
.nav-mobile-auth {
    display: none;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo img {
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Listen Live Button */
.btn-live {
    position: relative;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 12px rgba(252, 252, 0, 0.35);
    transition: all 0.3s ease;
    overflow: visible;
}

/* Pulsing ring animation */
.btn-live::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(252, 252, 0, 0.5);
    animation: btn-live-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes btn-live-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.btn-live i {
    font-size: 0.85rem;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
}

.btn-live:hover {
    background: var(--accent-color);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 20px rgba(252, 252, 0, 0.5);
}

.btn-live:active {
    transform: translateY(0) scale(0.98);
}

.btn-live.playing {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff;
    box-shadow: 0 2px 14px rgba(0, 200, 83, 0.4);
    animation: btn-live-glow 1.5s ease-in-out infinite alternate;
}

.btn-live.playing::before {
    border-color: rgba(0, 200, 83, 0.5);
}

@keyframes btn-live-glow {
    from {
        box-shadow: 0 2px 14px rgba(0, 200, 83, 0.3);
    }
    to {
        box-shadow: 0 2px 22px rgba(0, 200, 83, 0.65);
    }
}

/* Listen & Earn Button */
.btn-account {
    background: linear-gradient(135deg, var(#ff9100), #e6a800);
    color: var(--primary-color);
    padding: 0.55rem 1.2rem;
    border: none;
    border-radius: 50px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.35);
    white-space: nowrap;
}

.btn-account i {
    font-size: 1rem;
}

.btn-account span {
    line-height: 1;
}

.btn-account:hover {
    background: linear-gradient(135deg, #e6a800, var(--accent-color));
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 193, 7, 0.5);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
}

/* Hero Sections */
.hero, .slider-container {
    position: relative;
    height: 55vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(1, 60, 50, 0.8), rgba(1, 60, 50, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
        max-width: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 80px; /* Move hero-content down for desktop/laptop */
    }

.hero h1 {
    font-size: var(--fs-h1);
    word-break: break-word;
    margin-bottom: 1rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.slide.active .hero h1,
.slide.active .hero p,
.slide.active .hero-play-wrapper {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 600px) {
    .hero, .slider-container {
        height: 38vh;
        min-height: 180px;
    }
    .hero-content {
        max-width: 95vw;
        padding: 0 8px;
    }
        .hero-content {
            max-width: 95vw;
            padding: 0 8px;
            margin-top: 0; /* Reset margin for mobile */
        }
    .hero h1 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
    .hero p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    .btn-hero-play {
        width: 48px;
        height: 48px;
    }
    .btn-hero-play i {
        font-size: 1.2rem;
    }
    .hero-play-wrapper > span {
        font-size: 0.7rem !important;
    }
}

/* Hero Play Button */
.hero-play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    margin-left: 0;
}

.btn-hero-play {
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(252, 252, 0, 0.4);
}

.btn-hero-play::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.btn-hero-play i {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-left: 8px; /* Offset for play icon centering */
}

.btn-hero-play:hover {
    transform: scale(1.1);
    background-color: #fff;
}

.btn-hero-play.playing {
    background-color: #00c853;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
}

.btn-hero-play.playing::after {
    border-color: #00c853;
}

.btn-hero-play.playing i {
    margin-left: 0;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Hero Song Info */
.hero-song-info {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    max-width: 300px;
    opacity: 1 !important;
    z-index: 10;
}

.hero-now-playing {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    opacity: 1 !important;
}

.hero-song-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    animation: fadeInSong 0.5s ease;
    opacity: 1 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@keyframes fadeInSong {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .hero-song-info {
        max-width: 200px;
    }
    
    .hero-now-playing {
        font-size: 0.6rem;
    }
    
    .hero-song-title {
        font-size: 0.85rem;
    }
}

.hero-listen-live {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #fff;
}

/* Slider (Index Only) */
.slider-container {
    height: 85vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* Grid Sections (Shows, News, Team) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card h3 {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

.btn-submit:hover {
    background-color: #025a4b;
}

/* Section Dividers & Backgrounds */
.section-relative {
    position: relative;
    z-index: 1;
}

.divider-top-slanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    transform: translateY(-99%);
}

.bg-pattern {
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-color: #f9f9f9;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.bg-accent-section {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.bg-warm-section {
    background-color: #FFFDE7;
}

.latest-news-bg {
    position: relative;
    z-index: 1;
}

.latest-news-bg .latest-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.753); /* dark green overlay, adjust opacity as needed */
    z-index: 2;
    pointer-events: none;
}

.latest-news-bg .container,
.latest-news-bg .bg-pattern {
    position: relative;
    z-index: 3;
}
/* Latest News Section Fixed Background */
.latest-news-bg {
    background: url('../img/news.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.latest-news-bg .bg-pattern {
    background: none;
}

/* View More Arrow Hover Effect */
.view-more-arrow {
    transition: color 0.3s, transform 0.3s;
}
.view-more-arrow:hover {
    color: var(--accent-color);
    transform: translateX(6px) scale(1.08);
}
.view-more-arrow i {
    transition: transform 0.3s;
}
.view-more-arrow:hover i {
    transform: translateX(3px);
}



/* Reviews Section - Legacy styles removed and consolidated above */

/* FAQ Section */

.faq-bg-section {
    position: relative;
    padding: 3rem 0;
    background: url('/img/faql.jpg') no-repeat center center;
    background-size: cover;
}

.faq-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.113), rgba(251, 251, 251, 0));
    z-index: 1;
}

.faq-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    z-index: 2;
}

.faq-item {
    border-bottom: 1px solid rgba(1, 60, 50, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    color: rgba(8, 8, 8, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* News Search & Filters */
.news-filters {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.search-wrapper input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.search-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(1, 60, 50, 0.1);
}

.search-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.category-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    color: #666;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

/* Article Page Styles */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.article-content img {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
}

.share-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-section h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.share-btn.facebook { background-color: #1877F2; }
.share-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-btn.tiktok { background-color: #000000; }
.share-btn.x { background-color: #000000; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0.9;
}

.news-item {
    cursor: pointer;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-item:hover h3 {
    color: var(--primary-color);
}

/* About Page - Mission, Vision, Values */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.value-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary-color);
    color: white;
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item:hover i {
    color: white;
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

/* Founder Section */
.founder-section {
    margin-top: 6rem;
    padding: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.founder-img {
    flex: 0 0 350px;
    height: 450px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 10px 10px 0 var(--primary-color);
}

.founder-info {
    flex: 1;
}

.founder-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-info .title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.founder-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.founder-socials {
    display: flex;
    gap: 1.5rem;
}

.founder-socials a {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.founder-socials a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Get in Touch Section */
.get-in-touch {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    margin-top: 6rem;
}

.get-in-touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 60, 50, 0.85);
    z-index: 1;
}

.get-in-touch .container {
    position: relative;
    z-index: 2;
}

.get-in-touch h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.get-in-touch p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.social-connect-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-connect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.social-connect-item i,
.social-connect-item svg {
    font-size: 2.2rem;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    padding: 18px; /* Added to keep SVG sizes appropriate within the background circle */
    box-sizing: border-box;
}

.social-connect-item:hover i,
.social-connect-item:hover svg {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-connect-item span {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
@media (max-width: 600px) {
    .get-in-touch {
        padding: 3rem 0;
    }
    .get-in-touch h2 {
        font-size: 1.5rem;
    }
    .get-in-touch p {
        font-size: 1rem;
    }
    .social-connect-grid {
        gap: 1rem;
    }
    .social-connect-item i,
    .social-connect-item svg {
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
        padding: 8px; /* scale down padding to match media query dimensions */
    }
    .social-connect-item span {
        font-size: 0.75rem;
    }
}
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-card h4 {
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-top: 4rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shows Page Styles */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.show-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.show-time-banner {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.show-card-body {
    padding: 2rem;
    flex: 1;
}

.show-card-body h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.show-host {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.show-host img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.show-host-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
}

.show-host-info span {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Queries */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .founder-section {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-img {
        flex: 0 0 300px;
        width: 100%;
        max-width: 300px;
        height: 350px;
        margin: 0 auto;
    }
    
    .founder-socials {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .btn-live {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        background: var(--accent-color);
        color: var(--primary-color);
        box-shadow: 0 2px 12px rgba(252, 252, 0, 0.35);
    }

    .btn-live::before {
        border-color: rgba(252, 252, 0, 0.5);
    }

    .btn-live.playing {
        background: linear-gradient(135deg, #00c853, #00e676);
        color: #fff;
        box-shadow: 0 2px 14px rgba(0, 200, 83, 0.4);
    }

    .btn-live.playing::before {
        border-color: rgba(0, 200, 83, 0.5);
    }

    /* Hide original account/user-info buttons in navbar on mobile */
    .nav-container > .btn-account,
    .nav-container > .user-info {
        display: none !important;
    }

    /* Show auth section inside hamburger menu on mobile */
    .nav-mobile-auth {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        list-style: none;
    }

    .nav-mobile-auth .btn-account {
        display: flex;
        margin: 0 auto;
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        gap: 0.45rem;
    }

    .nav-mobile-auth .user-info {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .btn-live span {
        display: none; /* Hide text on very small screens */
    }
    .btn-live {
        padding: 0.6rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        margin-left:40px;
        font-size: 0.8rem;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        justify-content: center;
        background: var(--accent-color);
        color: var(--primary-color);
        box-shadow: 0 2px 12px rgba(252, 252, 0, 0.35);
    }
    .btn-live::before {
        border-radius: 50%;
        border-color: rgba(252, 252, 0, 0.5);
    }
    .founder-section {
        padding: 1rem;
        gap: 1.2rem;
    }
    .founder-img {
        flex: 0 0 180px;
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 0 auto 1rem auto;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(1,60,50,0.12);
        background-size: cover;
        background-position: center;
    }
    .founder-info h2 {
        font-size: 1.3rem;
    }
    .founder-info .title {
        font-size: 1rem;
    }
    .founder-socials {
        gap: 0.7rem;
        margin-top: 1rem;
    }
    .founder-socials a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ========================================
   AUTHENTICATION MODAL
   ======================================== */

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 60, 50, 0.95);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.auth-modal-content {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(1, 60, 50, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.auth-modal-close i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.auth-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.auth-modal-close:hover i {
    color: white;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
}

.auth-tab {
    flex: 1;
    padding: 1.1rem 1rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.auth-tab.active {
    color: var(--primary-color);
}

.auth-tab.active::after {
    transform: scaleX(1);
}

.auth-tab:hover:not(.active) {
    color: #555;
}

.auth-tab i {
    font-size: 0.95rem;
}

/* Auth Form Container */
.auth-form-container {
    padding: 2rem 2rem 2.5rem;
    display: none;
}

.auth-form-container.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.auth-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.auth-header p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-group label i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--primary-color);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 60, 50, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 0.8rem;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-hint {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: -0.3rem;
}

/* Auth Submit Button */
.btn-auth-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, #015248 100%);
    color: white;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 60, 50, 0.3);
}

.btn-auth-submit:active {
    transform: translateY(0);
}

/* Auth Form Error Message */
.auth-form-error {
    display: none;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.25);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

.auth-switch-text {
    text-align: center;
    margin-top: 1.1rem;
    font-size: 0.92rem;
    color: #888;
}

.auth-create-link {
    color: var(--primary-color, #e63946);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.auth-create-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Forgot Password Link */
.auth-forgot-password-text {
    text-align: right;
    margin-top: 0.3rem;
    margin-bottom: -0.3rem;
    font-size: 0.85rem;
}

.auth-forgot-password-text a {
    color: var(--primary-color, #013c32);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, color 0.2s;
}

.auth-forgot-password-text a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Auth Form Success Message */
.auth-form-success {
    display: none;
    color: #198754;
    background: rgba(25, 135, 84, 0.08);
    border: 1px solid rgba(25, 135, 84, 0.25);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

/* Back to Login link */
#back-to-login {
    color: var(--primary-color, #013c32);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

#back-to-login:hover {
    text-decoration: underline;
    opacity: 0.8;
}

#back-to-login i {
    margin-right: 0.3rem;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .auth-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .auth-form-container {
        padding: 1.5rem 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-header h2 {
        font-size: 1.4rem;
    }

    .auth-tab {
        padding: 0.9rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .auth-modal {
        padding: 0.5rem;
    }
    
    .auth-form-container {
        padding: 1.2rem 1rem;
    }
    
    .auth-modal-content {
        border-radius: 15px;
    }

    .auth-tab {
        font-size: 0.85rem;
        gap: 0.3rem;
    }
}

/* ========================================
   LISTEN EARN SWAP – Logged-in Nav
   ======================================== */

.user-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.8rem;
}

.user-email {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: #ff4444;
    color: #fff;
    transform: scale(1.1);
}

.btn-logout i {
    font-size: 1rem;
}

/* ========================================
   LISTEN EARN SWAP – Dashboard Widget
   ======================================== */

.les-dashboard {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    background: linear-gradient(145deg, #013C32 0%, #015248 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(252, 252, 0, 0.1);
    z-index: 9000;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.les-dashboard.les-hidden {
    display: none;
}

.les-dashboard.les-collapsed .les-body {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.les-dashboard.les-collapsed .les-chevron {
    transform: rotate(180deg);
}

.les-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    user-select: none;
    transition: background 0.3s ease;
}

.les-header:hover {
    background: rgba(0, 0, 0, 0.3);
}

.les-header-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.les-header-left i {
    font-size: 1.1rem;
}

.les-chevron {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.les-body {
    padding: 1.25rem;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
}

.les-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.les-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.les-stat-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 32px;
    text-align: center;
}

.les-stat-content {
    display: flex;
    flex-direction: column;
}

.les-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.les-stat-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.les-rate-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 252, 0, 0.1);
    border: 1px solid rgba(252, 252, 0, 0.15);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.les-rate-info i {
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.les-activate-btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.les-activate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 252, 0, 0.3);
}

.les-activate-btn.les-deactivate {
    background: rgba(255, 68, 68, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.les-activate-btn.les-deactivate:hover {
    background: #ff4444;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
}

.les-active-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    animation: earnPulse 2s infinite;
}

.les-active-indicator.les-hidden {
    display: none;
}

/* ---- Swap Button ---- */
.les-swap-wrapper {
    position: relative;
    margin-top: 0.75rem;
}

.les-swap-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.les-swap-btn.les-swap-locked {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.les-swap-btn.les-swap-ready {
    background: linear-gradient(135deg, #ff9100, #ff6d00);
    color: #fff;
    border: 1px solid rgba(255, 145, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 145, 0, 0.25);
}

.les-swap-btn.les-swap-ready:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 145, 0, 0.4);
}

.les-swap-menu {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255, 145, 0, 0.3);
    border-radius: 10px;
    padding: 0.4rem;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: swapMenuIn 0.2s ease;
}

.les-swap-menu.les-hidden {
    display: none;
}

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

.les-swap-option {
    width: 100%;
    padding: 0.7rem 1rem;
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s;
}

.les-swap-option:hover {
    background: rgba(255, 145, 0, 0.15);
}

.les-swap-option i {
    color: #ff9100;
    width: 1.2rem;
    text-align: center;
}

@keyframes earnPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ========================================
   EARN MODE – Player Button Override
   ======================================== */

.btn-hero-play.earn-mode {
    background-color: #ff9100 !important;
    box-shadow: 0 0 25px rgba(255, 145, 0, 0.5) !important;
}

.btn-hero-play.earn-mode::after {
    border-color: #ff9100 !important;
}

.btn-hero-play.earn-mode i {
    color: #fff !important;
}

.btn-live.earn-mode {
    background: linear-gradient(135deg, #ff9100, #ffab40) !important;
    color: #fff !important;
    box-shadow: 0 2px 12px rgba(255, 145, 0, 0.35) !important;
}

.btn-live.earn-mode::before {
    border-color: rgba(255, 145, 0, 0.5);
}

/* ========================================
   ANTI-CHEAT MODAL
   ======================================== */

.anticheat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.anticheat-modal.anticheat-hidden {
    display: none;
}

.anticheat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.anticheat-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #013C32 0%, #015248 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(252, 252, 0, 0.15);
    animation: slideUp 0.4s ease;
}

.anticheat-icon {
    width: 80px;
    height: 80px;
    background: rgba(252, 252, 0, 0.15);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: earnPulse 1.5s infinite;
}

.anticheat-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.anticheat-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.anticheat-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.anticheat-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.anticheat-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 252, 0, 0.4);
}

.anticheat-btn:disabled,
.anticheat-btn.anticheat-btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.anticheat-timer {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b6b;
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   LISTEN EARN SWAP – Responsive
   ======================================== */

@media (max-width: 768px) {
    .les-dashboard {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 15px;
    }

    .user-email {
        max-width: 120px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .les-dashboard {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 10px;
        border-radius: 12px;
    }

    .les-stat {
        padding: 0.6rem 0.75rem;
    }

    .les-stat-value {
        font-size: 1rem;
    }

    .user-email {
        max-width: 90px;
        font-size: 0.7rem;
    }
}
