* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.logo i {
    font-size: 36px;
    color: #00d4ff;
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.play-btn {
    background: #00d4ff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.play-btn:hover {
    background: #00b8e6;
    transform: scale(1.1);
}

.play-btn.playing i:before {
    content: "\f04c";
}

.player-info {
    display: flex;
    flex-direction: column;
}

.now-playing {
    font-size: 12px;
    color: #00d4ff;
    font-weight: 600;
}

.station-name {
    font-size: 14px;
    font-weight: 500;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-control i {
    color: #00d4ff;
}

#volumeSlider {
    width: 100px;
}

/* Navigation */
.navbar {
    background: #0f3460;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: #00d4ff;
    color: #1a1a2e;
}

.nav-menu li a i {
    margin-right: 8px;
}

/* Main Content Layout */
.main-content {
    padding: 30px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 30px;
}

/* Widgets */
.widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    padding-bottom: 15px;
    border-bottom: 3px solid #00d4ff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* On Air Widget */
.on-air-content {
    text-align: center;
}

.program-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff, #0f3460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 40px;
    color: white;
}

.on-air-content h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.program-host {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.program-time {
    color: #00d4ff;
    font-weight: 600;
    font-size: 14px;
}

/* Last Songs */
.song-list {
    list-style: none;
}

.song-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.song-list li:last-child {
    border-bottom: none;
}

.song-list li:hover {
    background: #f8f8f8;
}

.song-cover {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0f3460, #00d4ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.song-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.song-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.artist-name {
    font-size: 12px;
    color: #666;
}

/* Request Banner */
.request-banner {
    background: linear-gradient(135deg, #00d4ff, #0f3460);
    color: white;
    text-align: center;
}

.banner-content i {
    font-size: 48px;
    margin-bottom: 15px;
}

.banner-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.banner-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-request {
    background: white;
    color: #0f3460;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Social Media */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 20px;
    width: 30px;
}

.social-btn:hover {
    transform: translateX(5px);
}

.social-btn.facebook { background: #3b5998; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.twitter { background: #1da1f2; }
.social-btn.youtube { background: #ff0000; }

/* Featured News */
.featured-news {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00d4ff;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.featured-content {
    padding: 30px;
}

.featured-content h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.featured-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.featured-meta i {
    margin: 0 15px 0 0;
    color: #00d4ff;
}

.featured-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-read-more {
    display: inline-block;
    background: #0f3460;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,212,255,0.3);
}

/* Section Header */
.section-header {
    margin: 40px 0 25px;
}

.section-header h2 {
    font-size: 24px;
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.section-line {
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    margin-top: 10px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-category {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.news-category.tech { background: #4ecdc4; color: white; }
.news-category.sports { background: #ff6b6b; color: white; }
.news-category.economy { background: #4CAF50; color: white; }
.news-category.culture { background: #9b59b6; color: white; }
.news-category.business { background: #f39c12; color: white; }

.news-content h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

.news-meta i {
    color: #00d4ff;
    margin-right: 5px;
}

/* Messages Section */
.messages-section {
    margin-bottom: 40px;
}

.message-card {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.message-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0f3460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-content h4 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.message-time {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-left: 10px;
}

.message-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.btn-send-message {
    background: #0f3460;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    background: #00d4ff;
    transform: translateY(-2px);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail i {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-card h4 {
    padding: 15px 15px 8px;
    font-size: 15px;
    color: #1a1a2e;
}

.video-card p {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #666;
}

/* Top Songs */
.top-list {
    list-style: none;
}

.top-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.top-list li:last-child {
    border-bottom: none;
}

.top-list li:hover {
    background: #f8f8f8;
}

.rank-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00d4ff, #0f3460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.song-cover-top {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0f3460, #00d4ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.song-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.song-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.artist {
    font-size: 12px;
    color: #666;
}

/* Statistics */
.stats-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
}

.stat-item i {
    font-size: 32px;
    color: #00d4ff;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

/* Weather Widget */
.weather-content {
    text-align: center;
    padding: 20px 0;
}

.weather-icon {
    font-size: 64px;
    color: #ffa500;
    margin-bottom: 15px;
}

.weather-temp {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.weather-location {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.weather-desc {
    font-size: 14px;
    color: #999;
}

/* Newsletter */
.newsletter p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00d4ff;
}

.newsletter-form button {
    background: #0f3460;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #00d4ff;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00d4ff;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-section i {
    margin-right: 10px;
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-left,
    .sidebar-right {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .audio-player {
        flex-direction: column;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .news-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content h2 {
        font-size: 24px;
    }
    
    .sidebar-left,
    .sidebar-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }
    
    .logo i {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
}