/* ============================================
   NICKI PARROTT - Dark Minimal Jazz
   Color Palette: Gold (#C9A962) / Black (#0A0A0A)
   ============================================ */

:root {
    --gold: #C9A962;
    --gold-light: #D4BC7D;
    --gold-dark: #A68B4B;
    --black: #0A0A0A;
    --black-light: #151515;
    --black-medium: #1A1A1A;
    --white: #F5F5F5;
    --gray: #888888;
    --gray-dark: #444444;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--gold);
    color: var(--black);
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transform: translateY(0);
    transition: transform var(--transition);
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.announcement-link {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-close {
    position: absolute;
    right: 16px;
    font-size: 1.25rem;
    color: var(--black);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.announcement-close:hover {
    opacity: 1;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.header.scrolled {
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
}

.header.announcement-hidden {
    top: 0;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--white);
    transition: color var(--transition-fast);
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: -2px;
}

.logo:hover .logo-text {
    color: var(--gold);
}

/* Hamburger */
.hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   NAVIGATION OVERLAY
   ============================================ */

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-content {
    text-align: center;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    overflow: hidden;
}

.nav-links a {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    padding: 6px 0;
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--transition);
}

.nav-overlay.active .nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.nav-links li:nth-child(5) a { transition-delay: 0.3s; }
.nav-links li:nth-child(6) a { transition-delay: 0.35s; }
.nav-links li:nth-child(7) a { transition-delay: 0.4s; }
.nav-links li:nth-child(8) a { transition-delay: 0.45s; }

.nav-footer {
    margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition) 0.4s;
}

.nav-overlay.active .nav-footer {
    opacity: 1;
    transform: translateY(0);
}

.nav-socials {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.nav-socials a {
    font-size: 1.25rem;
    color: var(--gray);
}

.nav-socials a:hover {
    color: var(--gold);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.slide-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 16px;
}

.slide-content cite {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.slider-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 48px;
}

.section-subtitle a {
    color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events-section {
    background: var(--black-light);
}

.events-list {
    max-width: 900px;
    margin: 48px auto;
}

.event-item {
    display: grid;
    grid-template-columns: 100px 1fr 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.event-item:hover {
    background: rgba(201, 169, 98, 0.05);
    padding-left: 16px;
    margin-left: -16px;
    margin-right: -16px;
    padding-right: 16px;
}

.event-date {
    text-align: center;
}

.event-day {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

.event-location {
    font-weight: 400;
}

.event-venue {
    color: var(--gray);
}

.event-link {
    color: var(--gold);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-link i {
    transition: transform var(--transition-fast);
}

.event-link:hover i {
    transform: translateX(4px);
}

.events-empty {
    text-align: center;
    color: var(--gray);
    padding: 48px 0;
}

.events-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .event-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }
    
    .event-venue,
    .event-link {
        grid-column: 2;
    }
}

/* ============================================
   DISCOGRAPHY
   ============================================ */

.discography-section {
    background: var(--black);
}

.discography-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 48px 0 32px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all var(--transition);
}

.filter-btn:hover {
    color: var(--white);
}

.filter-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.album-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.album-item.hidden {
    display: none;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0) 50%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}

.album-item:hover .album-overlay {
    opacity: 1;
}

.album-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.album-label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.load-more {
    display: block;
    margin: 0 auto;
}

.load-more.hidden {
    display: none;
}

@media (max-width: 992px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============================================
   VIDEOS
   ============================================ */

.videos-section {
    background: var(--black-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 2px;
    overflow: hidden;
    background: var(--black-medium);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */

.faq-section {
    background: var(--black);
}

.accordion {
    max-width: 800px;
    margin: 48px auto 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    text-align: left;
    transition: color var(--transition);
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-header i {
    font-size: 0.875rem;
    transition: transform var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding-bottom: 32px;
}

.accordion-content p {
    margin-bottom: 16px;
    color: var(--gray);
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Media Gallery Grid */
.gallery-intro {
    margin-bottom: 24px;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.download-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.7);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .download-icon {
    opacity: 1;
}

.download-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Bio Actions */
.bio-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .media-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   BANNER SECTION
   ============================================ */

.banner-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
}

.banner-content {
    position: relative;
    text-align: center;
    padding: 24px;
    max-width: 800px;
}

.banner-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 16px;
}

.banner-content p {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--black-medium);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-newsletter p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form .btn {
    padding: 12px 20px;
    white-space: nowrap;
}

.newsletter-message {
    margin-top: 12px;
    font-size: 0.8125rem;
}

.newsletter-message.success {
    color: #4CAF50;
}

.newsletter-message.error {
    color: #f44336;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray);
    transition: all var(--transition);
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================
   JUKEBOX PLAYER
   ============================================ */

.jukebox {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
}

.jukebox-toggle {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
}

.jukebox-toggle:hover {
    transform: scale(1.1);
    background: var(--gold-light);
}

.jukebox-toggle i {
    font-size: 1.25rem;
    color: var(--black);
}

.jukebox-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: var(--black-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.jukebox.active .jukebox-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jukebox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jukebox-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.jukebox-close {
    color: var(--gray);
    transition: color var(--transition-fast);
}

.jukebox-close:hover {
    color: var(--white);
}

.jukebox-now-playing {
    display: flex;
    gap: 16px;
    padding: 16px;
}

.jukebox-now-playing img {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    object-fit: cover;
}

.jukebox-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jukebox-track {
    font-weight: 500;
    margin-bottom: 4px;
}

.jukebox-album {
    font-size: 0.8125rem;
    color: var(--gray);
}

.jukebox-progress {
    padding: 0 16px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 0.1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--gray);
}

.jukebox-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}

.jukebox-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: color var(--transition-fast);
}

.jukebox-btn:hover {
    color: var(--gold);
}

.jukebox-btn.play-btn {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    color: var(--black);
}

.jukebox-btn.play-btn:hover {
    background: var(--gold-light);
    color: var(--black);
}

.jukebox-playlist {
    max-height: 200px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-item.active {
    background: rgba(201, 169, 98, 0.1);
}

.playlist-item img {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    object-fit: cover;
}

.playlist-item-info {
    flex: 1;
    min-width: 0;
}

.playlist-item-title {
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-item-album {
    font-size: 0.75rem;
    color: var(--gray);
}

.playlist-item-duration {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ============================================
   UTILITIES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 48px 8px 16px;
        font-size: 0.8125rem;
    }
    
    .header {
        top: 36px;
    }
    
    .header.scrolled {
        padding: 12px 0;
    }
    
    .header-inner {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .jukebox {
        bottom: 16px;
        right: 16px;
    }
    
    .jukebox-panel {
        width: 290px;
        right: -8px;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}
