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

:root {
    --primary-bg: #0a0a0f;
    --secondary-bg: #12121a;
    --card-bg: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-cyan: #00f0ff;
    --accent-pink: #ff006e;
    --accent-green: #00ff9f;
    --gradient-1: linear-gradient(135deg, #00f0ff 0%, #ff006e 100%);
    --gradient-2: linear-gradient(135deg, #00ff9f 0%, #00f0ff 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 20px rgba(0, 240, 255, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 80px;
}

.nav-container .logo {
    flex: 0 0 auto;
    order: 1;
}

.nav-container .nav-toggle {
    flex: 0 0 auto;
    order: 5;
    margin-left: auto;
}

/* Desktop-only nav layout — overridden at ≤768px */
@media (min-width: 769px) {
    .nav-container .nav-menu {
        position: static;
        transform: none;
        left: auto;
        flex: 1 1 auto;
        justify-content: center;
        order: 2;
    }

    .nav-container .nav-social {
        flex: 0 0 auto;
        order: 3;
        margin-left: 32px;
    }

    .nav-container .lang-switch {
        flex: 0 0 auto;
        order: 4;
        margin-left: 20px;
        align-self: center;
        line-height: 1;
    }
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo:hover {
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    z-index: 1001;
    opacity: 0.85;
    visibility: visible !important;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switch:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lang-flag {
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 12px;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.nav-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nav-social-icon:hover {
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.nav-overlay {
    display: none;
}

/* Extra items (lang + social) inside mobile panel — hidden on desktop */
.nav-menu-extras {
    display: none;
    list-style: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    background-color: rgba(10, 10, 15, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(0, 240, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 28px);
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--gradient-1);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 60px;
    background: var(--gradient-1);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

.latest-section,
.upcoming-section,
.about-content,
.mixtapes-section,
.agenda-section,
.media-section,
.contact-section {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

.upcoming-section {
    background-color: var(--primary-bg);
}

.latest-section {
    background-color: var(--secondary-bg);
}

.home-partners {
    background-color: var(--secondary-bg);
}

.home-about-preview {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

.home-about-inner {
    max-width: 760px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
}

.home-about-inner:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 48px rgba(0, 240, 255, 0.18);
}

.home-about-inner h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.home-about-text,
.home-press-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    padding: 4px 14px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50px;
}

.home-press-cta {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

.home-press-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.home-press-photo {
    position: relative;
}

.home-press-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    display: block;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.7);
}

.home-press-photo::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 55%;
    height: 55%;
    border: 2px solid rgba(255, 0, 110, 0.22);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
}

.home-press-content h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.home-press-content .home-press-text {
    margin-left: 0;
    margin-right: 0;
    max-width: 480px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: -40px auto 60px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mix-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.mix-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}

.mix-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.mix-card:hover .mix-image img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.mix-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 48px;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

.mix-info {
    padding: 24px;
}

.mix-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.mix-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.mix-date {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.center-button {
    text-align: center;
    margin-top: 60px;
}

.secondary-button {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent-cyan);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.secondary-button:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.shows-list {
    max-width: 900px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-smooth);
}

.show-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    transform: translateX(8px);
}

.show-date {
    flex-shrink: 0;
    text-align: center;
    padding: 16px;
    background: var(--gradient-1);
    border-radius: 12px;
    min-width: 80px;
}

.show-date .day {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.show-date .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.show-details {
    flex: 1;
}

.show-details h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.show-details p {
    color: var(--text-secondary);
    font-size: 14px;
}

.ticket-button {
    flex-shrink: 0;
    padding: 12px 28px;
    background: transparent;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--accent-cyan);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.ticket-button:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--secondary-bg);
}

.page-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-timeline {
    margin-bottom: 120px;
}

.timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Drawn-line effect: a static grey track sits behind a gradient fill that
   grows via clip-path as the user scrolls. JS sets --tl-progress (0→1). */
.timeline::before,
.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

/* faint track */
.timeline::before {
    background: rgba(255, 255, 255, 0.08);
}

/* animated fill */
.timeline::after {
    background: var(--gradient-1);
    clip-path: inset(0 0 calc(100% - var(--tl-progress, 0%) * 1%) 0);
    will-change: clip-path;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Marker entrance --- */
.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 16px;
    height: 16px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-bg), 0 0 20px rgba(0, 240, 255, 0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease 0.15s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

/* --- Image entrance + base styles --- */
.timeline-image {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
    opacity: 0;
    transition: opacity 0.65s ease 0.25s, transform 0.65s ease 0.25s,
                border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item-right .timeline-image {
    transform: translateX(-28px);
}

.timeline-item-left .timeline-image {
    transform: translateX(28px);
}

/* --- Text card entrance + base styles --- */
.timeline-content {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    opacity: 0;
    transition: opacity 0.65s ease 0.35s, transform 0.65s ease 0.35s,
                border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item-right .timeline-content {
    transform: translateX(28px);
}

.timeline-item-left .timeline-content {
    transform: translateX(-28px);
}

/* --- Visible state (added by JS) --- */
.timeline-item.tl-visible .timeline-marker {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.timeline-item.tl-visible .timeline-image {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item.tl-visible .timeline-content {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item-left .timeline-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.timeline-item-left .timeline-image {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item-right .timeline-image {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item-right .timeline-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
}

.timeline-content:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.timeline-image:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.influences-section {
    margin-bottom: 72px;
}

.influence-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-smooth);
}

.influence-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.influence-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.influence-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.partners-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) and (min-width: 641px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px 32px;
}

.partner-card h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.partner-logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.07);
    border: 2px dashed rgba(0, 240, 255, 0.25);
}

.partner-logo-link {
    display: block;
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.partner-logo-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.partner-logo-img {
    width: 180px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
}

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

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition-smooth);
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mix-card-full {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-smooth);
}

.mix-card-full:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}

.mix-card-full .mix-info {
    padding: 24px;
}

.mix-genre,
.mix-duration {
    display: inline-block;
    margin-right: 12px;
}

.mix-embed {
    margin-top: 16px;
}

.agenda-loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 60px 0;
    font-size: 16px;
}

.agenda-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 60px 0;
    font-size: 18px;
}

.shows-list-full {
    max-width: 1000px;
    margin: 0 auto;
}

.mixtapes-coming-soon {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.mixtapes-coming-soon:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15);
}

.mixtapes-coming-soon .coming-soon-icon {
    color: var(--accent-cyan);
    margin-bottom: 24px;
    opacity: 0.8;
}

.mixtapes-coming-soon h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.mixtapes-coming-soon p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.mixtapes-coming-soon .secondary-button {
    margin-top: 0;
}

.mixtapes-coming-soon--compact {
    padding: 56px 32px;
}

.mixtapes-coming-soon--compact .coming-soon-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.soundcloud-player-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 40px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
}

.soundcloud-player-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 48px rgba(0, 240, 255, 0.18);
}

.soundcloud-player-card--compact {
    padding: 40px 32px;
}

.soundcloud-intro {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.soundcloud-embed-wrap {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 240, 255, 0.08);
}

.soundcloud-embed-wrap iframe {
    display: block;
    width: 100%;
}

.soundcloud-fallback {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.7;
}
}

.show-item-full {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-smooth);
}

.show-item-full:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.show-date-full {
    flex-shrink: 0;
    width: 100px;
    text-align: center;
    padding: 20px 12px;
    background: var(--gradient-1);
    border-radius: 12px;
}

.show-date-full .day {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.show-date-full .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
}

.show-date-full .year {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.show-details-full {
    flex: 1;
    min-width: 0;
}

.show-details-full h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.show-details-full .venue {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 4px;
}

.show-details-full .location,
.show-details-full .time {
    color: var(--text-secondary);
    font-size: 14px;
}

.ticket-button-full {
    flex-shrink: 0;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--accent-cyan);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.ticket-button-full:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

/* ── AGENDA EVENT CARDS (ae-card BEM) ─────────────────────────────── */
.ae-events-list {
    max-width: 960px;
    margin: 0 auto;
}

.ae-card {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ae-card:last-child {
    margin-bottom: 0;
}

.ae-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.18);
}

.ae-card__date {
    flex: 0 0 90px;
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    text-align: center;
    padding: 16px 10px;
    background: linear-gradient(135deg, #00f0ff 0%, #ff006e 100%);
    border-radius: 10px;
}

.ae-card__day {
    display: block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.ae-card__month {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    text-transform: uppercase;
}

.ae-card__year {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

.ae-card__info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ae-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
}

.ae-card__venue {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin: 0 0 4px;
}

.ae-card__location {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 4px;
}

.ae-card__time {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.ae-card__ticket {
    flex: 0 0 auto;
    padding: 12px 28px;
    color: var(--accent-cyan);
    background: transparent;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--accent-cyan);
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}

.ae-card__ticket:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

@media (max-width: 640px) {
    .ae-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 18px;
    }

    .ae-card__date {
        width: 90px;
        align-self: auto;
    }

    .ae-card__title {
        font-size: 18px;
    }

    .ae-card__ticket {
        align-self: flex-start;
        padding: 10px 22px;
        font-size: 12px;
    }
}

/* ── BOOKING CTA ─────────────────────────────────────────────────── */
.booking-cta {
    padding: 100px 0;
    background: var(--secondary-bg);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

.press-kit-section {
    margin-bottom: 100px;
}

.download-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-smooth);
}

.download-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}

.download-icon {
    margin-bottom: 24px;
    color: var(--accent-cyan);
}

.download-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.download-button {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-cyan);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.download-button:hover {
    background: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.photos-section {
    margin-bottom: 100px;
}

.photo-grid-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.photo-item-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.photo-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-item-media:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.photo-item-media:hover .photo-overlay {
    opacity: 1;
}

.photo-download {
    padding: 12px 28px;
    background: var(--accent-cyan);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

.logos-section {
    margin-bottom: 100px;
}

.logo-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.logo-preview {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
}

.logo-preview.dark-bg {
    background: var(--primary-bg);
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #000;
}

.logo-text.light {
    color: #fff;
}

.logo-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.logo-downloads {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.logo-download-btn {
    padding: 10px 20px;
    background: transparent;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--accent-cyan);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.logo-download-btn:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--accent-cyan);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.social-link:hover {
    color: var(--accent-cyan);
    transform: translateX(8px);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--secondary-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-button:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 159, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 110, 0.1);
    color: var(--accent-pink);
    border: 1px solid var(--accent-pink);
}

/* ── PRIVACY POLICY ── */
.policy-section {
    padding: 80px 0 120px;
}

.policy-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    padding: 56px 64px;
}

.policy-updated {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.policy-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-block h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.policy-block p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.policy-list li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    padding: 6px 0 6px 20px;
    position: relative;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    opacity: 0.6;
}

.policy-service {
    margin-top: 20px;
    padding: 20px 24px;
    background: rgba(0, 240, 255, 0.04);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 0 8px 8px 0;
}

.policy-service h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.policy-service p {
    margin-bottom: 0 !important;
}

.policy-link {
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.policy-link:hover {
    border-bottom-color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .policy-card {
        padding: 32px 24px;
    }
}

.footer {
    background: var(--secondary-bg);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--accent-cyan);
}

.footer-legal-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-legal-links li {
    margin-bottom: 0;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 50%;
    font-weight: 700;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: var(--transition-smooth);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-biz {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-biz-label {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-size: 10px;
}

/* Business info on contact page */
.contact-biz-section {
    padding: 0 0 80px;
}

.contact-biz-block {
    max-width: 900px;
    margin: 56px auto 0;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: 12px;
    padding: 24px 32px;
}

.contact-biz-title {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    padding: 3px 10px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 18px;
}

.contact-biz-list {
    display: grid;
    grid-template-columns: repeat(4, auto) 1fr;
    gap: 0;
    margin: 0;
    align-items: start;
}

.contact-biz-list > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 28px;
    margin-right: 28px;
    min-width: 0;
}

.contact-biz-list > div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-biz-list > div:last-child {
    padding-right: 0;
    margin-right: 0;
}

.contact-biz-list dt {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.32);
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-width: 0;
}

.contact-biz-list dd {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.contact-biz-list dd a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-biz-list dd a:hover {
    color: var(--accent-cyan);
}

/* Medium screens: wrap into two neat rows (3 + 2) */
@media (max-width: 768px) and (min-width: 481px) {
    .contact-biz-list {
        grid-template-columns: repeat(3, auto) repeat(2, auto);
        row-gap: 24px;
    }

    .contact-biz-list > div:nth-child(3) {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

    .contact-biz-list > div:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        padding-left: 28px;
        margin-left: 28px;
    }
}

@media (max-width: 480px) {
    .footer-biz {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .contact-biz-block {
        padding: 20px;
        margin-top: 40px;
    }

    .contact-biz-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-biz-list > div {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 16px;
    }

    .contact-biz-list > div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-biz-list dt {
        min-width: 110px;
        flex-shrink: 0;
    }

    .contact-biz-list dd {
        margin-top: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   MOBILE / TABLET  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

    /* ── Prevent all horizontal overflow ── */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* ── NAVBAR BAR: logo left · hamburger right ── */
    .nav-container {
        padding: 0 16px;
        height: 64px;
        /* anchor for the absolute dropdown */
        position: relative;
    }

    /*
     * Remove all desktop flex-order / flex-sizing from nav-container children.
     * These rules use the same .nav-container .X specificity (0,2,0) as the
     * desktop declarations, but come later → they win.
     */
    .nav-container .nav-menu {
        /* pull out of flex flow → becomes dropdown */
        position: absolute;
        top: 100%;         /* flush below the navbar */
        left: 0;
        right: 0;
        flex: none;
        order: unset;
        /* hidden by default */
        display: none;
        /* dropdown layout */
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding-bottom: 16px;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 240, 255, 0.15);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        z-index: 999;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        width: 100%;
    }

    /* Show dropdown when active */
    .nav-container .nav-menu.active {
        display: flex;
    }

    /* Hide desktop lang-switch and social from the bar */
    .nav-container .nav-social,
    .nav-container > .lang-switch {
        display: none;
        flex: none;
    }

    /* Show hamburger icon */
    .nav-toggle {
        display: flex;
        margin-left: auto;
        padding: 10px 6px;
        order: 10;
    }

    /* Hamburger → X animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ── Dropdown: individual links ── */
    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px 24px;
        font-size: 15px;
        letter-spacing: 1px;
        color: var(--text-secondary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent-cyan);
        background: rgba(0, 240, 255, 0.06);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* ── Dropdown: extras row (lang + social) ── */
    .nav-menu-extras {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 16px 24px 4px;
        margin-top: 4px;
        border-top: 1px solid rgba(0, 240, 255, 0.1);
        list-style: none;
    }

    .nav-menu-extras .lang-switch {
        display: inline-flex;
        font-size: 22px;
        opacity: 0.9;
    }

    .nav-menu-extras .nav-social {
        display: flex;
        gap: 16px;
    }

    .nav-menu-extras .nav-social-icon {
        width: 32px;
        height: 32px;
        color: var(--text-secondary);
    }

    /* ── Overlay backdrop (dims page behind dropdown) ── */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* ── HERO ── */
    .hero {
        min-height: 100svh;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(24px, 8vw, 48px);
        letter-spacing: 2px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: clamp(12px, 3.5vw, 18px);
        letter-spacing: 2px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 13px;
        letter-spacing: 1px;
        max-width: 100%;
    }

    /* ── LAYOUT ── */
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .latest-section,
    .upcoming-section,
    .about-content,
    .mixtapes-section,
    .agenda-section,
    .media-section,
    .contact-section,
    .home-about-preview,
    .home-press-cta {
        padding: 56px 0;
    }

    .home-about-inner,
    .home-press-split {
        padding: 36px 20px;
        max-width: 100%;
    }

    .home-about-text,
    .home-press-text {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 100px 0 52px;
    }

    /* ── GRIDS → single column ── */
    .grid-2,
    .grid-3,
    .grid-4,
    .about-grid,
    .contact-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* ── AGENDA SHOW ITEMS ── */
    .show-item,
    .show-item-full {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .show-item-full {
        gap: 16px;
        padding: 24px 16px;
    }

    .show-date {
        min-width: 64px;
        padding: 12px;
    }

    .show-date .day {
        font-size: 22px;
    }

    .show-date .month {
        font-size: 10px;
    }

    .show-date-full {
        width: 100px;
        padding: 14px 12px;
    }

    .show-date-full .day {
        font-size: 28px;
    }

    .show-details h3,
    .show-details-full h3 {
        font-size: 18px;
    }

    .ticket-button,
    .ticket-button-full {
        align-self: center;
        margin-top: 8px;
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* ── BOOKING CTA ── */
    .booking-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

    /* ── TIMELINE ── */
    .timeline {
        padding: 0;
        margin-left: 12px;
        margin-right: 12px;
    }

    /*
     * Hide the global grey track on mobile. It is replaced by a per-item
     * ::before pseudo-element below, which shares .timeline-item as its
     * containing block — the same element the marker uses. This makes it
     * IMPOSSIBLE for the track and the dot to be at different x positions.
     */
    .timeline::before {
        display: none;
    }

    /* Gradient fill stays, just moved to left: 20px on mobile */
    .timeline::after {
        left: 20px;
        transform: translateX(-50%);
    }

    /*
     * Per-item grey track: position absolute inside .timeline-item.
     * left: 20px relative to .timeline-item — EXACTLY the same value
     * and EXACTLY the same containing block as .timeline-marker below.
     * bottom: -80px bridges the margin-bottom gap between items.
     */
    .timeline-item::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: -80px;
        width: 2px;
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(-50%);
        z-index: 0;
        pointer-events: none;
    }

    .timeline-item:last-child::before {
        bottom: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 52px;
    }

    /*
     * Marker: position absolute inside .timeline-item.
     * left: 20px + transform: translateX(-50%) = center at 20px from
     * .timeline-item's left outer edge.
     * .timeline-item::before above uses the SAME values → same x. ✓
     */
    .timeline-marker {
        display: none;
    }

    .timeline-item.tl-visible .timeline-marker {
        display: none;
    }

    .timeline-item-left .timeline-content,
    .timeline-item-right .timeline-content {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
        transform: translateY(20px);
    }

    .timeline-item-left .timeline-marker,
    .timeline-item-right .timeline-marker {
        grid-column: 1;
    }

    .timeline-item-left .timeline-image,
    .timeline-item-right .timeline-image {
        grid-column: 1;
        grid-row: 2;
        transform: translateY(20px);
    }

    .timeline-item.tl-visible .timeline-content,
    .timeline-item.tl-visible .timeline-image {
        transform: translateY(0);
    }

    .timeline-content {
        grid-row: 1;
        padding: 20px;
    }

    .timeline-image {
        height: 200px;
    }

    /* ── CARDS / MISC ── */
    .download-card {
        padding: 28px 20px;
    }

    .press-kit-section {
        margin-bottom: 56px;
    }

    .partner-logo-img {
        width: 120px;
        height: 80px;
    }

    .mixtapes-coming-soon,
    .mixtapes-coming-soon--compact {
        padding: 40px 20px;
    }

    /* ── CONTACT ── */
    .contact-form {
        padding: 24px 16px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 15px;
    }

    /* ── FOOTER ── */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        justify-items: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    /* ── BUTTONS ── */
    .secondary-button {
        padding: 12px 24px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}

/* ============================================================
   SMALL MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(22px, 7vw, 32px);
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-biz span {
        display: inline-block;
        line-height: 1.8;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .home-about-inner,
    .home-press-split {
        padding: 28px 16px;
    }

    .download-card {
        padding: 24px 16px;
    }

    .contact-form {
        padding: 20px 14px;
    }

    .show-item-full {
        padding: 20px 12px;
        gap: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .secondary-button {
        padding: 11px 20px;
        font-size: 12px;
    }

    .cta-button {
        padding: 13px 24px;
        font-size: 12px;
    }

    .section-label {
        font-size: 0.65rem;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 1px;
    }
}
        font-size: 0.65rem;
    }
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */

.gallery-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 60px 0;
    font-size: 18px;
}

/* Album grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

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

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-cyan);
}

.album-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.album-card:hover .album-cover img {
    transform: scale(1.06);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.album-open-icon {
    font-size: 42px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    line-height: 1;
}

.album-info {
    padding: 18px 20px 20px;
}

.album-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.album-meta {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.album-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.album-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 3px 10px;
    border-radius: 50px;
}

.album-photo-count {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.album-view-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    width: 100%;
}

.album-card:hover .album-view-btn {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #000;
}

/* Back bar */
.gallery-back-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.gallery-back-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--accent-cyan);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.gallery-back-btn:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--accent-cyan);
}

.gallery-album-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Photo thumbnail grid */
.photo-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.photo-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.photo-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border-color: var(--accent-cyan);
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    font-size: 30px;
    color: #fff;
}

.photo-thumb:hover .photo-thumb-overlay {
    opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.lb-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 16px;
    height: 100dvh;
    justify-content: center;
    gap: 12px;
}

.lb-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    width: 100%;
}

.lb-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.7);
    display: block;
}

.lb-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.lb-close:hover {
    background: rgba(255,255,255,0.18);
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 36px;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.lb-arrow:hover {
    background: rgba(0, 240, 255, 0.18);
    border-color: var(--accent-cyan);
}

.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.lb-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 4px 0;
}

.lb-counter {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
}

.lb-download {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    text-decoration: none;
    border: 1px solid var(--accent-cyan);
    padding: 6px 18px;
    border-radius: 50px;
    transition: background 0.2s ease, color 0.2s ease;
}

.lb-download:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

.home-album-grid {
    grid-template-columns: repeat(3, 1fr);
}

.home-gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background 0.25s ease, color 0.25s ease;
}

.view-all-btn:hover {
    background: var(--accent-cyan);
    color: #0a0a0f;
}

@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .home-album-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .photo-album-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .lb-arrow {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .lb-prev { left: 4px; }
    .lb-next { right: 4px; }

    .gallery-album-title {
        font-size: 15px;
    }
}

/* ============================================================
   HOME 2.0 — PHOTO SECTIONS
   ============================================================ */

/* About split */
.home-about-split {
    padding: 36px 0 120px;
    background-color: var(--primary-bg);
}

.home-about-split-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.split-section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-align: left;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-about-content h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.home-about-content .home-about-text {
    margin-left: 0;
    margin-right: 0;
    max-width: 480px;
}

.home-about-photo {
    position: relative;
    margin-top: 48px;
    align-self: center;
}

.home-about-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    display: block;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.7);
}

.home-about-photo::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 55%;
    height: 55%;
    border: 2px solid rgba(0, 240, 255, 0.22);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
}

/* Energy strip */
.home-energy-strip {
    background-color: var(--primary-bg);
    overflow: hidden;
}

.energy-strip-grid {
    height: clamp(340px, 42vw, 520px);
}

.energy-photo--wide {
    width: 100%;
    height: 100%;
}

.energy-photo {
    overflow: hidden;
    position: relative;
}

.energy-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.energy-photo:hover img {
    transform: scale(1.04);
}

/* ============================================================
   HOME 2.0 — MOBILE
   ============================================================ */

@media (max-width: 900px) {
    .home-about-split-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .home-about-photo {
        margin-top: 0;
        max-width: 480px;
    }

    .home-about-photo::after {
        display: none;
    }

    .home-about-photo img {
        aspect-ratio: 4/5;
        object-position: center 35%;
    }

    .home-press-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .home-press-photo {
        max-width: 480px;
    }

    .home-press-photo::after {
        display: none;
    }

    .home-press-photo img {
        aspect-ratio: 4/5;
        object-position: center 20%;
    }
}

@media (max-width: 768px) {
    .home-about-split,
    .home-press-cta {
        padding: 24px 0 56px;
    }

    .home-about-split-inner {
        gap: 32px;
    }

    .energy-strip-grid {
        height: clamp(220px, 50vw, 340px);
    }
}

@media (max-width: 480px) {
    .home-about-photo img {
        aspect-ratio: 4/5;
    }
}

/* ── PARTNERS & VENUES MARQUEE ─────────────────────────────── */
.partners-venues {
    padding: 28px 0 14px;
    background-color: var(--primary-bg);
}

.partners-venues-title {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.marquee {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.marquee.dragging {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 12px 64px;
    will-change: transform;
}

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.marquee.dragging .marquee-item a {
    cursor: grabbing;
}

.marquee-logo-img {
    height: 52px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    opacity: 0.65;
    border-radius: 4px;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-item:hover .marquee-logo-img {
    opacity: 1;
    filter: brightness(1.15);
}

.marquee-wordmark {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.65;
    white-space: nowrap;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.marquee-item:hover .marquee-wordmark {
    opacity: 1;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .partners-venues {
        padding: 20px 0 10px;
    }

    .marquee-track {
        gap: 40px;
        padding: 10px 40px;
    }

    .marquee-logo-img {
        height: 40px;
        max-width: 130px;
    }

    .marquee-wordmark {
        font-size: 18px;
    }

    .marquee {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 50px, #000 calc(100% - 50px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 50px, #000 calc(100% - 50px), transparent 100%);
    }
}
