/* ============================================
   VILA VALQUEIRE NEWS - Stylesheet
   JSMuniz Publicidade
   ============================================ */

/* CSS Variables */
:root {
    --primary: #c0392b;
    --primary-dark: #96281b;
    --secondary: #2c3e50;
    --secondary-dark: #1a252f;
    --accent: #e74c3c;
    --accent-gold: #f39c12;
    --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: 1280px;
    --nav-height: 50px;
    --topbar-height: 38px;
    --header-height: 80px;
}

/* 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: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 15px 0;
    position: relative;
}

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

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

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

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    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 16px;
    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);
}

/* ============================================
   AD BANNERS
   ============================================ */
.ad-banner {
    text-align: center;
    padding: 10px 0;
}

.ad-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ad-container {
    background: var(--bg-white);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ad-top {
    min-height: 90px;
    max-width: 728px;
    margin: 0 auto;
}

.ad-fallback {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.ad-fallback-content {
    text-align: center;
}

.ad-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-white);
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ad-fallback-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 3px 0;
}

.ad-contact {
    color: var(--primary) !important;
    font-weight: 700;
}

.ad-fallback-content.compact p {
    font-size: 12px;
    margin: 2px 0;
}

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

.radio-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.radio-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    animation: radioGlow 2s infinite;
}

@keyframes radioGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(192,57,43,0.5); }
    50% { box-shadow: 0 0 15px rgba(192,57,43,0.8); }
}

.radio-details {
    display: flex;
    flex-direction: column;
}

.radio-name {
    color: var(--text-white);
    font-weight: 700;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

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

.radio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-play-btn {
    width: 42px;
    height: 42px;
    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: 8px;
    color: rgba(255,255,255,0.7);
}

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

#volumeSlider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

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

.radio-visualizer span {
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    height: 5px;
    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; }

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

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

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

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

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

.featured-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 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;
}

/* ============================================
   INLINE AD BANNER
   ============================================ */
.inline-banner {
    margin-bottom: 20px;
}

.inline-banner .ad-container {
    min-height: 60px;
    max-width: 468px;
    margin: 0 auto;
}

/* ============================================
   NEWS GRID
   ============================================ */
.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, #667eea 0%, #764ba2 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(41,128,185,0.12);
    color: #2980b9;
    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;
}

/* 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;
}

/* Sidebar Ad */
.ad-sidebar {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-sidebar-fallback {
    text-align: center;
    padding: 30px 15px;
}

.ad-sidebar-fallback p {
    font-size: 13px;
    color: var(--text-light);
    margin: 5px 0;
}

/* Sponsors */
.sponsors-list {
    padding: 10px;
}

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

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

.sponsor-logo {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.sponsor-info strong {
    display: block;
    font-size: 13px;
    color: var(--secondary);
}

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

.sponsor-placeholder {
    justify-content: center;
    text-align: center;
}

.sponsor-placeholder p {
    font-size: 13px;
    color: var(--text-light);
}

.sponsor-placeholder a {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   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 i {
    font-size: 28px;
    color: var(--primary);
}

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

.footer-logo 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);
}

.footer-bottom strong {
    color: var(--accent-gold);
}

/* ============================================
   STICKY BOTTOM AD
   ============================================ */
.sticky-bottom-ad {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 5px 15px;
    z-index: 999;
    border-radius: var(--radius) var(--radius) 0 0;
    text-align: center;
}

.sticky-bottom-ad .ad-label {
    margin-bottom: 3px;
}

.close-sticky {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #333;
    color: white;
    border: none;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* ============================================
   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);
}

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

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

@media (max-width: 768px) {
    :root {
        --header-height: auto;
    }

    .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;
    }

    .radio-player {
        flex-direction: column;
        gap: 10px;
    }

    .radio-controls {
        width: 100%;
        justify-content: center;
    }

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

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

    .site-logo {
        height: 44px;
        max-width: 190px;
    }

    .ad-top {
        max-width: 100%;
    }

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

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

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

    .sticky-bottom-ad .ad-container {
        max-width: 320px;
    }
}

@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;
    }
}

/* ============================================
   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; }
}

/* Breaking news ticker */
.breaking-ticker {
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
}

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

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

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