/* assets/css/style.css - NEW PRO RADIO REDESIGN */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --bg-main: #0b0f19;
    --bg-card: #161c2d;
    --primary: #f97316; /* NEW ORANGE */
    --secondary: #ea580c; /* DEEP ORANGE */
    --accent: #fbbf24; /* AMBER/YELLOW */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

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

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header & Premium Nav */
header {
    background: rgba(36, 47, 66, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover, nav a.active {
    color: white;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    width: 45px;
    height: 45px;
    position: relative;
    transition: all 0.3s;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 6px auto;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* VIBRANT HERO SECTION */
.hero-vibrant {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.main-featured {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.5);
    display: block;
    width: 100%;
}

.main-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 3rem 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.badge {
    background: var(--gradient);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    color: white;
}

.main-featured h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
    color: #ffffff;
}

/* TRENDING SMALL CARD */
.trending-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-card {
    background: var(--bg-card);
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: transform 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
}

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

.side-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.side-content {
    padding: 1.5rem;
}

.side-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #ffffff;
}

/* RANKING SIDEBAR */
.sidebar-ranking {
    background: var(--bg-card);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.ranking-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--glass-border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.ranking-item:hover {
    transform: translateX(5px);
}

.rank-number {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
    border: 1px solid var(--glass-border);
}

.rank-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

/* ARTICLE TYPOGRAPHY & LAYOUT */
.article-header {
    margin: 5rem 0 3rem;
    text-align: center;
}

.article-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin: 1.5rem 0;
    letter-spacing: -2px;
}

.article-meta {
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 600;
    flex-wrap: wrap;
}

.main-content-area {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.main-content-area p {
    margin-bottom: 2rem;
}

.main-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 1.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.main-content-area h2, .main-content-area h3 {
    color: white;
    margin: 3rem 0 1.5rem;
    font-weight: 800;
}

.main-content-area h2 { font-size: 2.2rem; }
.main-content-area h3 { font-size: 1.8rem; }

/* SOCIAL SHARE BUTTONS */
.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.3rem;
}

.share-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.share-btn.fb:hover { background: #1877f2; }
.share-btn.tw:hover { background: #000000; }
.share-btn.wa:hover { background: #25d366; }

/* GRID UTILITIES */
.grid-main {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 2.5rem;
    margin-top: 4rem;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* FOOTER */
footer {
    background: #05070a;
    padding: 6rem 0 3rem;
    margin-top: 8rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h5 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* PARTNERS / SPONSORS */
.partners-section {
    margin: 6rem 0;
    text-align: center;
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.partner-logo {
    max-height: 60px;
    transition: all 0.3s;
}

/* RADIO & TV */
.radio-widget {
    background: var(--bg-card);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    text-align: center;
    margin-bottom: 2rem;
}

.play-btn-circle {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 1.5rem;
}

.tv-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: white !important;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1200px) {
    .grid-main {
        grid-template-columns: 1fr 300px;
    }
    aside:first-child { display: none; }
}

@media (max-width: 1024px) {
    .hero-vibrant { grid-template-columns: 1fr; }
    .main-featured { height: 450px; }
    .main-featured h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .article-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .mobile-toggle { display: block !important; }
    
    nav {
        display: flex !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 7, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 9999;
        transform: translateY(-100%);
        transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        opacity: 0;
        pointer-events: none;
    }
    
    nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    nav a {
        font-size: 1.8rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s;
    }
    
    nav.open a {
        opacity: 1;
        transform: translateY(0);
    }
    
    nav a:nth-child(1) { transition-delay: 0.1s; }
    nav a:nth-child(2) { transition-delay: 0.15s; }
    nav a:nth-child(3) { transition-delay: 0.2s; }
    nav a:nth-child(4) { transition-delay: 0.25s; }
    nav a:nth-child(5) { transition-delay: 0.3s; }
    nav a:nth-child(6) { transition-delay: 0.35s; }
    nav a:nth-child(7) { transition-delay: 0.4s; }

    .header-actions {
        display: none !important;
    }
    
    .grid-main { grid-template-columns: 1fr; }
    aside { order: 2; }
    section { order: 1; }
    
    .main-featured { height: 400px; }
    .main-featured h1 { font-size: 2.2rem; }
    
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col:first-child { text-align: center; }
    
    article { flex-direction: column !important; }
    article img { width: 100% !important; height: 220px !important; }
}

@media (max-width: 480px) {
    .main-featured { height: 300px; }
    .main-featured h1 { font-size: 1.8rem; }
    .article-title { font-size: 1.8rem; }
}

/* Animations */
@keyframes live-pulse-anim {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

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

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
