/* ==========================================================================
   Ben Phoenix - Official Artist Website (Luna Park Era Edition)
   Design Tokens: Neon Magenta (#ff2a75), Electric Cyan (#00f2fe), Crystal Violet (#a855f7), Deep Space Dark (#070814)
   ========================================================================== */

:root {
    --bg-dark: #070814;
    --bg-surface: rgba(15, 19, 36, 0.85);
    --bg-card: rgba(20, 26, 48, 0.75);
    --primary-neon: #ff2a75;
    --secondary-cyan: #00f2fe;
    --accent-purple: #a855f7;
    --accent-gold: #ffb703;
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-glow: rgba(0, 242, 254, 0.25);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-hebrew: 'Heebo', sans-serif;
    --font-english: 'Outfit', sans-serif;
    --font-orbitron: 'Orbitron', sans-serif;
}

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

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

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    font-family: var(--font-hebrew);
    color: var(--text-main);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Ambient Particle Background Canvas --- */
#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* --- Utility Layout Classes --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 6rem 0;
}

.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.glass-panel-heavy {
    background: rgba(10, 13, 26, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.6);
    border-radius: 24px;
}

/* --- Navigation Header --- */
.era-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 8, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.5), 0 0 8px rgba(255, 183, 3, 0.5);
    border: 2px solid var(--secondary-cyan);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 24px rgba(255, 183, 3, 0.85);
    border-color: #ffb703;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-hebrew);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #fff, var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tag {
    font-size: 0.78rem;
    color: #ffb703;
    font-family: var(--font-hebrew);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 183, 3, 0.4);
}

/* Prominent Hero Artist Logo Emblem */
.hero-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.hero-logo-emblem {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 183, 3, 0.7);
    box-shadow: 0 0 35px rgba(255, 183, 3, 0.5), 0 0 15px rgba(0, 245, 212, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: emblemFloat 4s ease-in-out infinite alternate;
}

.hero-logo-emblem:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 50px rgba(255, 183, 3, 0.8), 0 0 25px rgba(0, 245, 212, 0.6);
}

@keyframes emblemFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-cyan);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-cyan);
    box-shadow: 0 0 8px var(--secondary-cyan);
    border-radius: 2px;
}

/* --- DESKTOP NAV DROPDOWN --- */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    font-family: inherit;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--secondary-cyan);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: -20px;
    width: 320px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 245, 212, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px) scale(1);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 245, 212, 0.12);
    transform: translateX(-4px);
}

.dropdown-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.dropdown-title {
    font-family: var(--font-hebrew);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.dropdown-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

/* --- MOBILE DRAWER WORLDS --- */
.mobile-worlds-section {
    margin: 1rem 0;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 16px;
}

.mobile-worlds-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-cyan);
    margin-bottom: 0.75rem;
    text-align: center;
}

.mobile-worlds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.m-world-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.7rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-hebrew);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.m-world-btn:hover {
    background: rgba(0, 245, 212, 0.18);
    border-color: var(--secondary-cyan);
}

.btn-spotify-quick {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #1db954;
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-spotify-quick:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.6);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-era-section {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hero-artwork-frame {
    display: flex;
    justify-content: center;
    position: relative;
}

.cover-card-tilt {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.cover-card-tilt:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 242, 254, 0.4);
}

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

.crystal-glow-aura {
    position: absolute;
    inset: -20px;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.4) 0%, rgba(255, 42, 117, 0.3) 50%, transparent 70%);
    filter: blur(30px);
    opacity: 0.8;
}

.badge-era-corner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(7, 8, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary-cyan);
    color: var(--secondary-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: var(--font-english);
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.era-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    background: rgba(255, 42, 117, 0.15);
    border: 1px solid var(--primary-neon);
    color: var(--primary-neon);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-english);
    margin-bottom: 1.2rem;
}

.pulse-anim {
    animation: pulseIcon 1.5s infinite alternate;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); }
}

.hero-artist-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-album-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, var(--secondary-cyan) 0%, var(--primary-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.4));
}

.hero-quote {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Streaming Grid */
.streaming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-stream {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-stream:hover {
    transform: translateY(-3px);
}

.spotify-btn {
    background: #1db954;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.35);
}

.apple-btn {
    background: #fc3c44;
    box-shadow: 0 4px 20px rgba(252, 60, 68, 0.35);
}

.youtube-btn {
    background: #ff0000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.35);
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn-text small {
    font-size: 0.7rem;
    opacity: 0.85;
}

.btn-text strong {
    font-size: 0.95rem;
    font-family: var(--font-english);
}

/* Preview Track Snippet Bar */
.preview-track-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
}

.btn-play-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-neon);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-neon);
    transition: transform 0.2s ease;
}

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

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

.track-title-now {
    font-weight: 700;
    font-size: 0.95rem;
}

.track-artist-now {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.audio-waveform-bar {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
}

.audio-waveform-bar {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 26px;
}

.audio-waveform-bar .bar {
    width: 4px;
    background: linear-gradient(to top, var(--secondary-cyan), var(--primary-neon));
    border-radius: 3px;
    height: 20%;
    transition: height 0.08s ease;
    box-shadow: 0 0 8px var(--secondary-cyan);
}

/* --- SPOTLIGHT SECTION --- */
.spotlight-card {
    padding: 3rem;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.spotlight-heading {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.spotlight-p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.album-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hl-icon {
    font-size: 1.8rem;
}

.highlight-item strong {
    display: block;
    font-size: 1rem;
}

.highlight-item small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.spotlight-tracklist h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.track-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 420px;
    overflow-y: auto;
    padding-left: 0.5rem;
}

.track-list-items::-webkit-scrollbar {
    width: 6px;
}
.track-list-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.track-list-items::-webkit-scrollbar-thumb {
    background: var(--secondary-cyan);
    border-radius: 10px;
}

.track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}

.track-item:hover, .track-item.active {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.3);
}

.t-num {
    font-family: var(--font-english);
    font-weight: 800;
    color: var(--secondary-cyan);
    font-size: 0.9rem;
}

.t-name {
    flex-grow: 1;
    margin: 0 1rem;
    font-weight: 600;
}

.t-time {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-english);
}

/* --- DISCOGRAPHY SECTION --- */
.section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.discography-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.tab-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-neon);
    color: #fff;
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(255, 42, 117, 0.4);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.album-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(7, 8, 20, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary-cyan);
    border: 1px solid var(--secondary-cyan);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.card-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-album-action {
    flex: 1;
    padding: 0.7rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-details {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-play-stream {
    background: var(--primary-neon);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 42, 117, 0.3);
}

.btn-play-stream:hover {
    box-shadow: 0 6px 20px rgba(255, 42, 117, 0.5);
}

/* --- WORLDS GRID --- */
.worlds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.world-card {
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.world-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-cyan);
}

.world-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.world-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
}

.world-sub {
    display: block;
    color: var(--secondary-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.world-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.world-card-action {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary-cyan);
    transition: color 0.25s ease, transform 0.25s ease;
}

.world-card:hover .world-card-action {
    color: #ffb703;
}

.world-card:hover .world-card-action i {
    transform: translateX(-4px);
}

/* --- TRIBE SECTION --- */
.tribe-card {
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(255, 183, 3, 0.3);
    box-shadow: 0 0 50px rgba(255, 183, 3, 0.15);
}

.tribe-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 183, 3, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-english);
    margin-bottom: 1rem;
}

.tribe-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.tribe-content p {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.tribe-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

.form-input {
    flex-grow: 1;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(7, 8, 20, 0.8);
    color: #fff;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-hebrew);
}

.form-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 183, 3, 0.3);
}

.btn-submit-tribe {
    padding: 1rem 1.8rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-gold), #d97706);
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 20px rgba(255, 183, 3, 0.4);
    transition: transform 0.2s ease;
}

.btn-submit-tribe:hover {
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* --- SHOWS LIST --- */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 850px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    transition: transform 0.25s ease;
}

.show-item:hover {
    transform: translateX(-6px);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 16px;
    min-width: 80px;
}

.show-date .day {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--secondary-cyan);
}

.show-date .month {
    font-size: 0.85rem;
    font-weight: 700;
}

.show-details {
    flex-grow: 1;
    margin: 0 2rem;
}

.show-details h3 {
    font-size: 1.3rem;
    font-weight: 800;
}

.show-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.btn-tickets {
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    background: var(--secondary-cyan);
    color: #000;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    transition: transform 0.2s ease;
}

.btn-tickets:hover {
    transform: translateY(-2px);
}

/* --- ALBUM DRAWER MODAL --- */
.album-drawer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    justify-content: flex-end;
    background: rgba(7, 8, 16, 0.75);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.album-drawer-modal.active {
    opacity: 1;
    visibility: visible;
}

.drawer-content {
    width: 100%;
    max-width: 480px;
    height: 100%;
    padding: 2.5rem 2rem;
    overflow-y: auto;
    border-radius: 28px 0 0 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.album-drawer-modal.active .drawer-content {
    transform: translateX(0);
}

.btn-close-drawer {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-main);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(0, 242, 254, 0.15);
    color: var(--secondary-cyan);
    border: 1px solid var(--secondary-cyan);
    border-radius: 12px;
    margin-bottom: 0.4rem;
}

.drawer-header h3 {
    font-size: 2.2rem;
    font-weight: 900;
}

.drawer-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.album-cover-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.album-cover-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.album-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.tracklist-section {
    margin-bottom: 2rem;
}

.tracklist-section h4, .streaming-links-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracklist {
    list-style: none;
    counter-reset: track-counter;
}

.tracklist li {
    counter-increment: track-counter;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.tracklist li::before {
    content: counter(track-counter, decimal-leading-zero);
    font-family: var(--font-english);
    font-weight: 800;
    color: var(--secondary-cyan);
    margin-left: 0.8rem;
}

.tracklist li span {
    flex-grow: 1;
    font-weight: 600;
}

.tracklist li small {
    color: var(--text-muted);
    font-family: var(--font-english);
}

.streaming-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.stream-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.btn-spotify { background: #1db954; }
.btn-apple { background: #fc3c44; }
.btn-youtube { background: #ff0000; }

/* --- FOOTER --- */
.era-footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    background: rgba(5, 6, 12, 0.95);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-english);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: var(--secondary-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--secondary-cyan);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hidden {
    display: none !important;
}

/* --- RESPONSIVE MOBILE & TABLET DESIGN --- */

/* Mobile Nav Overlay & Sheet Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 8, 20, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.hidden {
    display: none !important;
}

.mobile-nav-content {
    width: 90%;
    max-width: 380px;
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
}

.mobile-nav-content .btn-close-drawer {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.mobile-link {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: var(--secondary-cyan);
}

/* Bulletproof Mobile Centering (< 992px) */
@media (max-width: 992px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .btn-spotify-quick {
        display: none !important;
    }

    .era-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 0.8rem 0 !important;
    }

    .header-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1.2rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        direction: rtl !important;
    }

    .desktop-nav {
        display: none !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px !important;
        background: rgba(0, 242, 254, 0.15) !important;
        border: 1px solid rgba(0, 242, 254, 0.4) !important;
        color: var(--secondary-cyan) !important;
        font-size: 1.4rem !important;
        cursor: pointer !important;
        box-shadow: 0 0 12px rgba(0, 242, 254, 0.3) !important;
        flex-shrink: 0 !important;
    }

    /* Hero Section 100% Centered on Mobile */
    .hero-era-section {
        padding-top: 6rem !important;
        padding-bottom: 3rem !important;
        min-height: auto !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin: 0 auto !important;
        gap: 1.8rem !important;
    }

    .hero-artwork-frame {
        order: -1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .cover-card-tilt {
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
    }

    .crystal-glow-aura {
        inset: -8px !important;
        filter: blur(15px) !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .era-pill-badge {
        align-self: center !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-artist-title {
        font-size: 2.2rem !important;
        text-align: center !important;
    }

    .hero-album-title {
        font-size: 2.7rem !important;
        margin-bottom: 0.4rem !important;
        text-align: center !important;
    }

    .hero-quote {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }

    .hero-description {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 340px !important;
        text-align: center !important;
    }

    .streaming-grid {
        width: 100% !important;
        max-width: 320px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin: 0 auto 1.5rem !important;
    }

    .btn-stream {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 1rem !important;
    }

    .preview-track-bar {
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        padding: 0.75rem 1rem !important;
    }

    .spotlight-card {
        padding: 1.5rem 1rem !important;
    }

    .spotlight-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .worlds-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
    }

    .albums-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .tribe-card {
        padding: 2.5rem 1.2rem !important;
    }

    .tribe-content h2 {
        font-size: 1.8rem !important;
    }

    .tribe-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .show-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.2rem 1rem !important;
        gap: 0.8rem !important;
    }

    .show-details {
        margin: 0 !important;
    }

    .drawer-content {
        max-width: 100% !important;
        border-radius: 24px 24px 0 0 !important;
        height: 88vh !important;
        top: 12vh !important;
        padding: 2rem 1.2rem !important;
    }
}

/* --- ATTRACTION WORLD MODAL POPUP --- */
.world-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(7, 8, 20, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.world-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.world-modal-overlay.hidden {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.world-modal-card {
    position: relative;
    width: 100%;
    max-width: 580px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(0, 245, 212, 0.3);
    box-shadow: 0 0 50px rgba(0, 245, 212, 0.2), 0 0 30px rgba(255, 42, 117, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    animation: modalPopIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPopIn {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.btn-close-modal {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-close-modal:hover {
    background: rgba(255, 42, 117, 0.8);
    border-color: #ff2a75;
    transform: rotate(90deg);
}

.world-modal-icon {
    font-size: 3.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 15px rgba(0, 245, 212, 0.5));
}

.world-modal-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    background: linear-gradient(90deg, #fff, var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.world-modal-sub {
    display: block;
    color: #ffb703;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.world-modal-body {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: right;
}

.world-modal-body p {
    margin-bottom: 1rem;
}

.world-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.world-modal-btn {
    padding: 0.95rem 1.5rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.world-modal-btn.primary {
    background: linear-gradient(135deg, var(--secondary-cyan), #00b4d8);
    color: #070814;
    box-shadow: 0 4px 20px rgba(0, 245, 212, 0.35);
}

.world-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 245, 212, 0.5);
}

.world-modal-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.world-modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}



