/* ═══════════════════════════════════════════
   RÁDIO PELOTAS - DESIGN SYSTEM
   Estilo Premium | Glassmorphism | Gold/Cream
   ═══════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ───────────────────────── */
:root {
    --gold: #C5A356;
    --gold-dark: #9B7E3A;
    --gold-light: #E8D5A3;
    --gold-pale: #F5EDDA;
    --cream: #FAF6EE;
    --cream-dark: #F0E8D8;
    --white: #FFFFFF;
    --text-dark: #2D2A24;
    --text-body: #4A4640;
    --text-muted: #8A8278;
    --text-light: #B5ADA2;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-heavy: rgba(255, 255, 255, 0.80);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-blur: blur(15px);
    --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-gold: 0 8px 25px rgba(197,163,86,0.25);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --max-width: 1280px;
    --player-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    padding-bottom: var(--player-height);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
}

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

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

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ── Container ───────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════
   HEADER / NAVIGATION (Sticky Floating Glassmorphism)
   ═══════════════════════════════════════════ */
.header-spacer {
    height: 20px;
}

.main-header {
    position: sticky;
    top: 15px;
    z-index: 1000;
    margin: 0 20px;
    transition: var(--transition);
}

.nav-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 0 24px;
    transition: var(--transition);
}

.main-header.scrolled .nav-wrapper {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-heavy);
}

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

.nav-logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-menu a:hover {
    color: var(--gold-dark);
    background: rgba(197, 163, 86, 0.08);
}

.nav-menu a.active {
    color: var(--gold-dark);
}

.nav-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.nav-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197,163,86,0.35);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════ */
.hero-slider {
    position: relative;
    margin: 30px 20px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 480px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 50px 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

.hero-slide-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 10px;
    max-width: 700px;
    line-height: 1.25;
}

.hero-slide-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
}

.hero-nav:hover {
    background: var(--gold);
    color: var(--white);
}

.hero-nav.prev { left: 20px; }
.hero-nav.next { right: 20px; }

/* ═══════════════════════════════════════════
   MAIN CONTENT LAYOUT (Content + Sidebar)
   ═══════════════════════════════════════════ */
.main-content {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 35px;
    align-items: start;
}

/* ── News Grid ───────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.news-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

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

.news-card-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.news-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
}

.news-card-link:hover {
    color: var(--gold);
}

.news-card-comments {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card-comments:hover {
    color: var(--gold-dark);
}

/* ── Sidebar ─────────────────────────────── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-pale);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: var(--gold);
}

/* On Air Widget */
.on-air-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e53935;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.on-air-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

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

.on-air-info {
    display: flex;
    gap: 14px;
    align-items: center;
}

.on-air-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

.on-air-photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.on-air-details h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.on-air-details p {
    font-size: 13px;
    color: var(--text-muted);
}

.on-air-details .time {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
}

/* Agenda Widget */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.agenda-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gold-pale);
}

.agenda-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.agenda-date-box {
    min-width: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 8px;
    padding: 6px 8px;
    flex-shrink: 0;
}

.agenda-date-box .month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-date-box .day {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.agenda-details h4 {
    font-size: 14px;
    margin-bottom: 2px;
    font-family: var(--font-body);
    font-weight: 600;
}

.agenda-details p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Ad Banners */
.sidebar-ad {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-ad img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-ad.placeholder {
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.sidebar-ad.vertical { min-height: 400px; }
.sidebar-ad.square { min-height: 250px; }

/* ═══════════════════════════════════════════
   SPONSORS CAROUSEL
   ═══════════════════════════════════════════ */
.sponsors-section {
    padding: 50px 0;
    background: var(--cream-dark);
    margin-top: 40px;
}

.sponsors-track-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.sponsors-track {
    display: flex;
    gap: 50px;
    animation: scroll-sponsors 25s linear infinite;
    width: max-content;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-sponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsor-item {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.sponsor-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.sponsor-item img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
}

.sponsor-placeholder {
    height: 50px;
    padding: 0 25px;
    background: rgba(197,163,86,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   SOCIAL MEDIA MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--glass-bg-heavy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-heavy);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover { color: var(--text-dark); }

.modal-content { position: relative; }

.modal-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px);
}

.social-link i {
    font-size: 32px;
}

.social-link span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.social-link.facebook { background: rgba(24,119,242,0.1); color: #1877F2; }
.social-link.facebook:hover { background: rgba(24,119,242,0.2); }
.social-link.instagram { background: rgba(225,48,108,0.1); color: #E1306C; }
.social-link.instagram:hover { background: rgba(225,48,108,0.2); }
.social-link.youtube { background: rgba(255,0,0,0.1); color: #FF0000; }
.social-link.youtube:hover { background: rgba(255,0,0,0.2); }

/* ═══════════════════════════════════════════
   STICKY PLAYER (Bottom)
   ═══════════════════════════════════════════ */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.06);
    height: var(--player-height);
}

.player-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.player-logo-sm {
    height: 65px;
    width: auto;
    flex-shrink: 0;
}

.player-text {
    min-width: 0;
}

.player-station {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-now-playing {
    font-size: 13px;
    color: var(--text-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

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

.player-btn:hover {
    background: rgba(197,163,86,0.12);
    color: var(--gold-dark);
}

.player-btn.play-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 18px;
    box-shadow: var(--shadow-gold);
}

.player-btn.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(197,163,86,0.35);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.player-volume i {
    color: var(--text-muted);
    font-size: 14px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    background: var(--gold-pale);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(197,163,86,0.4);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.player-platforms {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
    border-left: 1px solid var(--gold-pale);
    flex-shrink: 0;
}

.player-platform-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 3px 8px;
    border: 1px solid var(--gold-pale);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   NOTÍCIA INDIVIDUAL PAGE
   ═══════════════════════════════════════════ */
.article-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.article-back:hover { gap: 10px; }

.article-hero-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-meta i { color: var(--gold); }

.article-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
}

.article-content p { margin-bottom: 18px; }
.article-content img { border-radius: var(--radius); margin: 20px 0; }

/* Comments */
.comments-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--gold-pale);
}

.comment-form {
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 30px;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gold-pale);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    background: rgba(255,255,255,0.6);
    transition: border-color 0.3s;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,163,86,0.12);
}

.comment-form textarea { min-height: 100px; }

.btn-gold {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

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

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--gold-pale);
}

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

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.comment-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.comment-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.main-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    margin-bottom: var(--player-height);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(1.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 2px;
    width: 16px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════
   NEWS PLACEHOLDER IMAGES
   ═══════════════════════════════════════════ */
.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 40px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --player-height: 64px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }

    .main-header {
        margin: 0 10px;
        top: 10px;
    }

    .nav-wrapper {
        padding: 0 16px;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: var(--glass-bg-heavy);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius);
        padding: 12px;
        flex-direction: column;
        gap: 2px;
        box-shadow: var(--shadow-medium);
        display: none;
    }

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

    .nav-menu a {
        padding: 12px 16px;
        width: 100%;
        border-radius: 8px;
    }

    .nav-social-btn span {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-slider {
        height: 320px;
        margin: 20px 10px;
    }

    .hero-slide-title {
        font-size: 1.4rem;
    }

    .hero-slide-overlay {
        padding: 40px 24px 24px;
    }

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

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

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

    /* Player mobile */
    .player-now-playing {
        max-width: 140px;
    }

    .player-volume,
    .player-platforms {
        display: none;
    }

    .player-btn.play-btn {
        width: 42px;
        height: 42px;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .player-logo-sm { display: none; }
    .player-station { font-size: 10px; }
    .player-now-playing { max-width: 110px; font-size: 12px; }
}

/* ═══════════════════════════════════════════
   UTILITY & ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.skeleton {
    background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

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

/* No-results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results i {
    font-size: 48px;
    color: var(--gold-light);
    margin-bottom: 20px;
}
