:root {
    --bg-main: #0b0b0b;
    --bg-sec: #141414;
    --bg-hover: #1f1f1f;
    --accent: #ff3b3b;
    --accent-hover: #e62424;
    --text-main: #ffffff;
    --text-sec: #a0a0a0;
    --border: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 59, 59, 0.4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 59, 59, 0.7);
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    padding-bottom: 90px;
    /* Space for global player */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

.desktop-nav a {
    color: var(--text-sec);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-right: 24px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-right a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
}

.login-btn {
    color: var(--text-main);
}

.signup-btn {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background 0.2s;
}

.signup-btn:hover {
    background: var(--accent-hover);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }
    .desktop-nav {
        display: none;
    }
    .nav-left {
        gap: 15px;
    }
    .logo {
        font-size: 18px;
    }
    .signup-btn, .login-btn {
        display: none !important;
    }
    .nav-right {
        gap: 15px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(11, 11, 11, 0.6), rgba(11, 11, 11, 1)), url('../static/music-production-studio-with-synthesizer-and-sound-equipment-photo.jpg') center/cover;
    overflow: hidden;
    /* For ambient orbs */
}

.ambient-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.15) 0%, rgba(255, 59, 59, 0) 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: floatingOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -100px;
    left: -100px;
}

.orb-2 {
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes floatingOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-sec);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 15px;
    }
}

.search-bar-container {
    position: relative;
    width: 100%;
}

.search-bar-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-sec);
    font-size: 18px;
}

.search-bar-container input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--bg-sec);
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s;
}

.search-bar-container input:focus {
    border-color: var(--accent);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: var(--bg-sec);
    border: 1px solid var(--border);
    color: var(--text-sec);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    color: var(--text-main);
    border-color: #444;
}

.filter-btn.active {
    background: var(--text-main);
    color: var(--bg-main);
    border-color: var(--text-main);
}

/* Tracklist */
.tracklist {
    background: var(--bg-sec);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: visible !important;
}

.tracklist-header {
    display: grid;
    grid-template-columns: 60px 2.5fr 70px 70px 1.5fr 90px 130px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-sec);
    letter-spacing: 1px;
}

.track-row {
    display: grid !important;
    grid-template-columns: 60px 2.5fr 70px 70px 1.5fr 90px 130px;
    padding: 15px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    position: relative;
    overflow: visible;
    white-space: nowrap;
    width: 100%;
}

/* Filter: hide rows that don't match — must use !important to beat the grid above */
.track-row.hidden {
    display: none !important;
}

.track-row:last-child {
    border-bottom: none;
}

.track-row:hover {
    background: var(--bg-hover);
}



.col-play {
    display: flex;
    justify-content: center;
}

.track-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.1s;
}

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

.col-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-cover {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.track-row:hover .track-cover {
    transform: scale(1.1) rotate(2deg);
}

.track-info {
    display: flex;
    flex-direction: column;
}

.track-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 4px;
}

.track-name:hover {
    text-decoration: underline;
}

.track-producer {
    font-size: 13px;
    color: var(--text-sec);
}

/* Mini Waveform Equalizer */
.equalizer {
    display: none;
    align-items: flex-end;
    gap: 2px;
    width: 20px;
    height: 15px;
    margin-left: 10px;
}

.track-row.playing .equalizer {
    display: flex;
}

.equalizer span {
    width: 3px;
    background: var(--accent);
    border-radius: 1px;
    animation: equalize 0.8s infinite ease-in-out;
}

.equalizer span:nth-child(1) {
    height: 60%;
    animation-delay: -0.2s;
}

.equalizer span:nth-child(2) {
    height: 100%;
    animation-delay: -0.4s;
}

.equalizer span:nth-child(3) {
    height: 80%;
    animation-delay: -0.6s;
}

@keyframes equalize {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.col-time,
.col-bpm {
    font-size: 14px;
    color: var(--text-sec);
}

.col-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.col-buy {
    display: flex;
    justify-content: flex-end;
}

.track-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-sec);
    text-transform: uppercase;
}

.buy-cart-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}

.buy-cart-btn:hover {
    background: var(--accent);
    color: white;
}

@media (max-width: 768px) {
    .buy-cart-btn {
        background: var(--accent);
        color: white;
        border: none;
        padding: 10px 12px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: 800;
        box-shadow: 0 4px 12px rgba(255, 59, 59, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100%;
        max-width: 85px;
        margin-left: auto;
    }
    .buy-cart-btn i {
        font-size: 10px;
    }
}

/* Global Player */
.global-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--bg-sec);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.global-player.active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .global-player {
        padding: 0 15px;
        height: 75px;
    }
    .player-left {
        width: 60%;
        gap: 10px;
    }
    .player-cover {
        width: 40px;
        height: 40px;
    }
    .player-title {
        font-size: 13px;
        max-width: 130px;
    }
    .player-producer {
        font-size: 11px;
    }
    .player-center {
        max-width: none;
        flex: 0;
    }
    .player-controls {
        gap: 12px;
    }
    .play-pause-btn {
        width: 32px;
        height: 32px;
    }
    .ctrl-btn.skip-btn {
        display: none;
    }
    .player-right {
        display: none;
    }
    .player-time {
        display: none;
    }
}

.player-left {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: start;
}

.player-cover {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.player-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.player-producer {
    font-size: 13px;
    color: var(--text-sec);
}

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

.player-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--text-sec);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.ctrl-btn:hover {
    color: var(--text-main);
}

.play-pause-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text-main);
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

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

.global-progress-bg {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #333;
    cursor: pointer;
    z-index: 1001;
    transition: height 0.1s, top 0.1s;
}

.global-progress-bg:hover {
    height: 6px;
    top: -5px;
}

.global-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    pointer-events: none;
    position: relative;
}

.global-progress-fill::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.15s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.global-progress-bg:hover .global-progress-fill::after {
    transform: translateY(-50%) scale(1);
}

.player-time {
    font-size: 13px;
    color: var(--text-sec);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-self: end;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-sec);
}

.volume-slider {
    width: 80px;
    accent-color: var(--text-main);
}

.player-buy-btn {
    width: auto;
    padding: 8px 20px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-sec);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    color: var(--text-sec);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.license-row {
    background: linear-gradient(145deg, #161616, #111111);
    border: 1px solid rgba(255, 59, 59, 0.15);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.02);
    transform: perspective(1000px) translateZ(0);
}

.license-row:hover {
    border-color: var(--accent);
    transform: perspective(1000px) translateZ(10px) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 59, 59, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.05);
}

.license-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: white;
}

.license-info ul {
    list-style: none;
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.5;
}

.license-info ul li::before {
    content: "✓ ";
    color: var(--accent);
}

.license-action {
    text-align: right;
}

@media (max-width: 600px) {
    .license-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    .license-action {
        text-align: center;
        width: 100%;
    }
    .license-buy-btn, .license-offer-btn {
        width: 100%;
    }
}

.license-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.license-buy-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.license-buy-btn:hover {
    background: var(--accent-hover);
}

/* =============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================= */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        padding: 0 16px;
        height: 60px;
    }
    .nav-left { gap: 12px; }
    .logo { font-size: 18px; }
    .desktop-nav { display: none; }
    .signup-btn, .login-btn { display: none !important; }
    .nav-right { gap: 0; }
    .cart-nav-container { margin-right: 8px; font-size: 18px; }

    /* --- Hero --- */
    .hero-section { padding: 50px 16px 40px; }
    .hero-content h1 { font-size: 28px; line-height: 1.25; }
    .hero-content p { font-size: 14px; margin-bottom: 25px; }

    /* --- Filters --- */
    .main-content { padding: 20px 12px; }
    .advanced-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .filter-group label { font-size: 11px; }
    .filter-group select, .filter-group input {
        padding: 8px 10px;
        font-size: 13px;
    }

    /* --- Track List --- */
    .tracklist { border-radius: 8px; }
    .tracklist-header {
        grid-template-columns: 50px 1fr 80px;
        padding: 10px 12px;
        font-size: 11px;
    }
    .track-row {
        grid-template-columns: 50px 1fr 80px;
        padding: 10px 12px;
    }
    .col-time,
    .col-bpm,
    .col-tags,
    .col-actions,
    .tracklist-header div:nth-child(3),
    .tracklist-header div:nth-child(4),
    .tracklist-header div:nth-child(5),
    .tracklist-header div:nth-child(6) {
        display: none !important;
    }
    .track-cover { width: 38px; height: 38px; }
    .track-name { font-size: 14px; }
    .track-producer { font-size: 11px; }
    .track-play-btn { width: 36px; height: 36px; font-size: 13px; }
    .col-buy { justify-content: flex-end; }

    /* --- Buy Button (mobile) --- */
    .buy-cart-btn {
        background: var(--accent);
        color: white;
        border: none;
        padding: 9px 13px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 3px 10px rgba(255, 59, 59, 0.4);
        white-space: nowrap;
        width: auto;
        min-width: 60px;
    }
    .buy-cart-btn i { display: none; }

    /* --- Sold Out Button --- */
    .buy-cart-btn[disabled] {
        background: rgba(255,59,59,0.1);
        color: #ff3b3b;
        font-size: 10px;
        border: 1px solid rgba(255,59,59,0.3);
        box-shadow: none;
    }

    /* --- Global Player (Mobile Bottom Bar) --- */
    .global-player {
        padding: 0;
        height: auto;
        flex-direction: column;
        background: #111;
        border-top: 1px solid #222;
    }
    .global-player .player-center { display: none; }
    .global-player .player-right { display: none; }

    /* Mobile player: track info + controls in one row */
    .mobile-player-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        width: 100%;
        gap: 12px;
    }
    .player-left {
        width: auto;
        flex: 1;
        gap: 10px;
        min-width: 0;
    }
    .player-cover { width: 40px; height: 40px; border-radius: 6px; }
    .player-title { font-size: 13px; max-width: 140px; }
    .player-producer { font-size: 11px; }

    /* Mobile player controls row */
    .mobile-player-controls {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
    }
    .mobile-player-controls .ctrl-btn {
        color: white;
        font-size: 18px;
    }
    .mobile-player-controls .play-pause-btn {
        width: 40px;
        height: 40px;
        background: var(--accent);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    /* Mobile progress bar — full width at top of player */
    .mobile-progress-wrap {
        width: 100%;
        padding: 0 16px 6px;
    }
    .mobile-progress-track {
        width: 100%;
        height: 4px;
        background: #333;
        border-radius: 2px;
        position: relative;
        cursor: pointer;
        touch-action: none;
    }
    .mobile-progress-track:active { height: 6px; }
    .mobile-progress-fill {
        height: 100%;
        background: var(--accent);
        border-radius: 2px;
        width: 0%;
        pointer-events: none;
        position: relative;
    }
    .mobile-progress-fill::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 6px rgba(255,59,59,0.6);
    }
    .mobile-progress-time {
        display: flex;
        justify-content: space-between;
        font-size: 10px;
        color: var(--text-sec);
        margin-top: 3px;
    }

    /* --- Sidebar polish --- */
    .mobile-sidebar {
        width: 260px;
        padding: 0;
        overflow-y: auto;
    }
    .sidebar-header {
        padding: 20px 24px;
        background: #111;
        border-bottom: 1px solid #222;
        margin-bottom: 0;
        position: sticky;
        top: 0;
    }
    .sidebar-nav {
        padding: 16px 24px;
        gap: 0;
    }
    .sidebar-nav a {
        padding: 14px 0;
        border-bottom: 1px solid #1a1a1a;
        font-size: 15px;
        gap: 14px;
        transition: color 0.2s;
    }
    .sidebar-nav a:hover { color: var(--accent); }
    .sidebar-nav a:last-child { border-bottom: none; }
    .sidebar-nav a i { font-size: 15px; width: 18px; text-align: center; }
    .close-sidebar {
        font-size: 18px;
        cursor: pointer;
        padding: 4px;
        transition: color 0.2s;
    }
    .close-sidebar:hover { color: var(--accent); }

    /* --- Modals --- */
    .modal-content {
        width: 95%;
        padding: 20px;
        border-radius: 16px;
    }
    .license-row {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
        text-align: center;
    }
    .license-action { width: 100%; text-align: center; }
    .license-buy-btn, .license-offer-btn { width: 100%; padding: 12px; }

    /* --- Info Sections --- */
    .info-section { padding: 50px 16px; }
    .section-title { font-size: 24px; }

    /* --- Carousel --- */
    .carousel-container { padding: 0 8px; }
    .beat-card { min-width: 160px; }

    /* --- Footer --- */
    .site-footer { padding: 20px 16px; }
    .footer-links { flex-wrap: wrap; gap: 12px; justify-content: center; }

    /* --- General spacing --- */
    .section-container { padding: 0 4px; }
}

/* Custom Sections (Licensing, Terms, About) */
.info-section {
    padding: 80px 40px;
    background: var(--bg-main);
}

.info-section.alternate-bg {
    background: var(--bg-sec);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--accent);
}

/* Licensing Grid on Home */
.licenses-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.license-card-home {
    background: linear-gradient(145deg, #161616, #111111);
    border: 1px solid rgba(255, 59, 59, 0.15);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.license-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 59, 59, 0.15);
    border-color: var(--accent);
}

.lic-header-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.lic-header-home h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.price-home {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
}

.lic-features-home {
    list-style: none;
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.8;
}

.lic-features-home li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.lic-features-home li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    margin-top: 2px;
}

/* Terms and About */
.terms-content,
.about-content {
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
    max-width: 900px;
}

.terms-content p,
.about-content p {
    margin-bottom: 20px;
}

.warning-text {
    color: var(--accent);
    font-weight: 600;
    background: rgba(255, 59, 59, 0.1);
    padding: 15px 20px;
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
}

.about-content h3 {
    font-size: 20px;
    color: white;
    margin: 30px 0 15px 0;
}

.genres-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.genres-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.thank-you {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    background: #050505;
    padding: 60px 40px;
    border-top: 1px solid var(--border);
    margin-bottom: 90px;
    /* Space for sticky player */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    color: #666;
    font-size: 13px;
}

/* Hero Waveform Display */
.hero-player-display {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    gap: 20px;
    padding: 0 40px;
}

.hero-track-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: -15px;
}

.hero-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 59, 59, 0.4);
    transition: transform 0.2s;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.hero-tags .tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

#hero-waveform {
    width: 100%;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-loader {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    color: white;
    animation: pulseLogo 1.5s infinite alternate;
}

.logo-loader span {
    color: var(--accent);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 59, 59, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@keyframes pulseLogo {
    from {
        opacity: 0.6;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Featured Carousel */
.featured-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.carousel-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 15px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
}

/* Custom Scrollbar for Carousel */
.carousel-container::-webkit-scrollbar {
    height: 6px;
}

.carousel-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: rgba(255, 59, 59, 0.5);
    border-radius: 10px;
}

.carousel-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 59, 59, 0.8);
}

.carousel-card {
    width: 180px;
    flex-shrink: 0;
    background: var(--bg-sec);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.carousel-card:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    border-color: rgba(255, 59, 59, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.carousel-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.carousel-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-info span {
    font-size: 12px;
    color: var(--text-sec);
    font-weight: 500;
}

.carousel-play {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.4);
}

.carousel-play i.fa-play {
    margin-left: 3px;
}

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

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 59, 59, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.t-quote {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
}

.t-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.t-author span {
    font-size: 12px;
    color: var(--text-sec);
}

/* Advanced Filters */
.advanced-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    padding: 20px;
    background: var(--bg-sec);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
}

.filter-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input[type="text"] {
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.filter-group select:focus,
.filter-group input[type="text"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-group input[type="text"] {
    width: 100%;
}

.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-sec);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.clear-filters-btn:hover {
    background: rgba(255, 59, 59, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* Social Share Buttons */
.share-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.share-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.share-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.twitter-btn {
    background: #000;
    color: #fff;
    border: 1px solid #333;
}

.twitter-btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: 1px solid #1ebe5d;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Track Row Action Icons (Download + Share) */
.col-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.row-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.row-icon-btn:hover {
    background: rgba(255, 59, 59, 0.15);
    border-color: rgba(255, 59, 59, 0.3);
    color: var(--accent);
}

/* Share Dropdown */
.share-dropdown-wrap {
    position: relative;
}

.share-dropdown {
    display: flex;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: #111;
    border: 1px solid #333;
    border-radius: 40px;
    padding: 10px 18px;
    gap: 15px;
    z-index: 10000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.share-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.share-dropdown a,
.share-dropdown button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sec);
    transition: all 0.25s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    padding: 0;
    width: 24px;
    height: 24px;
}

.share-dropdown a:hover,
.share-dropdown button:hover {
    color: var(--accent);
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px rgba(255, 59, 59, 0.5));
}

.share-dropdown i {
    font-size: 18px;
}

/* Beat Page: Inline Action Buttons */
.beat-action-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.share-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.share-icon-btn:hover {
    background: rgba(255, 59, 59, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.copy-link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 600;
    background: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    width: 100%;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.copy-link-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-sec);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-sec);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-sec);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

/* Contact Box */
.contact-box-container {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(145deg, #161616, #0b0b0b);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box-container h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-submit-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Floating Cart Styles */
.cart-nav-container {
    position: relative;
    cursor: pointer;
    margin-right: 25px;
    font-size: 20px;
    color: var(--text-sec);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.cart-nav-container:hover {
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--bg-sec);
    border-left: 1px solid var(--border);
    z-index: 10001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-close-arrow {
    font-size: 18px;
    color: var(--text-sec);
    cursor: pointer;
    transition: all 0.2s;
    padding: 5px;
}

.cart-close-arrow:hover {
    color: var(--accent);
    transform: translateX(-3px);
}

.close-cart {
    cursor: pointer;
    font-size: 20px;
    color: var(--text-sec);
    transition: color 0.2s;
}

.close-cart:hover {
    color: var(--accent);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.cart-item:hover {
    border-color: rgba(255, 59, 59, 0.2);
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-info span {
    font-size: 12px;
    color: var(--text-sec);
}

.cart-item-price {
    font-weight: 700;
    color: var(--accent);
}

.remove-item {
    cursor: pointer;
    color: #666;
    margin-left: 15px;
    transition: color 0.2s;
}

.remove-item:hover {
    color: var(--accent);
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--border);
    background: #0c0c0c;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.discount-row {
    color: #2ecc71;
    font-weight: 600;
}

.total-row {
    font-size: 18px;
    font-weight: 800;
    margin-top: 10px;
    color: white;
}

.checkout-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: var(--accent-hover);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
}

.cart-overlay.open {
    display: block;
}
/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #0d0d0d;
    z-index: 10002;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: none;
}

.sidebar-overlay.open {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sidebar-logo {
    font-size: 20px;
    font-weight: 800;
}

.sidebar-logo span {
    color: var(--accent);
}

.close-sidebar {
    font-size: 20px;
    color: var(--text-sec);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-nav a i {
    color: var(--accent);
    width: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}


@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* =============================================
   DESKTOP PLAYER: fix position and show/hide
   ============================================= */
@media (min-width: 769px) {
    /* Desktop: restore correct player layout */
    .global-player {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        height: 90px;
        padding: 0 40px;
        align-items: center;
    }

    /* Desktop progress bar */
    .global-progress-bg {
        position: absolute !important;
        display: block !important;
        top: -3px;
        left: 0;
        width: 100%;
        height: 4px;
        z-index: 1001;
    }

    /* Desktop: track info panel */
    .mobile-player-row {
        display: flex !important;
        align-items: center;
        gap: 15px;
        justify-self: start;
        flex-shrink: 0;
    }

    /* Desktop: show center controls and right panel */
    .player-center { display: flex !important; }
    .player-right  { display: flex !important; }

    /* Desktop: hide mobile-only UI */
    .mobile-player-controls { display: none !important; }
    .mobile-progress-wrap   { display: none !important; }
}

/* =============================================
   MOBILE PLAYER: hide desktop elements
   ============================================= */
@media (max-width: 768px) {
    .global-player {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 85px;
        padding: 8px 12px !important;
        gap: 5px;
    }
    .mobile-sidebar { width: 100%; max-width: 280px; }
    .global-player .player-center  { display: none !important; }
    .global-player .player-right   { display: none !important; }
    .global-progress-bg            { display: none !important; }
    .mobile-progress-wrap          { display: block !important; width: 100%; }
    .mobile-player-row             { display: flex !important; width: 100%; justify-content: space-between; align-items: center; }
}

/* Custom Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: auto;
}

.toast.success {
    border-color: #2ecc71;
    color: #2ecc71;
}

.toast.error {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

@keyframes toastSlideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.toast.fade-out {
    animation: toastFadeOut 0.4s ease forwards;
}

@keyframes toastFadeOut {
    to { transform: translateY(-20px); opacity: 0; }
}

/* =============================================
   SERVICES SECTION & MODAL
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(145deg, #111, #080808);
    border: 1px solid #222;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.service-card p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.service-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-btn:hover {
    background: var(--accent);
    color: #000;
}

/* Service Inquiry Modal Specifics */
.service-modal-content {
    max-width: 550px !important;
}

#serviceInquiryModal .modal-body {
    padding: 30px;
}

#serviceInquiryModal .form-group {
    margin-bottom: 20px;
}

#serviceInquiryModal label {
    display: block;
    margin-bottom: 8px;
    color: #eee;
    font-size: 0.9rem;
    font-weight: 500;
}

#serviceInquiryModal input,
#serviceInquiryModal select,
#serviceInquiryModal textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#serviceInquiryModal input:focus,
#serviceInquiryModal select:focus,
#serviceInquiryModal textarea:focus {
    border-color: var(--accent);
    background: #222;
    outline: none;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.2);
}

#serviceInquiryModal textarea {
    height: 120px;
    resize: none;
}

.submit-service-btn {
    width: 100%;
    background: var(--accent);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(241, 196, 15, 0.3);
}

.submit-service-btn:active {
    transform: translateY(0);
}


