:root {
--primary-color: #54adde;
--secondary-color: white;
--dark-bg: #1a0b2e;
--card-bg: rgba(139, 92, 246, 0.1);
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #0a0a0a;
color: #ffffff;
min-height: 100vh;
padding-bottom: 120px;
}

/* Navbar */
.navbar {
background: rgba(0, 0, 0, 0.95) !important;
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.navbar-brand {
font-weight: bold;
font-size: 1.5rem;
background: linear-gradient(45deg, #54adde, white);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: flex;
align-items: center;
gap: 12px;
}

.navbar-brand-text {
background: linear-gradient(45deg, #5cc5e8, white);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}


.navbar-nav .nav-link {
color: #ffffff !important;
margin: 0 10px;
transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
color: #54adde !important;
}

/* Dropdown Menu Styling - Hover Effect */
.navbar-nav .dropdown:hover .dropdown-menu {
display: block;
margin-top: 0;
}

.dropdown-menu {
background: rgba(0, 0, 0, 0.95);
border: 1px solid rgba(139, 92, 246, 0.3);
border-radius: 10px;
margin-top: 0 !important;
}

.dropdown-item {
color: #ffffff !important;
transition: all 0.3s;
}

.dropdown-item:hover {
background: rgba(84, 173, 222, 0.2);
color: #54adde !important;
}
/*     News Ticker Header - Top Positioned */

.news-ticker-wrapper {
position: fixed;
top: 56px;
left: 0;
right: 0;
height: 90px;
background: rgba(0, 0, 0, 0.95);
border-bottom: 2px solid #54adde;
z-index: 998;
display: flex;
align-items: center;
padding: 0;
}

.news-ticker-wrapper.hidden {
display: none;
}

.news-ticker-close {
position: absolute;
top: 10px;
left: 15px;
background: none;
border: none;
color: #07131a;
font-size: 1.5rem;
cursor: pointer;
z-index: 1;
transition: all 0.3s;
}

.news-ticker-close:hover {
color: #ef4444;
transform: rotate(90deg);
}

.news-ticker-content-wrapper {
display: flex;
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}

.news-ticker-slide-full {
position: absolute;
width: 100%;
height: 100%;
display: none;
align-items: center;
padding: 15px 60px 15px 20px;
}

.news-ticker-slide-full.active {
display: flex;
animation: fadeInSlide 0.5s ease;
}

@keyframes fadeInSlide {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.news-ticker-image {
width: 100px;
height: 60px;
object-fit: cover;
border-radius: 8px;
margin-right: 20px;
flex-shrink: 0;
}

.news-ticker-text {
flex: 1;
}

.news-ticker-label {
background: linear-gradient(45deg, #54adde, white);
padding: 3px 10px;
border-radius: 15px;
font-weight: bold;
color: white;
font-size: 0.7rem;
display: inline-block;
margin-bottom: 5px;
}

.news-ticker-text h6 {
margin: 0;
font-size: 0.95rem;
font-weight: 600;
color: #fff;
line-height: 1.3;
}

.news-ticker-text p {
margin: 5px 0 0 0;
font-size: 0.8rem;
color: #d1d5db;
}

/* Hero Section - Adjusted for ticker */
.hero-section {
margin-top: 70px;
padding: 70px 0;
background: linear-gradient(135deg, rgba(10, 10, 30, 0.85), rgba(84, 173, 222, 0.3)), url('https://images.unsplash.com/photo-1487180144351-b8472da7d491?w=1920&h=800&fit=crop');
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
}

.hero-slider {
position: relative;
width: 100%;
}

.hero-slide {
display: none;
}

.hero-slide.active {
display: block;
}

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

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

.hero-content h1 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-content h2 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-content .tagline {
font-size: 1.2rem;
color: #d1d5db;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
min-height: 60px;
}

.typing-text {
    display: inline-block;
    animation: slideInText 0.8s ease-out forwards;
    opacity: 0;
}

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

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.btn-hero {
padding: 15px 30px;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s;
border: none;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
}

.btn-hero:hover {
    text-decoration: none;
}
.btn-live {
    background: #ef4444;
    color: white; .ad-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.ad-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ad-video {
    display: block;
    transition: opacity 0.3s ease;
}

.ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-card:hover .ad-overlay {
    opacity: 1;
}

.ad-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.ad-overlay p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}
}

.btn-live:hover {
background: #dc2626;
transform: translateY(-3px);
color: white;
}

.btn-programs {
background: linear-gradient(45deg, #54adde, white);
color: white;
}

.btn-programs:hover {
transform: translateY(-3px);
color: white;
}

.btn-advertise {
background: rgba(255, 255, 255, 0.1);
border: 2px solid #54adde;
color: white;
}

.btn-advertise:hover {
background: #54adde;
transform: translateY(-3px);
color: white;
}

.now-playing-box {
background: rgba(0, 0, 0, 0.6);
border: 1px solid rgba(139, 92, 246, 0.3);
border-radius: 20px;
padding: 20px 30px;
display: inline-block;
margin-top: 20px;
}

.now-playing-box h6 {
color: #54adde;
margin: 0 0 5px 0;
font-size: 0.9rem;
}

.now-playing-box p {
margin: 0;
font-size: 1.1rem;
font-weight: 600;
}
/* advertisement cards */
 .ad-card {
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }

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

    .ad-placeholder {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .ad-video {
        display: block;
        transition: opacity 0.3s ease;
    }

    .ad-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .ad-card:hover .ad-overlay {
        opacity: 1;
    }

    .ad-overlay i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .ad-overlay p {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
    }

/* Section Styling */
.section-padding {
padding: 40px 0;
}

.section-title {
text-align: center;
margin-bottom: 50px;
}

.section-title h2 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 15px;
}

.section-title p {
color: #9ca3af;
font-size: 1.1rem;
}

/* Program Cards */
.program-card {
background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
border: 2px solid #54adde;
border-radius: 15px;
padding: 30px;
margin-bottom: 20px;
transition: all 0.3s;
}
.program-image {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.program-card:hover {
border-color: #54adde;
transform: translateY(-5px);
}

.program-card h4 {
color: #54adde;
font-weight: bold;
margin-bottom: 10px;
}

.program-card .time {
color: white;
font-weight: 600;
margin-bottom: 10px;
}

.program-card p {
color: #d1d5db;
margin: 0;
}

/* News Grid - Fixed Card Size */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 2px solid #54adde;
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 320px;  /* Reduced from 400px */
}

.news-card:hover {
    border-color: #54adde;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(84, 173, 222, 0.3);
}

.news-card img {
    width: 100%;
    height: 160px;  /* Reduced from 220px */
    object-fit: cover;
    flex-shrink: 0;
}

.news-card-body {
    padding: 20px;  /* Reduced from 25px */
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.news-badge {
    background: #54adde;
    color: white;
    padding: 4px 12px;  /* Reduced from 5px 15px */
    border-radius: 20px;
    font-size: 0.75rem;  /* Reduced from 0.8rem */
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;  /* Reduced from 12px */
    width: fit-content;
}

.news-badge.community { background: #10b981; }
.news-badge.music { background: #8b5cf6; }
.news-badge.event { background: #f59e0b; }
.news-badge.sports { background: #ef4444; }
.news-badge.interview { background: #06b6d4; }

.news-card h5 {
    font-weight: bold;
    margin-bottom: 10px;  /* Reduced from 12px */
    font-size: 1.1rem;  /* Reduced from 1.2rem */
    line-height: 1.3;
    flex-shrink: 0;
}

.news-card .meta {
    color: #9ca3af;
    font-size: 0.8rem;  /* Reduced from 0.85rem */
    margin-bottom: 10px;  /* Reduced from 12px */
    flex-shrink: 0;
}

.news-card .meta i {
    color: #54adde;
    margin-right: 5px;
}

.news-card p {
    color: #d1d5db;
    margin-bottom: 12px;  /* Reduced from 15px */
    flex: 1;
    line-height: 1.5;  /* Reduced from 1.6 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;  /* Limit to 2 lines */
    -webkit-box-orient: vertical;
}

.btn-read-more {
    background: linear-gradient(45deg, #54adde,#54adde);
    border: none;
  
    padding: 8px 16px;  /* Reduced from 10px 20px */
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;  /* Reduced from 8px */
    font-weight: 600;
    font-size: 0.9rem;  /* Added smaller font */
    width: fit-content;
    margin-top: auto;
    flex-shrink: 0;
}

.btn-read-more:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 5px 15px rgba(84, 173, 222, 0.4);
}

/* Responsive sizing */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive sizing */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .news-card {
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        min-height: 400px;
    }
}

/* Podcast Section */
.podcast-card {
    background: var(--card-bg);
    border: 1px solid rgba(84, 173, 222, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;

    /* Stable size */
    
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
}

.podcast-card:hover {
    border-color: #54adde;
    transform: translateY(-5px);
}

.podcast-card i {
    font-size: 2rem;
    color: #54adde;
    margin-bottom: 15px;
}

.podcast-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.podcast-card p {
    color: #9ca3af;
    margin: 0;
}

/* Impact Stats */
.impact-stats {
background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
border: 2px solid #54adde;
border-radius: 25px;
padding: 50px 30px;
}

.stat-item {
text-align: center;
margin-bottom: 20px;
}

.stat-item h3 {
font-size: 3rem;
font-weight: bold;
background: linear-gradient(45deg, #54adde, white);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 10px;
}

.stat-item p {
color: #d1d5db;
margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 2px solid #54adde;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(84, 173, 222, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.newsletter-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid rgba(84, 173, 222, 0.3);
    background: rgba(10, 14, 39, 0.5);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #54adde;
    background: rgba(10, 14, 39, 0.8);
}

.newsletter-form button {
    padding: 15px 40px;
    background: #54adde;
    color: white;
    border: 2px solid #54adde;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: transparent;
    color: #54adde;
    transform: translateY(-2px);
}


/* Fixed Audio Player */
.audio-player-fixed {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(10px);
border-top: 2px solid #54adde;
padding: 15px 0;
z-index: 1000;
}

.player-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.player-info {
display: flex;
align-items: center;
gap: 15px;
flex: 1;
}

.player-icon {
width: 50px;
height: 50px;
background: linear-gradient(45deg, #54adde, #54adde );
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
}

.player-text h6 {
margin: 0;
font-size: 0.9rem;
color: #54adde;
}

.player-text p {
margin: 0;
font-size: 0.85rem;
color: #9ca3af;
}

.player-controls {
display: flex;
align-items: center;
gap: 15px;
}

.play-btn {
width: 50px;
height: 50px;
background: linear-gradient(45deg, #54adde, white);
border: none;
border-radius: 50%;
color: white;
font-size: 1.2rem;
cursor: pointer;
transition: all 0.3s;
}

.play-btn:hover {
transform: scale(1.1);
}

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

.volume-slider {
width: 100px;
-webkit-appearance: none;
height: 5px;
border-radius: 5px;
background: rgba(139, 92, 246, 0.3);
outline: none;
}

.volume-slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #54adde;
cursor: pointer;
}

/* Footer */
footer {
background: #000000;
border-top: 2px solid rgba(139, 92, 246, 0.3);
padding: 60px 0 20px;
margin-top: 80px;
}

.footer-section h5 {
color: #54adde;
font-weight: bold;
margin-bottom: 20px;
}

.footer-section p {
color: #9ca3af;
line-height: 1.6;
}

.social-links {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.social-links a{
    color: #ffffff;
}
.social-link {
width: 40px;
height: 40px;
background: rgba(139, 92, 246, 0.2);
border: 1px solid rgba(139, 92, 246, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #54adde;
transition: all 0.3s;
text-decoration: none;
}

.social-link:hover {
background: #54adde;
color: white;
transform: translateY(-3px);
}

.contact-item {
display: flex;
align-items: start;
gap: 12px;
margin-bottom: 15px;
color: #9ca3af;
}

.contact-item i {
color: #54adde;
margin-top: 3px;
}

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

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: #9ca3af;
text-decoration: none;
transition: all 0.3s;
}

.footer-links a:hover {
color: #54adde;
padding-left: 5px;
}

.footer-bottom {
border-top: 1px solid rgba(139, 92, 246, 0.2);
padding-top: 25px;
margin-top: 40px;
text-align: center;
color: #6b7280;
}

/* Floating Button - Combined */
.floating-btn {
position: fixed;
right: 30px;
bottom: 140px;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
cursor: pointer;
box-shadow: 0 5px 25px rgba(84, 173, 222, 0.5);
z-index: 999;
animation: float 3s ease-in-out infinite;
transition: all 0.3s;
background: linear-gradient(45deg, #54adde, white);
}

.floating-btn:hover {
transform: scale(1.1);
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

/* Combined Modal */
.custom-modal {
display: none;
position: fixed;
right: 30px;
bottom: 210px;
z-index: 1001;
}

.custom-modal.active {
display: block;
animation: slideUp 0.3s ease-out;
}

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

.modal-content-combined {
background: rgba(0, 0, 0, 0.95);
border: 2px solid #54adde;
border-radius: 20px;
width: 350px;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
max-height: 80vh;
overflow-y: auto;
}

.modal-header-combined {
background: linear-gradient(45deg, #54adde, white);
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1;
}

.modal-header-combined h5 {
margin: 0;
color: white;
font-weight: bold;
}

.close-modal {
background: none;
border: none;
color: white;
font-size: 1.8rem;
cursor: pointer;
transition: transform 0.3s;
}

.close-modal:hover {
transform: rotate(90deg);
}

.modal-tabs {
display: flex;
padding: 0;
margin: 0;
border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.modal-tab {
flex: 1;
padding: 10px 10px;
background: transparent;
border: none;
color: #9ca3af;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.modal-tab.active {
color: #54adde;
background: rgba(84, 173, 222, 0.1);
border-bottom: 3px solid #54adde;
}

.modal-tab:hover {
background: rgba(84, 173, 222, 0.05);
}

.tab-content-panel {
display: none;
padding: 10px;
}

.tab-content-panel.active {
display: block;
animation: fadeIn 0.3s ease;
}

.custom-form .form-group {
margin-bottom: 20px;
}

.custom-form label {
display: block;
color: #54adde;
font-weight: 600;
margin-bottom: 8px;
}

.custom-form input,
.custom-form textarea {
width: 100%;
padding: 12px 15px;
background: rgba(139, 92, 246, 0.1);
border: 1px solid rgba(139, 92, 246, 0.3);
border-radius: 10px;
color: white;
}

.custom-form textarea {
resize: vertical;
min-height: 80px;
}

.custom-form input:focus,
.custom-form textarea:focus {
outline: none;
border-color: #54adde;
}

.btn-submit {
width: 100%;
padding: 12px;
background: linear-gradient(45deg, #54adde, white);
border: none;
border-radius: 10px;
color: white;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
transition: all 0.3s;
}

.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(84, 173, 222, 0.4);
}

.ad-card {
background: rgba(139, 92, 246, 0.1);
border: 2px solid rgba(139, 92, 246, 0.3);
border-radius: 15px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
margin-bottom: 20px;
}

.ad-card:hover {
border-color: #54adde;
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(84, 173, 222, 0.3);
}

.ad-placeholder {
text-align: center;
color: #54adde;
}

.ad-placeholder i {
font-size: 3rem;
opacity: 0.5;
margin-bottom: 10px;
}

.ad-placeholder p {
color: #9ca3af;
margin: 0;
}

.programs-slider-container {
position: relative;
padding: 0 60px;
margin: 30px 0;
}

.programs-slider-wrapper {
overflow: hidden;
}

.programs-slider {
display: flex;
transition: transform 0.5s ease;
gap: 20px;
}

.program-slide {
flex: 0 0 calc(33.333% - 14px);
min-width: calc(33.333% - 14px);
}

.program-card-slide {
background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
border: 2px solid #54adde;
border-radius: 15px;
padding: 30px;
cursor: pointer;
position: relative;
transition: all 0.3s;
}

.program-slide.active .program-card-slide {
border-color: #54adde;
transform: scale(1.05);
box-shadow: 0 10px 40px rgba(84, 173, 222, 0.4);
}

.program-card-slide h4 {
color: #54adde;
font-weight: bold;
margin-bottom: 10px;
}

.program-card-slide .time {
color: white;
font-weight: 600;
margin-bottom: 10px;
}

.program-card-slide p {
color: #d1d5db;
margin: 0;
}

.live-badge {
position: absolute;
top: 15px;
right: 15px;
background: #ef4444;
color: white;
padding: 5px 12px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
animation: pulse 2s infinite;
}

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

.slider-nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 45px;
height: 45px;
background: linear-gradient(45deg, #54adde, white);
border: none;
border-radius: 50%;
color: white;
font-size: 1.2rem;
cursor: pointer;
z-index: 10;
transition: all 0.3s;
}

.slider-nav-btn:hover {
transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

@media (max-width: 992px) {
.news-ticker-image {
    width: 80px;
    height: 50px;
}
}

@media (max-width: 768px) {
.hero-section {
    margin-top: 14px;
}

.hero-content h1, .hero-content h2 {
    font-size: 2rem;
}

.hero-buttons {
    flex-direction: column;
}

.newsletter-form {
    flex-direction: column;
}

.player-content {
    flex-direction: column;
    gap: 10px;
}

.volume-control {
    display: none;
}

.program-slide {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
}

.programs-slider-container {
    padding: 0 50px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 130px;
}

.custom-modal {
    bottom: 190px;
    right: 20px;
}

.modal-content-combined {
    width: 300px;
}

.news-ticker-wrapper {
    height: auto;
    min-height: 70px;
}

.news-ticker-slide-full {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 50px 10px 10px;
}

.news-ticker-image {
    width: 100%;
    height: 80px;
    margin-right: 0;
    margin-bottom: 10px;
}
}

/* Side card (dismissible) */
#side-card {
    position: absolute;
    left: 30px;
    top: 30%;
    width: 300px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(84,173,222,0.12);
    border-radius: 12px;
    padding: 16px;
    color: #e6eef8;
    z-index: 1200;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

#side-card.hidden {
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    pointer-events: none;
}

#side-card .card-title {
    font-weight: 700;
    color: #54adde;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

#side-card .card-body {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

#side-card .card-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

#side-card .btn-learn {
    background: transparent;
    border: 1px solid rgba(84,173,222,0.25);
    color: #54adde;
    padding: 6px 10px;
    border-radius: 8px;
    text-decoration: none;
}

#side-card .btn-dismiss {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.02);
    color: #f8fafc;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
}

/* Social feed area under Podcasts */
#social-feed {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.social-post {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(84,173,222,0.08);
    padding: 12px;
    border-radius: 5px;
    color: #e6eef8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-post img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.social-meta {
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    align-items: center;
}