/* ==========================================================================
   Mount Everest TV Companion - Scoped Public Stylesheet
   ========================================================================== */

.mteverest-tv-wrap {
    /* Design Tokens */
    --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);

    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    box-sizing: border-box;
}

/* Scoped Element Resets */
.mteverest-tv-wrap *, 
.mteverest-tv-wrap *::before, 
.mteverest-tv-wrap *::after {
    box-sizing: border-box;
}

.mteverest-tv-wrap h2, 
.mteverest-tv-wrap h3, 
.mteverest-tv-wrap h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
}

.mteverest-tv-wrap p {
    margin: 0 0 16px 0;
}

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

.mteverest-tv-wrap button {
    font-family: inherit;
}

/* Glassmorphism Card System */
.mteverest-tv-wrap .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);
}

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

/* Blinking Animation Classes */
@keyframes mteverest-blink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes mteverest-pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.mteverest-tv-wrap .live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-live);
    border-radius: 50%;
    display: inline-block;
    animation: mteverest-blink 1.2s infinite alternate;
}

.mteverest-tv-wrap .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: mteverest-pulse-ring 1.5s infinite;
}

/* Video Player Layout Styles */
.mteverest-tv-wrap .player-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 40px;
}

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

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

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

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

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

.mteverest-tv-wrap .player-title-row h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.mteverest-tv-wrap .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;
}

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

.mteverest-tv-wrap .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;
}

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

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

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

.mteverest-tv-wrap .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;
}

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

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

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

.mteverest-tv-wrap .playlist-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

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

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

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

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

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

.mteverest-tv-wrap .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;
}

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

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

.mteverest-tv-wrap .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;
}

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

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

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

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

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

/* Weekly Program Schedule Styles */
.mteverest-tv-wrap .day-tabs-container {
    overflow-x: auto;
    margin-bottom: 30px;
    padding-bottom: 8px;
}

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

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

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

.mteverest-tv-wrap .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);
}

.mteverest-tv-wrap .day-tab:hover, 
.mteverest-tv-wrap .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);
}

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

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

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

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

.mteverest-tv-wrap .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);
}

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

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

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

.mteverest-tv-wrap .show-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.mteverest-tv-wrap .show-category {
    text-align: right;
}

.mteverest-tv-wrap .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);
}

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

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

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

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

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

/* News / Media Grid Section Styles */
.mteverest-tv-wrap .section-header-filters {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

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

.mteverest-tv-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);
}

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

.mteverest-tv-wrap .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

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

.mteverest-tv-wrap .news-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.mteverest-tv-wrap .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;
}

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

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

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

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

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

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

.mteverest-tv-wrap .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;
}

.mteverest-tv-wrap .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);
}

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

/* Modals Box Styling */
.mteverest-tv-wrap .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: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 24px;
}

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

.mteverest-tv-wrap .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);
}

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

.mteverest-tv-wrap .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);
}

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

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

.mteverest-tv-wrap .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;
}

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

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

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

/* Floating Live Radio Widget Styling */
.mteverest-tv-wrap .radio-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mteverest-tv-wrap .radio-toggle-btn {
    background: linear-gradient(135deg, rgba(7, 9, 19, 0.95), rgba(15, 20, 42, 0.95));
    border: 1.5px solid var(--border-glow);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-glow), var(--shadow-premium);
    transition: var(--transition-bounce);
    font-size: 0.95rem;
}

.mteverest-tv-wrap .radio-toggle-btn:hover {
    transform: translateY(-3px);
    border-color: var(--color-secondary);
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.4), var(--shadow-premium);
}

.mteverest-tv-wrap .radio-player-card {
    width: 350px;
    background: rgba(10, 15, 33, 0.96);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    box-shadow: var(--shadow-glow), var(--shadow-premium);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-bounce);
}

.mteverest-tv-wrap .radio-widget.collapsed .radio-toggle-btn {
    display: flex;
}

.mteverest-tv-wrap .radio-widget.collapsed .radio-player-card {
    display: none;
}

.mteverest-tv-wrap .radio-widget:not(.collapsed) .radio-toggle-btn {
    display: none;
}

.mteverest-tv-wrap .radio-widget:not(.collapsed) .radio-player-card {
    display: flex;
}

.mteverest-tv-wrap .radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.mteverest-tv-wrap .radio-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-live);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.mteverest-tv-wrap .radio-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.mteverest-tv-wrap .radio-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.mteverest-tv-wrap .radio-close-btn:hover {
    color: var(--text-white);
}

.mteverest-tv-wrap .radio-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mteverest-tv-wrap .radio-track-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mteverest-tv-wrap .track-text {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.mteverest-tv-wrap .track-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.mteverest-tv-wrap .track-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* Equalizer Bouncing Bars Visualizer */
.mteverest-tv-wrap .radio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    padding-bottom: 2px;
}

.mteverest-tv-wrap .radio-visualizer .bar {
    width: 4px;
    height: 6px;
    background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    transition: height 0.15s ease;
}

@keyframes mteverest-bounce-bar {
    0% { height: 4px; }
    100% { height: 28px; }
}

.mteverest-tv-wrap .radio-visualizer.playing .bar {
    animation: mteverest-bounce-bar 0.5s ease infinite alternate;
}

.mteverest-tv-wrap .radio-visualizer.playing .bar:nth-child(1) { animation-duration: 0.55s; animation-delay: 0.1s; }
.mteverest-tv-wrap .radio-visualizer.playing .bar:nth-child(2) { animation-duration: 0.4s; animation-delay: 0.3s; }
.mteverest-tv-wrap .radio-visualizer.playing .bar:nth-child(3) { animation-duration: 0.65s; animation-delay: 0.0s; }
.mteverest-tv-wrap .radio-visualizer.playing .bar:nth-child(4) { animation-duration: 0.45s; animation-delay: 0.2s; }
.mteverest-tv-wrap .radio-visualizer.playing .bar:nth-child(5) { animation-duration: 0.5s; animation-delay: 0.4s; }

.mteverest-tv-wrap .radio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mteverest-tv-wrap .radio-mute-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 50px;
    color: var(--text-white);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 18, 234, 0.2);
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.mteverest-tv-wrap .radio-mute-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 18, 234, 0.4), var(--shadow-glow);
}

.mteverest-tv-wrap .radio-mute-btn.muted {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    box-shadow: none;
}

.mteverest-tv-wrap .radio-mute-btn.muted:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.mteverest-tv-wrap .radio-volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    max-width: 140px;
}

.mteverest-tv-wrap .radio-volume-container i {
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.mteverest-tv-wrap .radio-volume-slider {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    outline: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.mteverest-tv-wrap .radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-secondary);
    cursor: pointer;
    box-shadow: 0 0 5px var(--color-secondary);
    transition: var(--transition-smooth);
}

.mteverest-tv-wrap .radio-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--text-white);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .mteverest-tv-wrap .player-grid {
        grid-template-columns: 1fr;
    }
    
    .mteverest-tv-wrap .playlist-container {
        max-height: 400px;
    }
    
    .mteverest-tv-wrap .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mteverest-tv-wrap .schedule-row {
        grid-template-columns: 1.2fr 2fr 1fr;
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {
    .mteverest-tv-wrap .news-grid {
        grid-template-columns: 1fr;
    }
    
    .mteverest-tv-wrap .schedule-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .mteverest-tv-wrap .show-category {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .mteverest-tv-wrap .radio-widget {
        bottom: 16px;
        right: 16px;
        left: 16px;
        align-items: stretch;
        width: auto;
    }
    
    .mteverest-tv-wrap .radio-player-card {
        width: 100%;
    }
}
