:root {
            --white: #fff;
            --dark: #161d29;
            --blue: #0084ea;
            --gray-light: #f7f7f7;
            --gray-medium: #e4e4e4;
            --gray-dark: #666;
        }

        body {
            font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark);
            line-height: 1.65;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .serif {
            font-family: 'Playfair Display', Georgia, serif;
        }

        /* Top Bar */
        .top-bar {
            background: var(--dark);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .top-bar a {
            color: var(--white);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--blue);
        }

        /* Header */
        .site-header {
            background: var(--white);
            border-bottom: 4px double var(--dark);
            padding: 25px 0 15px;
        }

        .site-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            text-align: center;
            letter-spacing: -1px;
            margin: 0;
            color: var(--dark);
        }

        .site-frequency {
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray-dark);
            font-weight: 500;
            letter-spacing: 2px;
            margin-top: 5px;
        }

        .site-tagline {
            text-align: center;
            font-size: 0.85rem;
            color: var(--gray-dark);
            font-style: italic;
            margin-top: 8px;
        }

        /* Navigation */
        .main-nav {
            background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
            border-bottom: 1px solid var(--gray-medium);
            padding: 0;
        }

        .navbar {
            padding: 0;
        }

        .navbar-nav {
            width: 100%;
            justify-content: center;
        }

        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 15px 20px !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--blue) !important;
            border-bottom-color: var(--blue);
        }

        .dropdown-menu {
            border: 1px solid var(--gray-medium);
            border-radius: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-top: 0;
        }

        .dropdown-item {
            padding: 10px 20px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background: var(--gray-light);
            color: var(--blue);
            padding-left: 25px;
        }

        /* Slider */
        .hero-slider {
            background: var(--dark);
            margin-bottom: 40px;
        }

        .carousel-item {
            height: 500px;
            position: relative;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            opacity: 0.7;
        }

        .carousel-caption {
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 800px;
            text-align: left;
            background: rgba(22, 29, 41, 0.85);
            padding: 30px 40px;
            border-left: 4px solid var(--blue);
        }

        .carousel-caption h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--white);
        }

        .carousel-caption p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
        }

        /* Section Headers */
        .section-header {
            border-bottom: 2px solid var(--dark);
            padding-bottom: 10px;
            margin-bottom: 30px;
            position: relative;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            display: inline-block;
            padding-right: 20px;
            background: var(--white);
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--blue);
        }

        /* News Cards */
        .news-card {
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

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

        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .news-meta {
            font-size: 0.8rem;
            color: var(--gray-dark);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-meta .category {
            color: var(--blue);
            font-weight: 600;
        }

        .news-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .news-card h3 a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }

        .news-card h3 a:hover {
            color: var(--blue);
        }

        .news-card p {
            font-size: 0.95rem;
            color: var(--gray-dark);
            line-height: 1.6;
        }

        /* Featured News */
        .featured-news {
            border-left: 4px solid var(--blue);
            padding-left: 20px;
            margin-bottom: 30px;
        }

        .featured-news img {
            height: 400px;
        }

        .featured-news h3 {
            font-size: 2.2rem;
        }

        /* Opinion Cards */
        .opinion-card {
            background: var(--gray-light);
            padding: 25px;
            margin-bottom: 25px;
            border-left: 4px solid var(--dark);
            transition: all 0.3s;
        }

        .opinion-card:hover {
            border-left-color: var(--blue);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .author-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--white);
        }

        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0;
            color: var(--dark);
        }

        .author-role {
            font-size: 0.85rem;
            color: var(--gray-dark);
            font-style: italic;
        }

        .opinion-card h4 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .opinion-card h4 a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }

        .opinion-card h4 a:hover {
            color: var(--blue);
        }

        /* Program Cards */
        .program-card {
            background: var(--white);
            border: 1px solid var(--gray-medium);
            margin-bottom: 25px;
            transition: all 0.3s;
            overflow: hidden;
        }

        .program-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border-color: var(--blue);
        }

        .program-card .video-thumb {
            position: relative;
            overflow: hidden;
            background: var(--dark);
        }

        .program-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .program-card:hover img {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 132, 234, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .program-card:hover .play-overlay {
            background: var(--blue);
            width: 70px;
            height: 70px;
        }

        .play-overlay i {
            color: var(--white);
            font-size: 24px;
            margin-left: 3px;
        }

        .program-content {
            padding: 20px;
        }

        .program-category {
            font-size: 0.8rem;
            color: var(--blue);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .program-card h5 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .program-card h5 a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }

        .program-card h5 a:hover {
            color: var(--blue);
        }

        /* Podcast Section */
        .podcast-card {
            background: var(--white);
            border: 1px solid var(--gray-medium);
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .podcast-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: var(--blue);
        }

        .podcast-icon {
            width: 80px;
            height: 80px;
            background: var(--blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .podcast-icon i {
            font-size: 36px;
            color: var(--white);
        }

        .podcast-info {
            flex: 1;
        }

        .podcast-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .podcast-duration {
            font-size: 0.85rem;
            color: var(--gray-dark);
        }

        .podcast-play {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .podcast-play:hover {
            background: var(--blue);
            transform: scale(1.1);
        }

        .podcast-play i {
            color: var(--white);
            font-size: 16px;
            margin-left: 2px;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
            margin-top: 60px;
        }

        .footer h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--blue);
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--blue);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        /* Live Badge */
        .live-badge {
            background: #e74c3c;
            color: var(--white);
            padding: 4px 12px;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            animation: pulse 2s infinite;
        }


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

        /* Responsive */
        @media (max-width: 768px) {
            .site-title {
                font-size: 2.5rem;
            }
            
            .carousel-item {
                height: 350px;
            }
            
            .carousel-caption h2 {
                font-size: 1.8rem;
            }
            
            .featured-news img {
                height: 250px;
            }
            
            .featured-news h3 {
                font-size: 1.6rem;
            }
        }

        .btn-ver-mas {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #161d29;
            border: 2px solid #161d29;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-ver-mas:hover {
            background: #161d29;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 29, 41, 0.3);
        }