/* ==========================================================================
   Mount Everest Television - Premium Style Sheet
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --bg-dark: #070913;
    --bg-card: rgba(15, 20, 42, 0.65);
    --bg-card-hover: rgba(22, 29, 61, 0.8);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 210, 255, 0.25);
    
    --color-primary: #0012ea;       /* Royal Blue */
    --color-secondary: #00b4d8;     /* Neon Blue/Cyan */
    --color-accent: #e5b85a;        /* Sunset Gold */
    --color-live: #ff4757;          /* Blinking Red */
    
    --text-white: #ffffff;
    --text-light: #f1f3f9;
    --text-muted: #a0aec0;
    --text-dark: #1a202c;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Mukta', sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

/* Utilities & Common Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow), var(--shadow-premium);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 18, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 18, 234, 0.6), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Blinking Live Effect */
.live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-live);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.2s infinite alternate;
}

.live-dot-static {
    width: 12px;
    height: 12px;
    background-color: var(--color-live);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-live);
    animation: pulse-ring 1.5s infinite;
}

/* Top Bar Styling */
.top-bar {
    background: rgba(3, 4, 10, 0.8);
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.top-info i {
    color: var(--color-secondary);
    margin-right: 6px;
}

.top-socials {
    display: flex;
    gap: 16px;
}

.top-socials a:hover {
    color: var(--color-secondary);
}

/* Header Navigation Styling */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 9, 19, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--text-white), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-accent);
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Popup */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 12, 22, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-light);
    z-index: 1000;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.mobile-link:hover {
    color: var(--color-secondary);
    padding-left: 8px;
}

.mobile-menu-socials {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.mobile-menu-socials p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.mobile-menu-socials .social-icons {
    display: flex;
    gap: 16px;
}

.mobile-menu-socials .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.mobile-menu-socials .social-icons a:hover {
    background: var(--color-secondary);
    color: var(--text-white);
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    padding: 180px 0 140px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; /* Hide video overflow */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45; /* Blends nicely with the dark background */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7, 9, 19, 0.8) 40%, rgba(7, 9, 19, 0.45) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-live);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 36px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(10, 13, 28, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 216, 0.2);
    background: rgba(10, 13, 28, 0.7);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Video Player Section */
.player-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.player-container {
    padding: 20px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe, .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.player-details {
    padding-top: 20px;
}

.player-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.player-title-row h3 {
    font-size: 1.5rem;
}

.stream-badge {
    background: rgba(0, 180, 216, 0.12);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--color-secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.player-desc-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.player-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    font-size: 0.9rem;
}

.viewer-count {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.viewer-count i {
    color: var(--color-live);
    animation: blink 1.2s infinite alternate;
}

.player-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-share a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.player-share a:hover {
    background: var(--color-secondary);
    color: var(--text-white);
}

/* Playlist Sidebar Styling */
.playlist-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    max-height: 560px;
}

.playlist-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playlist-header h3 {
    font-size: 1.25rem;
}

.playlist-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.playlist-items {
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 6px;
}

.playlist-items::-webkit-scrollbar {
    width: 6px;
}

.playlist-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.playlist-items::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

.playlist-item {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.playlist-item:hover, .playlist-item.active {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.15);
}

.item-thumb {
    width: 80px;
    height: 50px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 6px;
    font-size: 0.8rem;
}

.playlist-item:hover .play-overlay, .playlist-item.active .play-overlay {
    opacity: 1;
}

.item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
}

.item-info h4 {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.item-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
}

.playlist-item.active .item-tag {
    color: var(--color-secondary);
}

/* Program Schedule Section Styling */
.schedule-section {
    background: linear-gradient(180deg, var(--bg-dark), rgba(0, 18, 234, 0.03));
}

.day-tabs-container {
    overflow-x: auto;
    margin-bottom: 40px;
    padding-bottom: 8px;
}

.day-tabs-container::-webkit-scrollbar {
    height: 4px;
}

.day-tabs-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.day-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    min-width: max-content;
    margin: 0 auto;
}

.day-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.day-tab:hover, .day-tab.active {
    background: var(--color-primary);
    color: var(--text-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 18, 234, 0.3);
}

.schedule-list-wrapper {
    padding: 12px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1.5fr 3.5fr 1fr;
    align-items: center;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.schedule-row:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.schedule-row.now-playing {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.25);
    box-shadow: inset 0 0 15px rgba(0, 180, 216, 0.05);
}

.show-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-secondary);
}

.show-time i {
    font-size: 0.95rem;
}

.show-details h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.show-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.show-category {
    text-align: right;
}

.show-tag {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

.show-tag.news {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
    color: #3498db;
}

.show-tag.talk-show {
    background: rgba(155, 89, 182, 0.15);
    border-color: rgba(155, 89, 182, 0.3);
    color: #9b59b6;
}

.show-tag.comedy {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.show-tag.culture {
    background: rgba(241, 196, 15, 0.15);
    border-color: rgba(241, 196, 15, 0.3);
    color: #f1c40f;
}

.show-tag.live-badge-now {
    background: var(--color-live);
    border-color: var(--color-live);
    color: var(--text-white);
    animation: blink 1s infinite alternate;
}

/* News Section Styling */
.news-section {
    background: var(--bg-dark);
}

.news-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-secondary);
    color: var(--text-dark);
    border-color: var(--color-secondary);
    font-weight: 600;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.news-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.news-card-tag.news { background: #3498db; color: #fff; }
.news-card-tag.ethnographic { background: #f1c40f; color: #000; }
.news-card-tag.diaspora { background: #e67e22; color: #fff; }
.news-card-tag.entertainment { background: #2ecc71; color: #fff; }

.news-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-meta i {
    margin-right: 4px;
}

.news-card-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.news-card:hover h3 {
    color: var(--color-secondary);
}

.news-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
    align-self: flex-start;
    transition: var(--transition-smooth);
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--text-white);
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 24px;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    padding: 40px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-bounce);
}

.modal-backdrop.open .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--color-live);
    color: var(--text-white);
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-meta {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.modal-img {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 24px;
}

.modal-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.modal-desc p {
    margin-bottom: 16px;
}

/* About Us Section Styling */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark), rgba(0, 18, 234, 0.02));
    border-top: 1px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-white) 40%, var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image-card {
    padding: 16px;
}

.about-img-frame {
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.overlay-grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 9, 19, 0.95) 0%, rgba(7, 9, 19, 0.3) 100%);
    z-index: 1;
}

.frame-content {
    position: relative;
    z-index: 2;
}

.about-brand-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.frame-content h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.frame-content p {
    color: var(--color-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Contact Us Section Styling */
.contact-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-panel {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input, select, textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-white);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.1);
}

select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

textarea {
    resize: none;
}

.status-msg {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.status-msg.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.status-msg.error {
    display: block;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* Footer Section Styling */
.main-footer {
    background: #04060f;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col .logo-area {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.footer-brand-col .social-icons {
    display: flex;
    gap: 12px;
}

.footer-brand-col .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-brand-col .social-icons a:hover {
    background: var(--color-secondary);
    color: var(--text-white);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-links-col h3, .footer-newsletter-col h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h3::after, .footer-newsletter-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links-col ul a:hover {
    color: var(--color-secondary);
    padding-left: 6px;
}

.footer-newsletter-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding-right: 60px;
}

.newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 48px;
    border-radius: 6px;
    background: var(--color-primary);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--color-secondary);
}

.footer-copyright {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

/* Animations */
@keyframes blink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-bounce {
    animation: bounce 3s infinite ease-in-out;
}

.btn-pulse {
    position: relative;
    overflow: hidden;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .player-grid {
        grid-template-columns: 1fr;
    }
    
    .playlist-container {
        max-height: 400px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-frame {
        height: 360px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .top-bar {
        display: none;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 130px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .schedule-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .show-category {
        text-align: left;
    }
    
    .news-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-copyright-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
