* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Earth Tone Palette */
    --primary-brown: #8B4513;
    --light-brown: #D2B48C;
    --sage-green: #9CAF88;
    --forest-green: #4F6741;
    --warm-grey: #6B6B6B;
    --light-grey: #F5F5F5;
    --dark-grey: #2C2C2C;
    --white: #FFFFFF;
    --accent-beige: #F4F1E8;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --border-color: #E8E8E8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background-color: var(--light-grey);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    padding-bottom: 70px; /* Space for fixed player */
    min-height: 100vh;
    overflow-x: hidden;
}

/* iOS/Safari Image Optimization */
img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav {
    padding: 0 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    letter-spacing: -0.5px;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--warm-grey);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-brown);
}

.nav-link.active {
    color: var(--primary-brown);
    border-bottom-color: var(--primary-brown);
}

.listen-btn, .hero-listen-btn, .footer-listen-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(79, 103, 65, 0.4);
}

.listen-btn:hover, .hero-listen-btn:hover, .footer-listen-btn:hover {
    background: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 103, 65, 0.6);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-brown);
    background: none;
    border: none;
    padding: 0.5rem;
}

/* Mobile Menu Functionality */
.nav-menu.mobile-active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 1.5rem;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: var(--accent-beige) url('pics/ibiza-vida-header.jpeg') center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Now Playing Section */
.now-playing {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.on-air-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
}

.current-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: transparent;
    border-radius: 8px;
    min-height: 120px;
}

.track-artwork img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    /* iOS Safari optimization */
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    will-change: opacity;
}

.track-details {
    flex: 1;
}

.listeners {
    color: var(--warm-grey);
    font-size: 0.8rem;
    font-weight: 500;
}

.track-details h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.track-details p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.track-info-extra {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.track-info-extra span {
    color: var(--warm-grey);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.show-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.current-show, .next-show {
    text-align: left;
}

.next-show .status {
    background: var(--sage-green);
}

.show-info h3 {
    color: var(--dark-grey);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.show-info p {
    color: var(--warm-grey);
    font-size: 0.9rem;
}

/* Hero Listen Button */
.hero-listen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-listen-btn {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 12px;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-grey);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Recently Played */
.recently-played {
    background: var(--white);
}

.playlist {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.track {
    display: flex;
    align-items: center;
    background: var(--light-grey);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--sage-green);
    transition: all 0.2s ease;
    gap: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.track:hover {
    background: var(--accent-beige);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.track .time {
    color: var(--primary-brown);
    font-weight: 600;
    min-width: 60px;
    font-size: 0.9rem;
    text-align: center;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-info h4 {
    color: var(--dark-grey);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.track-info p {
    color: var(--warm-grey);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.playlist-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--warm-grey);
    font-style: italic;
}

.playlist-empty p {
    font-size: 1rem;
    margin: 0;
}

.full-playlist-link {
    display: inline-block;
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-brown);
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    display: block;
}

.full-playlist-link:hover {
    background: var(--primary-brown);
    color: var(--white);
}

/* News Page Header Styles - Flat Design */
.page-header {
    text-align: center;
    padding: 4rem 0 3rem 0;
    background: var(--white);
    margin-top: 70px; /* Account for fixed header */
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--warm-grey);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-stats {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--warm-grey);
    background: var(--light-grey);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.separator {
    color: var(--warm-grey);
    font-weight: bold;
    margin: 0 0.5rem;
}

.mode-indicator {
    color: var(--forest-green);
    font-weight: 500;
}

/* News Section - Flat Design */
.news-section {
    padding: 2rem 0 4rem 0;
    background: var(--white);
}

/* News Page Main Content */
.main-content {
    background: var(--white);
    min-height: calc(100vh - 70px);
}

/* News Grid - Clean Flat Design */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* News Items - Flat Cards */
.news-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
}

.news-item:hover {
    border-color: var(--forest-green);
    cursor: pointer;
}

.news-date {
    color: var(--warm-grey);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content-with-image {
    position: relative;
}

.news-inline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.news-image-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.image-credit-below {
    margin-bottom: 1rem;
    padding: 0.25rem 0;
    font-size: 0.7rem;
    line-height: 1.3;
    color: var(--warm-grey);
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

.image-caption {
    display: block;
    font-style: italic;
    color: var(--warm-grey);
    margin-bottom: 0.25rem;
    font-weight: 400;
    font-size: 0.7rem;
}

.photographer {
    display: block;
    font-weight: 400;
    color: var(--warm-grey);
    font-size: 0.65rem;
    opacity: 0.8;
}

.news-category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-item h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Load More Section - Flat */
.load-more-section {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.load-more-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

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

/* Loading States - Flat */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-container p {
    margin-top: 1rem;
    color: var(--warm-grey);
    font-size: 1.1rem;
}

.error-container {
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
}

.error-content {
    text-align: center;
    background: var(--light-grey);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
}

.error-content h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-content p {
    color: var(--warm-grey);
    margin-bottom: 1.5rem;
}

.retry-btn, .back-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.retry-btn:hover, .back-btn:hover {
    background: var(--sage-green);
}

/* Notification System - Flat */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background: var(--dark-grey);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    z-index: 1002;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: var(--forest-green);
}

.notification-error {
    background: #e74c3c;
}

.notification-warning {
    background: #f39c12;
}

.notification-info {
    background: var(--dark-grey);
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--light-brown);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.footer-info svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--light-brown);
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--light-brown);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.2s ease;
    border-radius: 6px;
    width: 40px;
    height: 40px;
}

.social-link:hover {
    color: var(--light-brown);
    transform: translateX(5px);
}

.social-link:hover svg {
    color: var(--light-brown);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--white);
    stroke: var(--white);
    transition: all 0.2s ease;
}

.social-link:hover svg {
    color: var(--light-brown);
    stroke: var(--light-brown);
}

.social-link svg path,
.social-link svg rect,
.social-link svg line {
    transition: stroke 0.2s ease;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Fixed Player Bar */
.fixed-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-grey);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    visibility: visible;
    opacity: 1;
}

.fixed-player.visible,
.fixed-player.show {
    transform: translateY(0);
}

.player-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    max-width: 400px;
}

.player-artwork {
    flex-shrink: 0;
}

.player-artwork img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    /* iOS Safari optimization */
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    will-change: opacity;
}

.player-details {
    min-width: 0;
    flex: 1;
}

.player-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.player-artist {
    color: var(--light-brown);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

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

.player-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.player-btn:hover {
    background: var(--sage-green);
    transform: scale(1.05);
}

.player-btn:active {
    transform: scale(0.95);
}

.player-btn svg {
    width: 20px;
    height: 20px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.volume-icon {
    color: var(--white);
    flex-shrink: 0;
}

.volume-slider {
    width: 100px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--sage-green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: var(--forest-green);
    transform: scale(1.1);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--sage-green);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.player-status {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.live-indicator {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: liveColorChange 2s infinite;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: redBlurSmall 1.5s infinite;
    margin-right: 0.25rem;
}

.live-indicator svg {
    display: none;
}

@keyframes redBlurSmall {
    0%, 100% { 
        box-shadow: 0 0 1px #ff0000;
    }
    50% { 
        box-shadow: 0 0 4px #ff0000, 0 0 6px #ff0000;
    }
}

@keyframes liveColorChange {
    0%, 100% { 
        color: var(--white);
        fill: var(--white);
    }
    50% { 
        color: var(--forest-green);
        fill: var(--forest-green);
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Mobile Player Adjustments */
@media (max-width: 768px) {
    body {
        padding-bottom: 65px; /* Adjust for smaller mobile player */
    }
    
    .fixed-player {
        padding: 0.75rem;
        height: 65px;
        bottom: 0;
        position: fixed;
        z-index: 1001;
        left: 0;
        right: 0;
        width: 100%;
        display: flex !important;
        background: var(--dark-grey);
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    
    .player-container {
        gap: 1rem;
    }
    
    .volume-control {
        display: none;
    }
    
    .player-track-info {
        gap: 0.75rem;
        max-width: 250px;
    }
    
    .player-artwork img {
        width: 44px;
        height: 44px;
    }
    
    .player-btn {
        width: 44px;
        height: 44px;
    }
    
    .player-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .player-title {
        font-size: 0.85rem;
    }
    
    .player-artist {
        font-size: 0.75rem;
    }
    
    .live-indicator {
        font-size: 0.75rem;
    }
    
    .player-status {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 60px; /* Adjust for smallest mobile player */
    }
    
    .fixed-player {
        padding: 0.5rem;
        height: 60px;
        bottom: 0;
        position: fixed;
        z-index: 1001;
        left: 0;
        right: 0;
        width: 100%;
        display: flex !important;
        background: var(--dark-grey);
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    
    .player-container {
        gap: 0.75rem;
    }
    
    .player-track-info {
        max-width: 180px;
        gap: 0.5rem;
    }
    
    .player-artwork img {
        width: 40px;
        height: 40px;
    }
    
    .player-btn {
        width: 40px;
        height: 40px;
    }
    
    .player-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .player-title {
        font-size: 0.8rem;
    }
    
    .player-artist {
        font-size: 0.7rem;
    }
    
    .live-indicator span {
        display: none; /* Hide LIVE text on very small screens */
    }
}

/* Page-specific Styles */
.page-hero {
    background: var(--accent-beige);
    padding: 4rem 0;
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: 2.8rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--warm-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* How to Listen Page Styles */
.listening-section {
    padding: 4rem 0;
    background: var(--white);
}

.listening-method {
    margin-bottom: 4rem;
}

.listening-method h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--dark-grey);
    font-weight: 600;
}

.listening-method > p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.online-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.option-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.option-card.featured {
    border: 2px solid var(--primary-brown);
    background: var(--accent-beige);
}

.option-card:hover {
    background: var(--accent-beige);
}

.option-card h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.option-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.option-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-btn:hover {
    background: var(--sage-green);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    color: var(--warm-grey);
    font-size: 0.9rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
}

.app-btn:hover {
    background: var(--light-grey);
}

.frequency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.frequency-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.frequency-card h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-weight: 600;
}

.frequency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.frequency-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.signal-strength {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.strength-bar {
    width: 8px;
    height: 20px;
    background: rgba(159, 175, 136, 0.3);
    border-radius: 2px;
}

.strength-bar.active {
    background: var(--sage-green);
}

.smart-devices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.device-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.device-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.device-card h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-weight: 600;
}

.device-card p {
    color: var(--text-dark);
    line-height: 1.5;
}

.listening-tips, .tech-specs {
    margin-top: 4rem;
}

.tips-grid, .specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--sage-green);
}

.tip-card h3 {
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-dark);
}

.spec-item {
    background: var(--light-grey);
    padding: 1rem;
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.spec-item strong {
    color: var(--primary-brown);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-info > p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 8px;
    border-left: 4px solid var(--sage-green);
}

.method-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.method-details h3 {
    color: var(--dark-grey);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.method-details p {
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.method-details span {
    color: var(--warm-grey);
    font-size: 0.85rem;
}

.social-media h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: transparent;
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--accent-beige);
    transform: translateX(5px);
}

.contact-form-container {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    color: var(--dark-grey);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.2s ease;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--sage-green);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    display: none;
}

.success-message {
    color: var(--forest-green);
    padding: 1rem;
    background: rgba(159, 175, 136, 0.1);
    border-radius: 4px;
    border: 1px solid var(--sage-green);
    font-size: 0.9rem;
}

.additional-info {
    margin: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--primary-brown);
}

.info-card h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.9rem;
}

.station-hours {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.station-hours h2 {
    color: var(--dark-grey);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.hour-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.hour-item strong {
    color: var(--primary-brown);
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .show-info, .current-track {
        grid-template-columns: 1fr;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .track-artwork img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .nav-container {
        padding: 0.75rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .online-options,
    .frequency-grid,
    .smart-devices,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .news-item {
        padding: 1rem;
    }
    
    .news-inline-image {
        width: 80px;
        height: 60px;
        margin: 0 0.6rem 0.5rem 0;
    }
    
    .news-item h3 {
        font-size: 1.1rem;
    }
    
    .track {
        gap: 1rem;
        padding: 0.75rem;
    }
    
    .track .time {
        min-width: 55px;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .track-info h4 {
        font-size: 1rem;
    }
    
    .track-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        position: relative;
    }
    
    .hero {
        min-height: 50vh;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .now-playing {
        padding: 1rem;
        margin-bottom: 2rem;
        max-width: none;
    }
    
    .current-track {
        min-height: 100px;
        gap: 1rem;
    }
    
    .news-item {
        padding: 0.75rem;
    }
    
    .news-inline-image {
        width: 60px;
        height: 45px;
        margin: 0 0.4rem 0.4rem 0;
    }
    
    .news-item h3 {
        font-size: 1rem;
    }
    
    .news-category-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    .track {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .track .time {
        min-width: 50px;
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .track-info h4 {
        font-size: 0.95rem;
    }
    
    .track-info p {
        font-size: 0.8rem;
    }
    
    .social-links {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Article Page Styles - Flat Design */
.article-main {
    background: var(--white);
    min-height: calc(100vh - 70px);
    padding-top: 70px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-link:hover {
    color: var(--sage-green);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.article-category {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-time {
    color: var(--warm-grey);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-title {
    font-size: 2.5rem;
    color: var(--dark-grey);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.article-hero {
    margin-bottom: 2rem;
}

.article-hero-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.image-caption {
    margin-top: 1rem;
    text-align: center;
}

.caption-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.photo-credit {
    color: var(--warm-grey);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 0;
}

.article-content {
    margin-bottom: 3rem;
}

.article-text {
    line-height: 1.8;
    color: var(--text-dark);
}

.article-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-text p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-grey);
}

.article-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.article-byline {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.article-byline strong {
    color: var(--dark-grey);
}

.article-source {
    color: var(--warm-grey);
    font-size: 0.9rem;
}

.article-source a {
    color: var(--forest-green);
    text-decoration: none;
}

.article-source a:hover {
    color: var(--sage-green);
}

.article-navigation {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-to-news-bottom {
    display: inline-block;
    background: var(--forest-green);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.back-to-news-bottom:hover {
    background: var(--sage-green);
}

/* News Search and Page Header Styles */
.page-header {
    text-align: center;
    padding: 4rem 0 3rem 0;
    background: var(--white);
    margin-top: 70px; /* Account for fixed header */
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--warm-grey);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-stats {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--warm-grey);
    background: var(--light-grey);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.separator {
    color: var(--warm-grey);
    font-weight: bold;
    margin: 0 0.5rem;
}

.mode-indicator {
    color: var(--forest-green);
    font-weight: 500;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.load-more-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

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

/* Loading and Error States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-container p {
    margin-top: 1rem;
    color: var(--warm-grey);
    font-size: 1.1rem;
}

.error-container {
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
}

.error-content {
    text-align: center;
    background: var(--light-grey);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
}

.error-content h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-content p {
    color: var(--warm-grey);
    margin-bottom: 1.5rem;
}

.retry-btn, .back-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.retry-btn:hover, .back-btn:hover {
    background: var(--sage-green);
}

/* News Section and Grid Updates */
.news-section {
    padding: 2rem 0 4rem 0;
    background: var(--white);
}

/* Notification System */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background: var(--dark-grey);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    z-index: 1002;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: var(--forest-green);
}

.notification-error {
    background: #e74c3c;
}

.notification-warning {
    background: #f39c12;
}

.notification-info {
    background: var(--dark-grey);
}

/* News Source Attribution */
.news-source {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.news-source small {
    color: var(--warm-grey);
    font-size: 0.8rem;
    font-style: italic;
}

/* News Card Updates for Crawler */
.news-card .news-content .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.news-author {
    color: var(--forest-green);
    font-weight: 500;
}

.news-date {
    color: var(--warm-grey);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .news-item {
        padding: 1rem;
    }
    
    .news-inline-image {
        height: 180px;
    }
    
    .news-item h3 {
        font-size: 1.1rem;
    }
    
    .news-category-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .load-more-btn {
        padding: 0.875rem 2rem;
    }
    
    /* Article page mobile */
    .article-container {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-hero-image {
        height: 250px;
    }
    
    .article-text p {
        font-size: 1rem;
    }
    
    .back-to-news-bottom {
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem 0 1rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .news-item {
        padding: 0.875rem;
    }
    
    .news-inline-image {
        height: 160px;
    }
    
    .news-item h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .news-category-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    .news-item p {
        font-size: 0.875rem;
    }
    
    /* Article page small mobile */
    .article-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .article-hero-image {
        height: 200px;
    }
    
    .article-text p {
        font-size: 0.95rem;
    }
    
    .article-text p:first-child {
        font-size: 1.05rem;
    }
}

/* Category Badge Colors - Flat Design */
.category-breaking {
    background: var(--primary-brown);
    color: var(--white);
}

.category-live {
    background: var(--forest-green);
    color: var(--white);
}

.category-trending {
    background: var(--sage-green);
    color: var(--white);
}

.category-tourism {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: var(--white);
}

.category-culture {
    background: var(--sage-green);
    color: var(--white);
}

.category-environment {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: var(--white);
}

.category-radio {
    background: var(--dark-grey);
    color: var(--white);
}

.category-weather {
    background: #3498db;
    color: var(--white);
}

.category-business {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
    color: var(--white);
}

.category-general {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: var(--white);
}

.category-infrastructure {
    background: var(--warm-grey);
    color: var(--white);
}

.category-regional {
    background: var(--sage-green);
    color: var(--white);
}

.category-technology {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: var(--white);
}

.category-transportation {
    background: linear-gradient(135deg, #ffd93d, #ff9a56);
    color: var(--white);
}

.category-default {
    background: var(--forest-green);
    color: var(--white);
}

/* Categories */
.news-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Translation Badge */
.translation-badge {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* No News Message */
.no-news-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 20px auto;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.no-news-message h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.no-news-message p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.6;
}

.refresh-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
} 