@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Mukta+Mahee:wght@400;700&display=swap');

:root {
    --primary-color: #f39c12;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-color: #333;
    --glass-white: rgba(255, 255, 255, 0.95);
    --glass-dark: rgba(0, 0, 0, 0.5);
    --premium-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: #000;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.punjabi-text {
    font-family: 'Mukta Mahee', sans-serif;
}

/* Header Section */
header {
    background: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    border-bottom: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.brand-section img {
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.brand-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-left: 20px;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Slider Section */
.hero-slider {
    position: relative;
    height: 72vh;
    z-index: 1;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: linear-gradient(to top, #000, transparent);
    z-index: 2;
}

.carousel-item,
.carousel-inner {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.6);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 3;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Pill Player Design */
.player-outer {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.player-card {
    background: white;
    border-radius: 100px;
    padding: 12px 15px 12px 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.player-art-wrap {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.player-info-meta {
    min-width: 150px;
}

.player-info-meta h5 {
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.live-badge {
    background: #e67e22;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.player-controls-group {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.progress-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-line {
    flex-grow: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 30%;
    border-radius: 10px;
    position: relative;
}

.progress-knob {
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: -4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.volume-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 130px;
    color: #999;
}

.volume-wrap input {
    height: 4px;
}

.play-pause-circle {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
    transition: transform 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}

.play-pause-circle:hover {
    transform: scale(1.05);
}

/* Mobile 2x2 Grid for Buttons */
@media (max-width: 768px) {
    header {
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 0;
    }

    .brand-section img {
        height: 35px;
    }

    .brand-text h4 {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .brand-text p {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .nav-links a {
        margin: 0 2px;
        font-size: 0.75rem;
    }

    .social-icons {
        display: none;
        /* Hide social on small header */
    }

    .hero-slider {
        height: 55vh;
    }

    .player-outer {
        margin-top: -30px;
        padding: 0 10px;
    }

    .player-card {
        padding: 10px;
        gap: 12px;
        border-radius: 50px;
    }

    .player-art-wrap {
        width: 50px;
        height: 50px;
    }

    .player-info-meta {
        min-width: 80px;
    }

    .player-info-meta h5 {
        font-size: 0.85rem;
    }

    .player-controls-group {
        display: none;
    }

    .play-pause-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .action-buttons-row {
        margin-top: 5px;
        padding: 10px;
    }

    .action-buttons-row .row {
        margin: 0;
        gap: 10px !important;
    }

    .action-buttons-row .col-6 {
        width: calc(50% - 10px);
        padding: 0;
    }

    .premium-action-card {
        height: 60px;
        border-radius: 12px;
        flex-direction: row;
        padding: 10px;
        gap: 10px;
        justify-content: flex-start;
        width: 100%;
    }

    .premium-action-card i {
        font-size: 1.25rem;
        margin: 0;
    }

    .premium-action-card span {
        font-size: 0.8rem;
        text-align: left;
        line-height: 1.2;
        font-weight: 700;
    }
}

/* Action Buttons Row - Centered (Desktop) */
.action-buttons-row {
    margin-top: 25px;
    margin-bottom: 0px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.premium-action-card {
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    justify-content: center;
}

.premium-action-card:hover {
    transform: translateY(-5px);
    color: white;
}

.premium-action-card i {
    font-size: 1.6rem;
    margin-right: 12px;
}

.premium-action-card span {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-listen {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.btn-katha {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.btn-nitnem {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.btn-shabad {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

/* Minimal Admin Link */
.admin-access {
    position: fixed;
    bottom: 5px;
    left: 5px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    z-index: 100;
}

footer {
    display: none;
}