/* ============================================
   RADIO VALQUEIRE - Stylesheet
   Estilo Clube FM
   ============================================ */

/* CSS Variables */
:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --secondary: #2c3e50;
    --secondary-dark: #1a252f;
    --accent: #e74c3c;
    --accent-gold: #f1c40f;
    --text: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg: #f0f2f5;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --max-width: 1400px;
    --topbar-height: 38px;
    --header-height: 110px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--secondary-dark);
    color: var(--text-white);
    font-size: 12px;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.separator {
    color: #555;
}

#weatherInfo i {
    color: var(--accent-gold);
    margin-right: 4px;
}

.temp-display {
    font-weight: 700;
    color: var(--accent-gold);
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 20px 0;
}

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

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

.site-logo {
    height: 90px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text h1 .highlight {
    color: var(--accent-gold);
}

.tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

.breaking-news-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    animation: livePulse 2s infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: var(--secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex: 1;
}

.nav-links li a {
    display: block;
    padding: 14px 18px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--primary);
    color: var(--text-white);
}

.search-box {
    display: flex;
    margin-left: auto;
}

.search-box input {
    padding: 8px 12px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 13px;
    width: 180px;
    outline: none;
}

.search-box button {
    padding: 8px 14px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.breaking-ticker {
    background: var(--accent);
    color: var(--text-white);
    padding: 8px 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: rgba(0,0,0,0.2);
    padding: 4px 14px;
    margin-right: 15px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0 var(--radius) var(--radius) 0;
    flex-shrink: 0;
}

.ticker-label i {
    margin-right: 4px;
}

.ticker-wrap {
    overflow: hidden;
    flex: 1;
}

.ticker-content {
    display: flex;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    padding: 0 50px;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider-section {
    padding: 20px 0;
}

.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.hero-slide {
    min-width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-white);
    text-align: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.hero-slide-content i.hero-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-slide-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-slide-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-slide-cta {
    display: inline-block;
    background: var(--text-white);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

/* ============================================
   MUNDO DA MUSICA
   ============================================ */
.music-world-section {
    margin-bottom: 25px;
}

.music-world-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.music-world-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    gap: 12px;
}

.music-world-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.music-world-img-wrap {
    width: 140px;
    min-width: 140px;
    height: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.music-world-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.music-world-card:hover .music-world-img-wrap img {
    transform: scale(1.08);
}

.music-world-body {
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.music-world-cat {
    display: inline-block;
    background: rgba(230,126,34,0.12);
    color: var(--primary-dark);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    align-self: flex-start;
}

.music-world-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.music-world-time {
    font-size: 11px;
    color: var(--text-light);
}

.music-world-time i {
    color: var(--primary);
    margin-right: 3px;
}

.music-world-card.no-image {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    display: flex;
    align-items: center;
}

.music-world-card.no-image .music-world-cat {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.music-world-card.no-image .music-world-title {
    color: #fff;
}

.music-world-card.no-image .music-world-body {
    padding: 14px;
}

@media (max-width: 768px) {
    .music-world-grid {
        grid-template-columns: 1fr;
    }
}

.hero-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s;
}

.hero-slider-btn:hover {
    opacity: 1;
    background: rgba(0,0,0,0.65);
}

.hero-slider-prev { left: 15px; }
.hero-slider-next { right: 15px; }

.hero-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.hero-slider-dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

/* ============================================
   LIVE PLAYER
   ============================================ */
.live-player-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 100%);
    padding: 20px 0;
}

.live-player-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.live-player-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-player-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    position: relative;
    flex-shrink: 0;
}

.live-pulse-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: liveRing 2s infinite;
}

@keyframes liveRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--text-white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-player-name {
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.live-player-freq {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    max-width: 320px;
    animation: nowPlayingGlow 2s infinite;
}

.now-playing i {
    color: var(--accent-gold);
    animation: musicNote 1s infinite alternate;
}

@keyframes musicNote {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}

@keyframes nowPlayingGlow {
    0%, 100% { background: rgba(255,255,255,0.1); }
    50% { background: rgba(230,126,34,0.2); }
}

#nowPlayingText {
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.now-playing-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    max-width: 240px;
}

.now-playing-mini i {
    color: var(--accent-gold);
    font-size: 11px;
    flex-shrink: 0;
}

#nowPlayingTextMini {
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-player-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.live-play-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.live-play-btn.playing {
    background: #2ecc71;
}

.live-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.live-visualizer span {
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    height: 5px;
    transition: height 0.2s;
}

.live-visualizer.playing span {
    animation: visualizer 0.5s ease-in-out infinite alternate;
}

.live-visualizer.playing span:nth-child(1) { animation-delay: 0s; }
.live-visualizer.playing span:nth-child(2) { animation-delay: 0.05s; }
.live-visualizer.playing span:nth-child(3) { animation-delay: 0.1s; }
.live-visualizer.playing span:nth-child(4) { animation-delay: 0.15s; }
.live-visualizer.playing span:nth-child(5) { animation-delay: 0.2s; }
.live-visualizer.playing span:nth-child(6) { animation-delay: 0.25s; }
.live-visualizer.playing span:nth-child(7) { animation-delay: 0.3s; }
.live-visualizer.playing span:nth-child(8) { animation-delay: 0.35s; }
.live-visualizer.playing span:nth-child(9) { animation-delay: 0.4s; }
.live-visualizer.playing span:nth-child(10) { animation-delay: 0.45s; }

@keyframes visualizer {
    0% { height: 5px; }
    100% { height: 30px; }
}

.live-player-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.live-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
}

.live-volume i {
    font-size: 14px;
}

.live-volume input[type="range"] {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.live-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.live-status {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

/* ============================================
   MAIN CONTENT GRID
   ============================================ */
.main-content {
    padding: 25px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 25px;
}

.content-grid > * {
    min-width: 0;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: var(--primary);
}

/* ============================================
   FEATURED NEWS
   ============================================ */
.featured-news {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: var(--transition);
    cursor: pointer;
}

.featured-news:hover {
    box-shadow: var(--shadow-hover);
}

.featured-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-news:hover .featured-image img {
    transform: scale(1.05);
}

.news-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--text-white);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-light);
}

.news-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.featured-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.featured-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ============================================
   ARTISTS SECTION
   ============================================ */
.artists-section {
    margin-bottom: 25px;
}

.artists-carousel {
    position: relative;
    overflow: hidden;
}

.artists-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
}

.artists-track::-webkit-scrollbar {
    display: none;
}

.artist-card {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin: 0 auto 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.artist-card-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

.carousel-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--text-white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 3;
}

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

.carousel-prev { left: 5px; }
.carousel-next { right: 5px; }

/* ============================================
   MOST PLAYED SECTION
   ============================================ */
.most-played-section {
    margin-bottom: 25px;
}

.most-played-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.most-played-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 10px 12px;
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: var(--transition);
    cursor: pointer;
}

.most-played-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.most-played-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.most-played-num.top3 {
    background: var(--accent-gold);
    color: var(--secondary);
}

.most-played-info {
    overflow: hidden;
}

.most-played-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.most-played-artist {
    font-size: 11px;
    color: var(--text-light);
}

/* ============================================
   NEWS GRID
   ============================================ */
.news-section {
    margin-bottom: 20px;
}

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

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.news-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.news-card-image {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card-body {
    padding: 15px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.news-card-meta i {
    color: var(--primary);
    margin-right: 3px;
}

.news-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-source-tag {
    display: inline-block;
    margin-top: 8px;
    background: rgba(230,126,34,0.1);
    color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.news-source-tag i {
    margin-right: 4px;
    font-size: 10px;
}

/* ============================================
   LOAD MORE
   ============================================ */
.load-more-area {
    text-align: center;
    margin-bottom: 20px;
}

.load-more-btn {
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--primary);
}

.load-more-btn i {
    margin-right: 6px;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    background: var(--secondary);
    padding: 12px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-title i {
    margin-right: 6px;
    color: var(--accent-gold);
}

/* Weather Widget */
.weather-content {
    padding: 20px;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.weather-icon {
    font-size: 48px;
    color: var(--accent-gold);
}

.weather-temp {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
}

.weather-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.weather-detail i {
    display: block;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.weather-detail span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.weather-detail small {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Promo Widget */
.promo-list {
    padding: 10px;
}

.promo-card {
    padding: 12px;
    border-radius: var(--radius);
    color: var(--text-white);
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.promo-card:last-child {
    margin-bottom: 0;
}

.promo-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.promo-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.promo-card p {
    font-size: 12px;
    opacity: 0.9;
}

/* Schedule Widget */
.schedule-list {
    padding: 10px 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.active {
    background: rgba(230,126,34,0.08);
    border-left: 3px solid var(--primary);
}

.schedule-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    min-width: 80px;
}

.schedule-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
}

.schedule-info span {
    font-size: 11px;
    color: var(--text-light);
}

/* Most Read */
.most-read-list {
    padding: 10px 0;
}

.most-read-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.most-read-item:hover {
    background: #f8f9fa;
}

.most-read-item:last-child {
    border-bottom: none;
}

.most-read-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.most-read-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

.most-read-text small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 2px;
}

/* Contact Widget */
.contact-list {
    padding: 10px 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text);
    transition: var(--transition);
}

a.contact-item:hover {
    color: var(--primary);
}

.contact-item i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

.social-links-widget {
    display: flex;
    gap: 8px;
    padding: 0 15px 15px;
}

.social-link-item {
    width: 36px;
    height: 36px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 16px;
    transition: var(--transition);
}

.social-link-item:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--secondary-dark);
    color: rgba(255,255,255,0.7);
    margin-top: 30px;
}

.footer-top {
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-text i {
    font-size: 24px;
    color: var(--primary);
}

.footer-logo-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
}

.footer-logo-text h3 span {
    color: var(--accent-gold);
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-info p {
    font-size: 13px;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 75px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* ============================================
   RADIO FLOAT (Mini Player)
   ============================================ */
.radio-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.radio-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #1a1a2e);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.2s;
}

.radio-float-btn i {
    color: var(--accent-gold);
    animation: radioGlow 2s infinite;
}

@keyframes radioGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(230,126,34,0.5); }
    50% { text-shadow: 0 0 15px rgba(230,126,34,0.8); }
}

.radio-float-btn:hover {
    transform: scale(1.08);
}

.radio-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.4);
    animation: radioPulse 2s infinite;
    z-index: -1;
}

@keyframes radioPulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

.radio-float-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 290px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    padding: 15px;
    display: none;
    text-align: center;
}

.radio-float-panel.open {
    display: block;
    animation: floatIn 0.25s ease;
}

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

.radio-float-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.radio-float-header .radio-name {
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
}

.radio-float-header .radio-status {
    color: var(--text-light);
    font-size: 12px;
}

.radio-float-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--text-light);
    border: none;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.radio-float-close:hover {
    background: var(--primary);
    color: var(--text-white);
}

.radio-float-panel .radio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.radio-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.radio-play-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.radio-volume {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

.radio-volume i {
    font-size: 13px;
}

.radio-volume input[type="range"] {
    width: 70px;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
    outline: none;
}

.radio-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.radio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
    margin-top: 10px;
    justify-content: center;
}

.radio-visualizer span {
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    height: 4px;
    transition: height 0.2s;
}

.radio-visualizer.playing span {
    animation: visualizer 0.5s ease-in-out infinite alternate;
}

.radio-visualizer.playing span:nth-child(1) { animation-delay: 0s; }
.radio-visualizer.playing span:nth-child(2) { animation-delay: 0.1s; }
.radio-visualizer.playing span:nth-child(3) { animation-delay: 0.2s; }
.radio-visualizer.playing span:nth-child(4) { animation-delay: 0.3s; }
.radio-visualizer.playing span:nth-child(5) { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 280px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-player-card {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        z-index: 1000;
        box-shadow: var(--shadow);
    }

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

    .search-box {
        display: none;
    }

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

    .featured-image {
        height: 220px;
    }

    .featured-content h2 {
        font-size: 20px;
    }

    .live-player-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .live-player-left {
        flex-direction: column;
        text-align: center;
    }

    .live-player-right {
        align-items: center;
    }

    .hero-slide {
        height: 220px;
    }

    .hero-slide-content h2 {
        font-size: 24px;
    }

    .hero-slide-content p {
        font-size: 14px;
    }

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

    .logo-text h1 {
        font-size: 22px;
    }

    .site-logo {
        height: 70px;
        max-width: 240px;
    }

    .top-bar {
        font-size: 10px;
    }

    .most-played-list {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .radio-float-panel {
        width: 260px;
        right: -10px;
    }

    .breaking-ticker {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 18px;
    }

    .tagline {
        display: none;
    }

    .featured-content {
        padding: 15px;
    }

    .featured-content h2 {
        font-size: 18px;
    }

    .breaking-news-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .weather-main {
        justify-content: center;
    }

    .weather-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-slide-content h2 {
        font-size: 20px;
    }

    .section-title {
        font-size: 16px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.news-card {
    animation: fadeInUp 0.5s ease-out;
}

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

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius);
}

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

/* No news message */
.no-news {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 15px;
    grid-column: 1 / -1;
}

/* ============================================
   GOOGLE ADSENSE
   ============================================ */
.ad-banner {
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
    text-align: center;
    min-height: 90px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
}

.ad-banner ins {
    display: block;
    width: 100%;
}

.ad-widget .ad-banner,
.sidebar-widget.ad-widget {
    background: transparent;
}

.ad-widget .ad-banner {
    padding: 10px;
}

.content-ad {
    margin: 0 auto 25px;
}
