/* Paksa justify untuk semua paragraf di news detail */
.news-detail p, .news-content p, .article-content p {
    text-align: justify !important;
}
/* News content justify */
.news-detail p, .news-content, .article-content {
    text-align: justify;
}
* {
    
    margin-left: 0px;
    margin-top: 0px;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    font-size: 14px;
}

html {
    /*overflow-x: hidden;*/
    width: 100%;
    font-size: 90%;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header & Navigation */
header {
    background-color: rgba(206,206,206,0.8);
    
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap; /* allow items to wrap when space is limited */
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active-link {
    color: #000000 !important;
}

.nav-menu a.active-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
}

@media (max-width: 768px) {
    .nav-menu a.active-link::after {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .logo img {
        max-height: 40px !important;
    }
    
    .logo div {
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
    }
    
    .logo span {
        font-size: 0.65em !important;
        white-space: nowrap;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #D1D1D1;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 99;
    }
    
    .nav-menu a {
        color: #000000 !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 0.5rem 0;
    }
}

/* News Ticker */
.news-ticker {
    background-color: #35cbfc;
    color: #000;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.ticker-label {
    background-color: #08a7db;
    padding: 0 20px;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-scroll {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Newsflash Slideshow */
.newsflash-section {
    background-color: #ffffff;
    padding: 2rem 0;
}

.newsflash-slider {
    position: relative;
    background-color: #d1d1d1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(253, 216, 53, 0.1);
}

.newsflash-header {
    background: linear-gradient(135deg, #35cbfc 0%, #08a7db 100%);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
}

.flash-icon {
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 2px;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.newsflash-slides {
    position: relative;
    min-height: 480px;
}

.newsflash-slide {
    display: none;
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

.newsflash-slide.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.newsflash-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.newsflash-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    z-index: 0;
}

.news-slide-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    max-width: 650px;
}

.news-date {
    display: inline-block;
    background-color: #35cbfc;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.newsflash-slide h3 {
    color: #35cbfc;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.newsflash-slide p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.news-read-more {
    display: inline-block !important;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border: 2px solid #35cbfc;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: 0.5rem;
    background-color: #35cbfc;
    visibility: visible !important;
}

.news-read-more:hover {
    background-color: transparent;
    color: #35cbfc;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(53, 203, 252, 1);
}

.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(151, 229, 255, 1);
    color: #000;
    border: none;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 5px;
}

.slide-prev {
    left: 10px;
}

.slide-next {
    right: 10px;
}

.slide-prev:hover,
.slide-next:hover {
    background-color: #35cbfc;
    transform: translateY(-50%) scale(1.1);
}

.slide-dots {
    text-align: center;
    padding: 1rem 0;
    background-color: #0a0a0a;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #333;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #35cbfc;
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    background-color: #1a1a1a;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #35cbfc;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-play {
    background-color: #35cbfc;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-play:hover {
    background-color: #d4af37;
    transform: scale(1.05);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.content-grid .broadcaster-info {
    grid-column: 1;
    grid-row: 1;
}

.content-grid .schedule {
    grid-column: 2;
    grid-row: 1;
}

.content-grid .top-songs {
    grid-column: 1;
    grid-row: 2;
}

.content-grid .chat-widget {
    grid-column: 2;
    grid-row: 2;
}

section {
    background-color: rgba(0,0,0,0.8);
    padding: 1.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

section h2 {
    color: #35cbfc;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #35cbfc;
    padding-bottom: 0.5rem;
}

/* Broadcaster Card */
.broadcaster-card {
    text-align: center;
}

.live-broadcaster-photo {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.live-broadcaster-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 4px solid #35cbfc;
}

/* Sonar/Pulse Animation */
.live-broadcaster-photo::before,
.live-broadcaster-photo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #35cbfc;
    opacity: 0;
    animation: sonarPulse 2s ease-out infinite;
}

.live-broadcaster-photo::after {
    animation-delay: 1s;
}

@keyframes sonarPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Live Badge */
.live-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5);
    animation: liveBlink 1.5s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.broadcaster-card h3 {
    margin: 1rem 0 0.5rem;
    color: #35cbfc;
    font-size: 1.5rem;
}

.broadcaster-card .program-title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin: 0.5rem 0;
}

.broadcaster-card .time-slot {
    color: #35cbfc;
    font-weight: bold;
    margin: 0.5rem 0;
}

.broadcaster-card .bio {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Old broadcaster card styles (fallback) */
.broadcaster-card img:not(.live-broadcaster-photo img) {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #35cbfc;
}

.broadcaster-card h3 {
    color: #35cbfc;
    margin-bottom: 0.5rem;
}

/* Schedule */
.schedule-list {
    /*display: flex;*/
    flex-direction: column;
    gap: 0.7rem;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 2px;
    scrollbar-width: thin;
    scrollbar-color: #35cbfc #1a1a1a;
    margin-bottom: 0;
}

.schedule-list::-webkit-scrollbar {
    width: 8px;
}

.schedule-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.schedule-list::-webkit-scrollbar-thumb {
    background: #35cbfc;
    border-radius: 10px;
}

.schedule-list::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

.schedule-item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0;
    padding: 0.7rem 1.2rem 0.7rem 0.9rem;
    background: linear-gradient(90deg, #23272b 80%, #1a1a1a 100%);
    border-radius: 8px;
    border-left: 4px solid #35cbfc;
    box-shadow: 0 2px 8px rgba(53,203,252,0.04);
    margin-bottom: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 56px;
    position: relative;
}
.schedule-item:not(:last-child) {
    margin-bottom: 0.2rem;
}
.schedule-item .time {
    font-weight: bold;
    color: #35cbfc;
    min-width: 120px;
    max-width: 120px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-align: left;
    margin-top: 0;
    flex-shrink: 0;
    display: flex;
    align-items: baseline;
}

.program-info {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0;
}
.program-info h3 {
    font-size: 0.88rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
    display: inline;
    margin-right: 3.2rem;
    min-width: 110px;
    max-width: 110px;
}
.program-info p {
    color: #b3b3b3;
    font-size: 0.92rem;
    margin-bottom: 0;
    display: inline;
    margin-left: 0;
    min-width: unset;
}

/* Songs List */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 5px;
}

.songs-list::-webkit-scrollbar {
    width: 8px;
}

.songs-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.songs-list::-webkit-scrollbar-thumb {
    background: #35cbfc;
    border-radius: 10px;
}

.songs-list::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(0,0,0,0.8);
    border-radius: 5px;
}

.song-item .rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: #35cbfc;
    min-width: 30px;
}

.song-item img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.song-info p {
    color: #999;
    font-size: 0.9rem;
}

.play-count {
    color: #35cbfc;
    font-size: 0.9rem;
}

/* Chat Widget */
.chat-widget {
    grid-column: 2;
    grid-row: 2;
}

.chat-messages {
    background-color: #222;
    padding: 1rem;
    border-radius: 5px;
    min-height: 200px;
}

/* Statistics */
.stats {
    background-color: #b3b3b3;
    padding: 3rem 0;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0,0,0,0.7);
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #35cbfc;
    margin-bottom: 0.5rem;
}

/* Footer Player */
.footer-player {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    z-index: 99;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-controls button {
    background-color: #35cbfc;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #35cbfc;
}

/* Page Content */
.page-content {
    
    margin-bottom: 80px;
}

.page-content h1 {
    color: #000000;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* Day Selector */
.day-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.day-btn {
    padding: 0.8rem 1.5rem;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.day-btn:hover,
.day-btn.active {
    background-color: #35cbfc;
    color: #000;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.schedule-card:hover {
    transform: translateY(-5px);
}

.schedule-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.schedule-card h3 {
    padding: 1rem;
    color: #35cbfc;
}

.schedule-card .broadcaster,
.schedule-card .description {
    padding: 0 1rem 1rem;
    color: #999;
}

.time-badge {
    background-color: #35cbfc;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: bold;
}

/* Broadcasters Grid */
.broadcasters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.broadcaster-card-full {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.broadcaster-card-full:hover {
    transform: translateY(-5px);
}

.broadcaster-card-full img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #35cbfc;
}

.broadcaster-card-full h3 {
    color: #35cbfc;
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.status-badge.online {
    background-color: #ff0000;
    color: #fff;
}

.social-links-broadcaster {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.social-links-broadcaster a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-broadcaster a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

.social-links-broadcaster a svg {
    width: 20px;
    height: 20px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h2 {
    color: #35cbfc;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    border: none;
    padding: 0;
}

.news-content .date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-read-more {
    display: inline-block;
    color: #35cbfc;
    text-decoration: none;
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border: 2px solid #35cbfc;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.btn-read-more:hover {
    background-color: #35cbfc;
    color: #000;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(253, 216, 53, 0.3);
}

/* News Detail Page */
.news-detail {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.news-detail-header {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    color: #35cbfc;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
    color: #fff;
}

.news-detail h1 {
    color: #35cbfc;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-meta {
    color: #999;
    font-size: 0.95rem;
    display: flex;
    gap: 1.5rem;
}

.news-meta .updated {
    color: #666;
    font-style: italic;
}

.news-detail-image {
    margin: 2rem 0;
    text-align: center;
}

.news-detail-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.news-detail-content {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
    text-align: justify;
}

.news-detail-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.btn-back {
    display: inline-block;
    color: #35cbfc;
    text-decoration: none;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border: 2px solid #35cbfc;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-back:hover {
    background-color: #35cbfc;
    color: #000;
    transform: translateX(-5px);
}

/* Related News */
.related-news {
    margin-top: 3rem;
}

.related-news h2 {
    color: #35cbfc;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #35cbfc;
}

.news-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.news-card-small {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card-small:hover {
    transform: translateY(-5px);
}

.news-card-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.news-card-content {
    padding: 1rem;
}

.news-card-content h3 {
    color: #35cbfc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.news-card-content .date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-card-content .link-read {
    color: #35cbfc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}

.news-card-content .link-read:hover {
    color: #fff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #35cbfc;
    color: #000;
}

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.album-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    text-align: center;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.album-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #35cbfc;
}

.album-card .artist {
    padding: 0 1rem;
    color: #fff;
}

.album-card .year {
    padding: 0 1rem 1rem;
    color: #999;
    font-size: 0.9rem;
}

/* Gallery specific styles (moved from galeri.php) */
.gallery-tabs { display:flex; gap:1rem; margin-bottom:1rem; }
.gallery-tab { padding:8px 14px; background:#111; color:#fff; border-radius:6px; cursor:pointer; }
.gallery-tab.active { background:#35cbfc; color:#000; }
.albums-grid, .gallery-albums-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1rem; }
.album-card, .video-card { background:#191919; padding:1rem; border-radius:10px; color:#fff; box-shadow:0 2px 8px rgba(0,0,0,0.1); }
.album-card img, .video-thumb { width:100%; height:150px; object-fit:cover; border-radius:8px; background:#fff; }
.video-embed iframe { width:100%; height:180px; border:0; border-radius:8px; }
.youtube-list { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1rem; }
.youtube-item img { width:100%; height:120px; object-fit:cover; border-radius:8px; }

/* Lightbox */
.lightbox { position:fixed; inset:0; background:rgba(0,0,0,0.85); display:none; align-items:center; justify-content:center; z-index:9999; }
.lightbox img { max-width:90%; max-height:90%; border-radius:8px; box-shadow:0 10px 40px rgba(0,0,0,0.6); }
.lightbox.visible { display:flex; }
.lightbox .close-btn { position:absolute; top:20px; right:20px; background:rgba(0,0,0,0.6); color:#fff; border:none; padding:8px 12px; border-radius:6px; cursor:pointer; }

/* Pause animations on hover (useful for scrolling/auto animations) */
.crew-list-scroll:hover, .ticker-scroll:hover { animation-play-state: paused; }

/* Album detail grid */
.album-detail-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(200px,1fr)); gap:1rem; }
.album-detail-item img { width:100%; height:200px; object-fit:cover; border-radius:8px; }

@media (max-width:600px) {
    .albums-grid, .album-detail-grid { grid-template-columns: 1fr 1fr; }
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.video-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    padding: 1rem;
    color: #35cbfc;
}

.video-card p {
    padding: 0 1rem 1rem;
    color: #999;
}

/* Promotions Grid */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.promotion-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.promotion-card:hover {
    transform: translateY(-5px);
}

.promotion-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.promo-content {
    padding: 1.5rem;
}

.promo-content h2 {
    color: #35cbfc;
    margin-bottom: 1rem;
}

.promo-dates {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: #999;
    font-size: 0.9rem;
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateX(10px);
}

.event-date {
    background-color: #35cbfc;
    color: #000;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.event-date .month {
    display: block;
    font-size: 1rem;
}

.event-details h2 {
    color: #35cbfc;
    margin-bottom: 1rem;
}

.event-details .time,
.event-details .location {
    margin-bottom: 0.5rem;
    color: #999;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form h2,
.contact-info h2 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #35cbfc;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #35cbfc;
    color: #000;
}

.btn-primary:hover {
    background-color: #d4af37;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.alert-success {
    background-color: #4caf50;
    color: #fff;
}

.alert-error {
    background-color: #f44336;
    color: #fff;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details h3 {
    color: #35cbfc;
    margin-bottom: 1rem;
}

.social-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: #35cbfc;
    color: #000;
}

/* Site Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 3rem 0 1rem;
    margin-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #35cbfc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #35cbfc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-control input[type="range"] {
    width: 100px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .newsflash-slide img {
        width: 350px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
        max-width: 100vw;
    }
    
    header {
        padding: 0.5rem 0;
        max-width: 100vw;
    }
    
    nav {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .news-ticker {
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .ticker-label {
        padding: 0 10px;
        flex-shrink: 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-grid .broadcaster-info,
    .content-grid .schedule,
    .content-grid .top-songs,
    .content-grid .chat-widget {
        grid-column: 1;
        grid-row: auto;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 30px 15px;
        min-height: auto;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.5rem 0px;
    }
    
    section {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        border-radius: 5px;
    }
    
    section h2 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
    }
    
    .broadcaster-card {
        padding: 1rem 0;
    }
    
    .live-broadcaster-photo {
        margin-bottom: 0.5rem;
    }
    
    .live-broadcaster-photo img {
        width: 80px;
        height: 80px;
    }
    
    .live-broadcaster-photo::before,
    .live-broadcaster-photo::after {
        width: 80px;
        height: 80px;
        transform-origin: center center;
    }
    
    .broadcaster-card h3 {
        font-size: 1rem;
    }
    
    .broadcaster-card .program-title {
        font-size: 0.85rem;
    }
    
    .schedule-item {
        flex-direction: column;
        padding: 0.75rem 0;
        gap: 0.5rem;
    }
    
    .schedule-item .time {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .program-info h3 {
        font-size: 0.95rem;
    }
    
    .program-info p {
        font-size: 0.8rem;
    }
    
    .song-item {
        padding: 0.75rem 0;
        gap: 0.5rem;
    }
    
    .song-item .rank {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    .song-info h3 {
        font-size: 0.9rem;
    }
    
    .song-info p {
        font-size: 0.8rem;
    }
    
    .play-count {
        font-size: 0.8rem;
    }
    
    .chat-messages {
        padding: 0.5rem;
        min-height: 150px;
    }
    
    .stats {
        padding: 1rem 0;
        margin: 0.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
    
    .schedule-grid,
    .broadcasters-grid,
    .news-grid,
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .videos-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .footer-player {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 10px;
        align-items: center;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .player-controls {
        gap: 0.5rem;
        font-size: 0.75rem;
        flex: 1;
    }
    
    .player-controls button {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .player-controls span {
        font-size: 0.75rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .volume-control {
        width: 80px;
        flex-shrink: 0;
    }
    
    .volume-control input[type="range"] {
        width: 100%;
    }
    
    .newsflash-section {
        padding: 0.75rem 0;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .newsflash-section .container {
        padding: 0;
        max-width: 100%;
    }
    
    .newsflash-slider {
        border-radius: 8px;
        max-width: 100%;
    }
    
    .newsflash-slides {
        min-height: 480px;
    }
    
    .newsflash-slide {
        min-height: 480px;
    }
    
    .newsflash-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .news-slide-content {
        padding: 2rem 1.5rem;
    }
    
    .date-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .newsflash-content h2 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .newsflash-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .newsflash-content .read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .newsflash-slide h3 {
        font-size: 1.3rem;
    }
    
    .newsflash-slide p {
        font-size: 0.95rem;
    }
    
    .news-read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .slide-prev,
    .slide-next {
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }
    
    .slide-prev {
        left: 5px;
    }
    
    .slide-next {
        right: 5px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .day-selector {
        gap: 0.3rem;
    }
    
    .day-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #000000;
    }

    /* Reduce logo image height slightly so menu items have more room */
    .logo img {
        max-height: 70px !important;
    }
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .btn-play {
        padding: 10px 30px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    section {
        padding: 1rem;
    }
    
    section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .newsflash-section {
        padding: 1rem 0;
    }
    
    .newsflash-slides {
        min-height: 480px;
    }
    
    .newsflash-slide {
        min-height: 480px;
    }
    
    .news-slide-content {
        padding-top:16.5rem;
    }
    
    .newsflash-slide h3 {
        font-size: 1.1rem;
    }
    
    .newsflash-slide p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .newsflash-slide img {
        width: 100%;
        height: 100%;
    }
    
    .news-read-more {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .slide-prev,
    .slide-next {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }
    
    .slide-prev {
        left: 5px;
    }
    
    .slide-next {
        right: 5px;
    }
    
    .ticker-label {
        padding: 0 10px;
        font-size: 0.85rem;
    }
    
    .news-ticker {
        height: 35px;
        font-size: 0.9rem;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
    
    .schedule-card,
    .broadcaster-card-full,
    .news-card,
    .album-card,
    .promotion-card {
        margin-bottom: 1rem;
    }
    
    .day-selector {
        gap: 0.2rem;
        flex-wrap: wrap;
    }
    
    .day-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        flex: 1 1 calc(33.333% - 0.2rem);
        min-width: calc(33.333% - 0.2rem);
    }
    
    .footer-player {
        padding: 0.8rem 10px;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .player-controls button {
        width: 35px;
        height: 35px;
    }
    
    .social-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
