:root {
    --bg-color: #0a0a0a;
    --bg-surface: #121212;
    --bg-surface-light: #1e1e1e;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-primary: #f56200;
    --accent-secondary: #ff3b3b;
    --glass-bg: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--accent-primary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 32px;
    background: var(--accent-primary);
    border-radius: 4px;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.method-card:hover {
    transform: translateX(10px);
    border-color: rgba(245, 98, 0, 0.3);
}

.method-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    background: rgba(245, 98, 0, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.06);
}

/* Footer */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Header & Nav */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

.glass-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s;
}

.glass-nav.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon {
    color: #25D366; /* WhatsApp Green */
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 59, 59, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 59, 59, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

/* Buttons */
.btn {
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 20px rgba(245, 98, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 98, 0, 0.6);
    background: #ff741a;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.8rem;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
    background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.audio-visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    opacity: 0.3;
    overflow: hidden;
}

.audio-bar {
    flex: 1;
    background: var(--accent-primary);
    animation: equalize 1.5s infinite ease-in-out alternate;
}

@keyframes equalize {
    0% { height: 10%; }
    50% { height: 80%; }
    100% { height: 10%; }
}

/* Live Now Section */
.live-now {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.live-player-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.live-art {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.live-details {
    flex: 1;
}

.live-tag {
    display: inline-block;
    color: var(--accent-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.live-title {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

.live-host {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.live-progress {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 65%;
    background: var(--accent-primary);
    border-radius: 3px;
}

.time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

/* New Live Grid & Upcoming Tracks */
.live-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.upcoming-list-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.upcoming-list-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
}

.upcoming-tracks {
    list-style: none;
    flex: 1;
    overflow-y: auto;
    max-height: 200px;
    padding-right: 10px;
}

.upcoming-tracks::-webkit-scrollbar {
    width: 6px;
}
.upcoming-tracks::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 3px;
}

.upcoming-tracks li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.upcoming-tracks li:last-child {
    border-bottom: none;
}

.empty-state {
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* Featured Shows Section */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(245, 98, 0, 0.15);
    border-color: rgba(245, 98, 0, 0.3);
}

.featured-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--bg-surface-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

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

.featured-card:hover .featured-img-wrapper img {
    transform: scale(1.1);
}

.featured-img-wrapper .play-hover {
    position: absolute;
    inset: 0;
    background: rgba(245, 98, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.featured-card:hover .play-hover {
    opacity: 1;
}

.featured-img-wrapper .play-hover i {
    font-size: 3rem;
    color: white;
}

.featured-content h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: var(--text-color);
}

.featured-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(245, 98, 0, 0.1);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.featured-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Schedule / Grid Layouts */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-surface);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18,18,18,1) 0%, rgba(18,18,18,0) 100%);
}

.card-content {
    padding: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(245, 98, 0, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.play-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 98, 0, 0.4);
}

.card:hover .play-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Schedule List */
.schedule-list {
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 2rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-item.active {
    background: rgba(245, 98, 0, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0 -1.5rem;
    border: 1px solid rgba(245, 98, 0, 0.2);
}

.s-time {
    font-family: monospace;
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.s-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

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

/* Community Section */
.community {
    background: var(--bg-surface-light);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.community-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.community-text {
    flex: 1;
}

.community-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.whatsapp-box {
    flex: 1;
    background: #121212;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #25D366;
    text-align: center;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.1);
}

.whatsapp-box i {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1rem;
}

/* Persistent Player */
.bottom-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}

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

.album-art {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: url('https://images.unsplash.com/photo-1614613535308-eb5fbd3d2c17?auto=format&fit=crop&w=150&q=80') center/cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.track-details h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.track-details p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.player-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.player-controls-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.ctrl-btn:hover {
    color: white;
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: black;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

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

.player-progress {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.player-progress .time {
    font-size: 0.75rem;
    min-width: 40px;
}

.player-right {
    width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

/* Volume Slider */
input[type=range] {
    -webkit-appearance: none;
    width: 100px;
    background: transparent;
}
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}
input[type=range]::-webkit-slider-thumb {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4px;
}
input[type=range]:hover::-webkit-slider-thumb {
    background: var(--accent-primary);
}
input[type=range]:hover::-webkit-slider-runnable-track {
    background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { gap: 1.5rem; }
    .hero-title { font-size: 4rem; }
}

@media (max-width: 992px) {
    .social-icon { display: none; }
    .nav-container { flex-wrap: wrap; }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    .nav-links a { font-size: 0.9rem; }
    .hero-title { font-size: 3.5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .community-wrapper { flex-direction: column; }
    .live-grid, .contact-grid { grid-template-columns: 1fr; }
    .live-player-card { flex-direction: column; text-align: center; }
    .player-right, .player-info { width: auto; }
    .player-progress { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero { padding-top: 140px; }
    
    .section-title { font-size: 2rem; }
    .contact-info h2 { font-size: 2rem; }
    
    .bottom-player {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }
    
    .player-right { display: none; } /* Hide volume on mobile */
    .player-center { width: auto; flex: 0; }
    .player-controls-main .ctrl-btn { display: none; } /* Hide secondary controls */
    .player-controls-main .play-btn { width: 50px; height: 50px; font-size: 1.8rem; }
    
    .player-info { flex: 1; min-width: 0; }
    .track-details h4 { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .track-details p { font-size: 0.8rem; }
    .album-art { width: 50px; height: 50px; }
    
    .live-art { width: 100%; height: auto; max-width: 250px; margin: 0 auto 1.5rem auto; border-radius: 12px; }
    
    .schedule-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .schedule-item .btn { align-self: flex-start; }
    
    .contact-grid { gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .nav-container .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .live-badge { display: none; } /* Save space on very small screens */
    .contact-form-card { padding: 1.5rem; }
    .featured-card { padding: 1.5rem 1rem; }
}
