/* ===== VARIABLES CSS PROFESIONALES ===== */
:root {
    /* Paleta de colores corporativa */
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --primary-blue-bg: #eff6ff;
    --primary-blue-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    
    --secondary-violet: #6d28d9;
    --secondary-violet-dark: #5b21b6;
    --secondary-violet-light: #8b5cf6;
    --secondary-violet-bg: #f3e8ff;
    --secondary-violet-gradient: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    
    --accent-orange: #ea580c;
    --accent-orange-dark: #c2410c;
    --accent-orange-light: #f97316;
    --accent-orange-bg: #fff7ed;
    --accent-orange-gradient: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    
    --accent-red: #dc2626;
    --accent-red-dark: #b91c1c;
    --accent-red-light: #ef4444;
    --accent-red-bg: #fef2f2;
    --accent-red-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    
    /* Colores neutros profesionales */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    --text-muted: #6b7280;
    
    /* Tema claro profesional */
    --bg-primary: var(--white);
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --text-primary: var(--black);
    --text-secondary: #475569;
    --text-muted: #6b7280;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Sombras profesionales */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transiciones profesionales */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Bordes redondeados */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* Tema oscuro profesional */
[data-theme="dark"] {
    --bg-primary: #1e293b;
    --bg-secondary: #0f172a;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --border-light: #475569;
    
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ===== RESET Y BASE PROFESIONAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ===== HEADER PROFESIONAL ===== */
.header {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-blue);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-weight: 500;
}

.header-top {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.logo img {
    height: 150px;
    width: auto;
    max-width: 700px;
    object-fit: contain;
}

.header-search {
    flex: 0.6;
    max-width: 350px;
    margin: 0 20px;
}

.header-search .search-container {
    position: relative;
    width: 100%;
}

.header-search .search-input {
    width: 100%;
    padding: 8px 35px 8px 35px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.header-search .search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.header-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 14px;
}

.header-search .search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    padding: 3px;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.theme-toggle, .refresh-btn {
    background: var(--primary-blue-gradient);
    border: 2px solid var(--primary-blue);
    color: white;
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 16px;
    box-shadow: var(--shadow);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.theme-toggle::before, .refresh-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.theme-toggle:hover::before, .refresh-btn:hover::before {
    left: 100%;
}

.theme-toggle:hover, .refresh-btn:hover {
    background: var(--secondary-violet-gradient);
    border-color: var(--secondary-violet);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.theme-toggle:active, .refresh-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: transform var(--transition-fast);
}

.refresh-btn.rotating {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== NAVEGACIÓN PROFESIONAL ===== */
.navigation {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--primary-blue-bg) 100%);
    border-bottom: 2px solid var(--accent-orange);
    box-shadow: var(--shadow-md);
    position: relative;
}

.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-orange-gradient);
    opacity: 0.5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0.025em;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-blue-bg) 100%);
    border-bottom-color: var(--accent-orange);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.nav-link:active {
    transform: translateY(-1px);
    transition: transform var(--transition-fast);
}

/* ===== CONTENIDO PRINCIPAL ===== */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* ===== BÚSQUEDA (MOVIDA AL HEADER) ===== */

/* ===== LOADING ===== */
.loading-spinner {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== NOTICIAS ===== */
.news-section {
    margin-bottom: 40px;
}

.news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.news-item {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

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

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-blue-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.news-item:hover::before {
    opacity: 1;
}

.news-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue);
}

.news-item:hover .news-title {
    color: var(--primary-blue);
}

.news-item:active {
    transform: translateY(-2px) scale(1.01);
    transition: transform var(--transition-fast);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    background: var(--bg-secondary);
    flex-shrink: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Estilos para cuando hay pocas noticias */
.news-feed:has(.news-item:only-child) .news-image {
    height: 250px;
}

.news-feed:has(.news-item:nth-child(2):last-child) .news-image {
    height: 220px;
}

.news-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.news-category {
    background: var(--primary-blue-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.news-category:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.news-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.news-category:hover::before {
    left: 100%;
}

.news-date {
    font-size: 12px;
}

.news-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: color var(--transition-normal);
}

.news-title:hover {
    color: var(--primary-blue);
}

.news-description {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    flex-grow: 1;
}

.news-source {
    font-size: 12px;
    color: var(--accent-orange);
    font-weight: 500;
}

.news-share-buttons {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.share-btn {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--primary-blue-bg) 100%);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 11px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: var(--shadow-lg);
}

.share-btn:active {
    transform: translateY(-1px) scale(1.03);
    transition: transform var(--transition-fast);
}

.whatsapp-btn:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.facebook-btn:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.twitter-btn:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.copy-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* ===== COMENTARIOS ===== */
.news-comments-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comments-header h4 {
    color: var(--text-primary);
    font-size: 14px;
}

.toggle-comments-btn {
    background: var(--primary-blue-gradient);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.toggle-comments-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.toggle-comments-btn:hover::before {
    left: 100%;
}

.toggle-comments-btn:hover {
    background: var(--secondary-violet-gradient);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.comments-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.comments-container {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 15px;
}

.comment-form {
    margin-bottom: 20px;
}

.comment-input {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    margin-bottom: 10px;
}

.comment-form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comment-author {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
}

.submit-comment-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.submit-comment-btn:hover {
    background: var(--primary-blue-dark);
}

.comments-list {
    max-height: 300px;
    overflow-y: auto;
}

.no-comments {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 20px;
}

.comment-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-avatar {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.comment-meta {
    display: flex;
    flex-direction: column;
}

.comment-author-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
}

.comment-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.comment-actions {
    display: flex;
    gap: 5px;
}

.comment-action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.like-btn:hover {
    color: var(--accent-red);
}

.dislike-btn:hover {
    color: var(--gray);
}

.reply-btn:hover {
    color: var(--primary-blue);
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.comment-replies {
    margin-left: 20px;
    margin-top: 10px;
}

.reply-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.reply-avatar {
    width: 20px;
    height: 20px;
    background: var(--secondary-violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 500;
}

.reply-meta {
    display: flex;
    flex-direction: column;
}

.reply-author {
    font-weight: 500;
    font-size: 12px;
    color: var(--text-primary);
}

.reply-date {
    font-size: 10px;
    color: var(--text-secondary);
}

.reply-content {
    color: var(--text-primary);
    line-height: 1.4;
    font-size: 14px;
}

.reply-form {
    margin-top: 10px;
    padding: 10px;
    background: var(--bg-primary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.reply-input {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    margin-bottom: 8px;
    font-size: 14px;
}

.reply-form-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.submit-reply-btn, .cancel-reply-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.submit-reply-btn {
    background: var(--primary-blue);
    color: white;
}

.submit-reply-btn:hover {
    background: var(--primary-blue-dark);
}

.cancel-reply-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cancel-reply-btn:hover {
    background: var(--border-color);
}

/* ===== PUBLICIDAD ===== */
.advertising-section {
    margin: 40px 0;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--accent-orange-bg) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-orange);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.advertising-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-orange-gradient);
    opacity: 0.7;
}

.ad-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.ad-placeholder {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--primary-blue-bg) 100%);
    border: 2px dashed var(--accent-orange);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    color: var(--text-secondary);
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.ad-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.ad-placeholder:hover::before {
    left: 100%;
}

.ad-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.ad-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--accent-orange);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== CONTACTO ===== */
.contact-section {
    margin: 40px 0;
    padding: 40px;
    background: var(--primary-blue-gradient);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-container h3 {
    margin-bottom: 25px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.contact-item:active {
    transform: translateY(-2px) scale(1.01);
    transition: transform var(--transition-fast);
}

.contact-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== MODAL DE NOTICIA COMPLETA ===== */
.news-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.news-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.news-modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.news-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 25px 15px;
    border-bottom: 1px solid var(--border-color);
    gap: 15px;
}

.news-modal-header h2 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.news-modal-close {
    background: var(--gray);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.news-modal-close:hover {
    background: var(--accent-red);
    transform: scale(1.1);
}

.news-modal-body {
    padding: 20px 25px;
}

.news-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.news-modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.news-modal-text {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.news-modal-text p {
    margin-bottom: 15px;
}

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

.news-modal-footer {
    padding: 15px 25px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.news-modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.news-modal-share {
    display: flex;
    gap: 10px;
}

.favorite-btn {
    background: var(--accent-red-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.favorite-btn:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.favorite-btn.favorited {
    background: var(--accent-red);
    animation: heartBeat 0.6s ease-in-out;
}

.favorite-btn.favorited:hover {
    background: var(--accent-red-dark);
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .news-modal.show {
        padding: 10px;
    }
    
    .news-modal-content {
        max-height: 95vh;
    }
    
    .news-modal-header {
        padding: 15px 20px 10px;
    }
    
    .news-modal-header h2 {
        font-size: 20px;
    }
    
    .news-modal-body {
        padding: 15px 20px;
    }
    
    .news-modal-footer {
        padding: 10px 20px 15px;
    }
    
    .news-modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===== DASHBOARD DE ANALYTICS ===== */
.analytics-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

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

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.metric-card:nth-child(1) .metric-icon {
    background: var(--primary-blue-gradient);
}

.metric-card:nth-child(2) .metric-icon {
    background: var(--accent-orange-gradient);
}

.metric-card:nth-child(3) .metric-icon {
    background: var(--secondary-violet-gradient);
}

.metric-card:nth-child(4) .metric-icon {
    background: var(--accent-red-gradient);
}

.metric-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.metric-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

.analytics-section {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.analytics-section h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.chart-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.popular-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.popular-news-item:hover {
    background: var(--primary-blue-bg);
    border-color: var(--primary-blue);
}

.popular-news-rank {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.popular-news-rank.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.popular-news-rank.rank-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e5e5e5 100%);
    color: #333;
}

.popular-news-rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
    color: white;
}

.popular-news-content {
    flex: 1;
}

.popular-news-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 14px;
}

.popular-news-views {
    color: var(--text-secondary);
    font-size: 12px;
}

.radio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.radio-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.stat-value {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 18px;
}

.analytics-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
    font-style: italic;
}

/* Responsive para analytics */
@media (max-width: 768px) {
    .analytics-overview {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 15px;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .metric-content h3 {
        font-size: 1.5rem;
    }
    
    .analytics-section {
        padding: 20px;
    }
    
    .radio-stats {
        grid-template-columns: 1fr;
    }
    
    .analytics-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== EDITOR DE NOTICIAS AVANZADO ===== */
.editor-toolbar {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: var(--shadow);
}

.toolbar-group {
    display: flex;
    gap: 5px;
    padding-right: 15px;
    border-right: 1px solid var(--border-color);
}

.toolbar-group:last-child {
    border-right: none;
}

.toolbar-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-primary);
    font-size: 14px;
}

.toolbar-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}

.toolbar-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.editor-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-bottom: 20px;
}

.editor-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.char-counter.warning {
    color: var(--accent-orange);
}

.char-counter.error {
    color: var(--accent-red);
}

.editor-container {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    min-height: 200px;
    position: relative;
}

.rich-editor {
    padding: 15px;
    min-height: 200px;
    outline: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}

.rich-editor:empty:before {
    content: attr(data-placeholder);
    color: var(--text-muted);
    font-style: italic;
}

.rich-editor:focus {
    border-color: var(--primary-blue);
}

.image-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    background: var(--bg-secondary);
}

.image-upload-area:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue-bg);
}

.image-upload-area.dragover {
    border-color: var(--primary-blue);
    background: var(--primary-blue-bg);
    transform: scale(1.02);
}

.upload-placeholder i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.upload-placeholder p {
    color: var(--text-secondary);
    margin: 10px 0;
}

.image-preview {
    position: relative;
    display: inline-block;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

.remove-image:hover {
    background: var(--accent-red-dark);
    transform: scale(1.1);
}

.tags-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.tag {
    background: var(--primary-blue-bg);
    color: var(--primary-blue);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    border: 1px solid var(--primary-blue);
}

.editor-preview {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.editor-preview h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-container {
    min-height: 300px;
}

.preview-placeholder {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
}

.preview-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.preview-news {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.preview-news img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.preview-news-content {
    padding: 15px;
}

.preview-news-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.preview-news-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.preview-news-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.preview-news-category {
    background: var(--primary-blue-bg);
    color: var(--primary-blue);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-blue);
}

/* Responsive para el editor */
@media (max-width: 1024px) {
    .editor-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .editor-preview {
        position: static;
    }
}

@media (max-width: 768px) {
    .editor-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .toolbar-group {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 10px;
    }
    
    .toolbar-group:last-child {
        border-bottom: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== MENSAJES DE ESTADO ===== */
.no-news {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-news i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-news h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 24px;
}

.no-news p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* ===== REPRODUCTOR DE RADIO ===== */
.radio-player-fixed {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--primary-blue-bg) 100%);
    border: 1px solid var(--primary-blue);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    max-width: 220px;
    z-index: 1000;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.radio-player-fixed:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.radio-player-fixed:active {
    transform: translateY(-3px) scale(1.01);
    transition: transform var(--transition-fast);
}

.radio-info {
    margin-bottom: 8px;
}

.radio-station h4 {
    color: var(--text-primary);
    margin-bottom: 3px;
    font-size: 14px;
}

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

.radio-controls {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 8px;
}

.control-btn {
    background: var(--primary-blue-gradient);
    color: white;
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.control-btn:hover::before {
    left: 100%;
}

.control-btn:hover {
    background: var(--secondary-violet-gradient);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.control-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.volume-control i {
    color: var(--text-secondary);
    font-size: 12px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== RESPONSIVE PROFESIONAL ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header-top {
        padding: 18px 0;
    }
    
    .logo img {
        height: 120px;
        max-width: 500px;
    }
    
    .news-feed {
        gap: 14px;
    }
    
    .news-item {
        border-radius: var(--radius-md);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-top {
        padding: 16px 0;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .logo img {
        height: 100px;
        max-width: 400px;
    }
    
    .header-search {
        order: 3;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    
    .header-actions {
        order: 2;
        justify-content: center;
    }
    
    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 0;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: var(--radius);
        margin: 2px 0;
    }
    
    .search-input {
        padding: 12px 45px 12px 45px;
        font-size: 14px;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .news-feed {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .news-content {
        padding: 12px;
    }
    
    .news-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .news-description {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .news-category {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .news-image {
        height: 150px;
    }
    
    .share-btn {
        padding: 5px 9px;
        font-size: 10px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-item {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-item span {
        font-size: 14px;
    }
    
    .radio-player-fixed {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        min-width: auto;
        max-width: none;
        margin: 20px 0;
        border-radius: var(--radius-md);
    }
    
    .volume-control {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header-top {
        padding: 12px 0;
    }
    
    .header-top-content {
        padding: 0 12px;
    }
    
    .logo img {
        height: 80px;
        max-width: 300px;
    }
    
    .header-search .search-input {
        padding: 10px 40px 10px 40px;
        font-size: 13px;
    }
    
    .nav-link {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .news-feed {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .news-content {
        padding: 10px;
    }
    
    .news-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .news-description {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .news-category {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    .news-image {
        height: 120px;
    }
    
    .contact-section {
        padding: 20px;
    }
    
    .contact-container h3 {
        font-size: 20px;
    }
    
    .radio-player-fixed {
        padding: 8px;
        min-width: 160px;
        max-width: 200px;
    }
    
    .radio-controls {
        gap: 4px;
    }
    
    .control-btn {
        min-width: 28px;
        min-height: 28px;
        padding: 6px;
        font-size: 12px;
    }
}