/* MBA Radyo - Styles */

:root {
    --primary-dark: #1B365D;
    --primary-orange: #F7941D;
    --primary-orange-light: #FFA94D;
    --bg-dark: #0F172A;
    --bg-card: #1E293B;
    --bg-card-light: #334155;
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
    --text-light: #CBD5E1;
    --accent-glow: rgba(247, 148, 29, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, #2D4A6F 100%);
    --gradient-orange: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark); 
    color: var(--text-white);
    min-height: 100vh;
}
.white-logo {
    filter: brightness(0) invert(1);
}
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-orange);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.logo-text h1 .orange {
    color: var(--primary-orange);
}

.logo-text .subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Player Section */
.player-section {
    margin-bottom: 60px;
}

.player-card {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.player-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.5;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.album-art {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: rotate 3s linear infinite paused;
}

.vinyl-record.playing {
    animation-play-state: running;
}

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

.vinyl-grooves {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        transparent 0px,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}

.vinyl-label i {
    font-size: 24px;
    color: var(--primary-dark);
}

.track-info {
    flex: 1;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 148, 29, 0.2);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.live-badge i {
    font-size: 0.6rem;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.track-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.track-artist {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
}



/* Controls */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.control-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-orange);
    color: var(--primary-dark);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(247, 148, 29, 0.5);
}

.control-btn:active {
    transform: scale(0.95);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.volume-control i {
    font-size: 1.2rem;
}

#volumeSlider {
    width: 120px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(247, 148, 29, 0.4);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Artist Section */
.artist-section {
    margin-bottom: 60px;
}

.artist-card {
    background: var(--bg-card);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(247, 148, 29, 0.1);
}

.artist-image {
    position: relative;
    width: 350px;
    flex-shrink: 0;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(27, 54, 93, 0.9));
}

.play-count {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 500;
}

.play-count i {
    color: var(--primary-orange);
}

.artist-info {
    padding: 40px;
    flex: 1;
}

.artist-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.artist-genre {
    display: inline-block;
    background: rgba(247, 148, 29, 0.15);
    color: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.artist-bio {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.artist-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.stat i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.top-songs h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.top-songs ul {
    list-style: none;
}

.top-songs li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.top-songs li:hover {
    color: var(--text-white);
}

.top-songs li:last-child {
    border-bottom: none;
}

.song-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-orange);
    color: var(--primary-dark);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 60px;
}

.schedule-grid {
    display: grid;
    gap: 15px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: 15px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: var(--bg-card-light);
    transform: translateX(5px);
}

.schedule-item.active {
    border-left-color: var(--primary-orange);
    background: linear-gradient(90deg, rgba(247, 148, 29, 0.1) 0%, var(--bg-card) 100%);
}

.schedule-item .time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
    min-width: 120px;
}

.program-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.program-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    margin-bottom: 40px;
}

.about-content {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.contact-item i {
    color: var(--primary-orange);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-btn:hover {
    background: var(--primary-orange);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.footer p {
    margin-bottom: 8px;
}

.powered-by {
    font-size: 0.85rem;
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 968px) {
    .artist-card {
        flex-direction: column;
    }
    
    .artist-image {
        width: 100%;
        height: 300px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 12px;
        text-align: center;
    }
    .nav-links a {
        font-size: 0.8rem;
    }

    .now-playing {
        flex-direction: column;
        text-align: center;
    }
    
    .album-art {
        width: 150px;
        height: 150px;
    }
    
    .track-title {
        font-size: 1.8rem;
    }
    
    .controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .schedule-item .time {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .app-container {
        padding: 15px;
    }
    
    .player-card {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .artist-info {
        padding: 25px;
    }
    
    .artist-name {
        font-size: 1.5rem;
    }
}
