/* ===== CSS VARIABLES ===== */
:root {
    --pure-black: #000000;
    --pure-white: #ffffff;
    --off-white: #f5f5f5;
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --dark-black: #111111;
}

/* ===== ARCHIVE DROPDOWN STYLING ===== */
/* Archive dropdown styling now consolidated in agoge-mode.css */

/* Fragments Grid Styling - NEW */
.fragments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.fragment-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.fragment-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(0, 0, 0, 0.7);
}

.fragment-date {
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fragment-content h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fragment-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--pure-black);
    color: var(--pure-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== BACKGROUND VIDEO ===== */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    opacity: 1;
    background: #000;
}

.background-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    opacity: 1;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.loading-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    width: 0%;
    animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes loadingProgress {
    to { width: 100%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== BACKGROUND LAYERS ===== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.layer-1 {
    background: radial-gradient(circle at 20% 80%, #ff6b6b 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 20%, #4ecdc4 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 40% 40%, #45b7d1 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

.layer-4 {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    animation: pulse 10s ease-in-out infinite;
}

/* Dark overlay for better text readability over background image */
.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
    text-decoration: none;
    letter-spacing: 0.1em;
    border: 2px solid var(--gold);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    background: var(--gold);
    color: var(--pure-black);
}

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

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

.section-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--off-white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== HOME SECTION ===== */
.home-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.home-section .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--pure-white);
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--gold);
    padding-left: 1rem;
    text-align: center;
}

.title-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gold);
    color: var(--pure-black);
    border-color: var(--gold);
}

.cta-button.secondary {
    background: transparent;
    color: var(--pure-white);
    border-color: var(--gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
}

.cta-button.secondary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--pure-black);
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* ===== LISTENING ROOM SECTION ===== */
.listening-room-section {
    background: transparent;
}

.listening-room-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.video-feed-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    height: 600px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.main-video-feed {
    position: relative;
    background: var(--dark-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark-black), var(--pure-black));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-overlay {
    text-align: center;
    color: var(--pure-white);
}

.video-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.video-overlay p {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 2rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--pure-black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.diary-sidebar {
    background: var(--dark-black);
    padding: 2rem;
    border-left: 2px solid var(--gold);
}

.diary-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.diary-header h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.diary-date {
    font-size: 0.9rem;
    color: var(--off-white);
    font-style: italic;
}

.diary-entries {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diary-entry {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.diary-entry:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.entry-time {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    min-width: 50px;
}

.entry-content h4 {
    font-size: 1rem;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
}

.entry-content p {
    font-size: 0.9rem;
    color: var(--off-white);
    line-height: 1.4;
}

.audio-player-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-visualizer {
    margin-bottom: 2rem;
    text-align: center;
}

#audio-visualizer {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.player-controls {
    text-align: center;
}

.track-info {
    margin-bottom: 2rem;
}

.track-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.track-description {
    color: rgba(255, 255, 255, 0.7);
}

.player-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.player-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.player-btn:hover {
    transform: scale(1.1);
}

.progress-container {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    width: 30%;
    transition: width 0.3s ease;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.track-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.track-item.active {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.track-number {
    font-weight: 600;
    margin-right: 1rem;
    color: #4ecdc4;
}

.track-name {
    flex: 1;
    font-weight: 500;
}

.track-duration {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== LIVE ALBUM SECTION ===== */
.live-album-section {
    background: transparent;
}

.album-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.album-info {
    text-align: center;
}

.album-artwork {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    background: var(--dark-black);
    border-radius: 15px;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark-black), var(--pure-black));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.artwork-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.artwork-placeholder span {
    font-size: 2rem;
    color: var(--pure-white);
    z-index: 1;
}

.album-details {
    text-align: center;
}

.album-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.album-description {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.album-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.track-list-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--gold);
}

.track-list-title {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.track-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.track-item.playing {
    background: rgba(255, 215, 0, 0.3);
    border-left-color: var(--gold);
}

.track-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 50px;
    text-align: center;
}

.track-info {
    flex: 1;
    margin-left: 1rem;
}

.track-title {
    font-size: 1.1rem;
    color: var(--pure-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.track-duration {
    font-size: 0.9rem;
    color: var(--off-white);
}

.track-controls {
    margin-left: 1rem;
}

.play-btn {
    background: var(--gold);
    color: var(--pure-black);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.play-btn:hover {
    background: var(--dark-gold);
    transform: scale(1.1);
}

.play-btn.playing {
    background: var(--dark-gold);
    animation: pulse 2s infinite;
}

.play-btn:disabled {
    background: var(--dark-black);
    color: var(--off-white);
    cursor: not-allowed;
}

.play-btn:disabled:hover {
    transform: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

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

/* ===== ARCHIVE SECTION ===== */
.archive-content {
    display: flex;
    flex-direction: column;
    gap: 0; /* Remove gap to let individual sections control their own spacing */
}

.subsection-title {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

/* .singles-section styling now handled by uniform rules above */

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.single-card {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.single-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.single-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.single-card:hover .single-cover img {
    transform: scale(1.1);
}

.single-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-single {
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-single:hover {
    background: #d4af37;
    transform: scale(1.1);
}

.single-info {
    padding: 1.5rem;
    text-align: center;
}

.single-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.single-year {
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.single-genre {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.album-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.album-cover {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.album-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: opacity 0.3s ease;
}

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

.play-album {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-album:hover {
    transform: scale(1.1);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.album-year {
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.album-genre {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== TOURING SECTION ===== */
.touring-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tour-map {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container {
    position: relative;
    height: 400px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') center/contain no-repeat;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff6b6b;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-pin::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #ff6b6b;
}

.map-pin:hover {
    transform: scale(1.2);
    background: #4ecdc4;
}

.pin-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-pin:hover .pin-label {
    opacity: 1;
}

.tour-dates h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.date-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.date-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date {
    font-weight: 700;
    color: #4ecdc4;
    font-size: 1.1rem;
}

.venue {
    font-weight: 600;
    font-size: 1.1rem;
}

.city {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.ticket-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== AI AVATAR SECTION ===== */
.avatar-container {
    text-align: center;
}

.avatar-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.avatar-visual {
    margin-bottom: 2rem;
}

.avatar-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarPulse 3s ease-in-out infinite;
}

.avatar-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: avatarFloat 4s ease-in-out infinite;
}

.avatar-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.avatar-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.avatar-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.avatar-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avatar-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.newsletter-signup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.signup-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.signup-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
    font-size: 1.5rem;
}

.social-name {
    font-weight: 500;
}

/* ===== FOOTER ===== */
.main-footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section {
        padding: 100px 1rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .listening-room-content,
    .album-progress,
    .touring-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .track-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .signup-form input {
        min-width: auto;
    }
} 

/* ===== INFINITE SCROLL INDICATORS ===== */

.infinite-scroll-indicator {
    background: rgba(0, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 255, 255, 0.2);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #00ffff;
}

.infinite-scroll-indicator .indicator-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.infinite-scroll-indicator .indicator-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.infinite-scroll-indicator .indicator-arrow {
    font-size: 16px;
    animation: bounce 2s infinite;
}

.top-indicator .indicator-arrow {
    animation: bounceUp 2s infinite;
}

.bottom-indicator .indicator-arrow {
    animation: bounceDown 2s infinite;
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* ===== GLOBAL STYLES ===== */ 

/* ===== HORIZONTAL PLAYER STYLING ===== */

.horizontal-player-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.album-info-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.album-artwork {
    flex-shrink: 0;
}

.artwork-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-details {
    flex: 1;
}

.album-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.album-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.album-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Horizontal Track Container */
.horizontal-track-container {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.track-scroll-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.track-list-horizontal {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    transition: transform 0.3s ease;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.track-list-horizontal::-webkit-scrollbar {
    display: none;
}

.track-item-horizontal {
    flex: 0 0 240px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.track-item-horizontal:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.track-item-horizontal.playing {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.track-artwork {
    margin-bottom: 1rem;
}

.track-artwork-placeholder {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-info-horizontal {
    margin-bottom: 1rem;
}

.track-title-horizontal {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.track-duration-horizontal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.track-controls-horizontal {
    display: flex;
    justify-content: center;
}

.play-btn-horizontal {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-horizontal:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: scale(1.1);
}

.play-btn-horizontal.playing {
    background: #d4af37;
    color: #000000;
    animation: pulse 2s infinite;
}

.play-btn-horizontal:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Scroll Indicators */
.scroll-indicators {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.scroll-indicator {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.scroll-indicator:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #d4af37;
    transform: scale(1.1);
}

.scroll-indicator.left {
    left: -25px;
}

.scroll-indicator.right {
    right: -25px;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .horizontal-player-container {
        padding: 0 1rem;
    }
    
    .album-info-panel {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .album-title {
        font-size: 2rem;
    }
    
    .track-item-horizontal {
        flex: 0 0 250px;
        padding: 1rem;
    }
    
    .track-artwork-placeholder {
        height: 100px;
    }
    
    .scroll-indicator {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .scroll-indicator.left {
        left: -20px;
    }
    
    .scroll-indicator.right {
        right: -20px;
    }
} 

/* ===== LIVE FEED BACKGROUND STYLING ===== */

.live-feed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: -3;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease;
}

.live-feed-background.active {
    opacity: 1;
    visibility: visible;
}

.live-feed-container {
    display: flex;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

.live-feed-video {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-feed-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.live-feed-overlay {
    text-align: center;
    color: #d4af37;
    z-index: 2;
}

.live-feed-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-feed-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-feed-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.live-feed-diary {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.live-feed-diary h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diary-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.diary-entries {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diary-entry {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
}

.entry-time {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 50px;
}

.entry-content h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.entry-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== SHOP SECTION STYLING ===== */

.shop-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.shop-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.shop-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shop-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.shop-image {
    margin-bottom: 1rem;
}

.shop-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shop-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.shop-price {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

/* ===== FRAGMENTS SECTION STYLING - REMOVED FOR UNIFORMITY ===== */
/* All fragments styling now handled by uniform rules at top of file */

/* Responsive Design */
@media (max-width: 768px) {
    .live-feed-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .live-feed-placeholder {
        height: 250px;
    }
    
    .live-feed-overlay h3 {
        font-size: 1.5rem;
    }
    
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .shop-placeholder {
        height: 150px;
    }
} 

/* ===== RESONATE SECTION STYLING ===== */

.resonate-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.resonate-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.resonate-content .live-feed-container {
    position: relative;
    height: auto;
    max-height: 600px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.resonate-content .live-feed-video {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.resonate-content .live-feed-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.resonate-content .live-feed-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resonate-content .live-feed-diary {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Responsive Design for Resonate */
@media (max-width: 768px) {
    .resonate-content .live-feed-container {
        flex-direction: column;
        padding: 1rem;
        max-height: none;
    }
    
    .resonate-content .live-feed-placeholder {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .resonate-content .live-feed-overlay h3 {
        font-size: 1.5rem;
    }
} 

/* ===== DUAL-MODE NAVIGATION SYSTEM ===== */

/* Echo Mode Navigation (Default) */
.echo-nav {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hollow-nav {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ===== DUAL-MODE LOGO SYSTEM ===== */

/* Echo Mode Logo (Default) */
.echo-logo {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hollow-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.echo-footer-logo {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hollow-footer-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Phoenix Logo Styling */
.nav-phoenix-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)) brightness(0) saturate(100%) invert(84%) sepia(31%) saturate(638%) hue-rotate(359deg) brightness(103%) contrast(107%);
    transition: all 0.3s ease;
}

.nav-phoenix-logo:hover {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transform: scale(1.05);
}

.footer-logo .footer-phoenix-logo {
    height: 35px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(1000%) hue-rotate(359deg) brightness(0.9) contrast(1.2);
}

/* Loading Screen Logo Visibility */
.echo-loading-logo {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hollow-loading-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.agoge-mode .echo-loading-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.agoge-mode .hollow-loading-logo {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.loading-logo .phoenix-logo {
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

/* Hollow Mode Navigation (When AGOGE mode is active) */
body.agoge-mode .echo-nav {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.agoge-mode .hollow-nav {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hollow Mode Logo (When AGOGE mode is active) */
body.agoge-mode .echo-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.agoge-mode .hollow-logo {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.agoge-mode .echo-footer-logo {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.agoge-mode .hollow-footer-logo {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== DUAL-MODE FOOTER SYSTEM ===== */

/* Echo Mode Footer (Default) */
.echo-footer {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hollow-footer {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hollow Mode Footer (When AGOGE mode is active) */
body.agoge-mode .echo-footer {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.agoge-mode .hollow-footer {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hollow Mode Footer Logo Styling */
body.agoge-mode .footer-logo {
    color: #d4af37 !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    letter-spacing: 2px !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
}

body.agoge-mode .footer-links a {
    color: #d4af37 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

body.agoge-mode .footer-links a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5) !important;
}

/* Smooth transitions for navigation changes */
.nav-link {
    transition: all 0.3s ease;
}

/* Archive Section Styling (replaces Discography) */
.archive-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.archive-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

/* Fragments Dropdown Section - styling now handled by uniform rules above */

.fragments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fragments-toggle {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fragments-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.fragments-toggle .toggle-icon {
    transition: transform 0.3s ease;
}

.fragments-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.fragments-content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
}

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

.echo-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.echo-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.echo-date {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.echo-content h3 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.echo-content p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Archive dropdown styling now consolidated in agoge-mode.css */

/* Responsive adjustments for dual-mode navigation */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .echo-nav,
    .hollow-nav {
        width: 100%;
        text-align: center;
    }
    
    body.agoge-mode .echo-nav,
    .hollow-nav {
        display: none !important;
    }
    
    body.agoge-mode .hollow-nav {
        display: block !important;
    }
} 

/* ===== DUAL-MODE SECTION VISIBILITY ===== */

/* Echo Mode Sections (Default) */
.echo-section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hollow-section {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hollow Mode Sections (When AGOGE mode is active) */
body.agoge-mode .echo-section {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.agoge-mode .hollow-section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Shared sections (visible in both modes) */
.resonate-section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Smooth transitions for section changes */
.section {
    transition: all 0.5s ease;
}

/* Ensure proper spacing when sections are hidden */
.echo-section:not(:first-child),
.hollow-section:not(:first-child) {
    margin-top: 0;
}

/* Responsive adjustments for dual-mode sections */
@media (max-width: 768px) {
    .echo-section,
    .hollow-section {
        min-height: auto;
    }
    
    body.agoge-mode .echo-section,
    .hollow-section {
        display: none !important;
    }
    
    body.agoge-mode .hollow-section {
        display: block !important;
    }
}

.touring-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container {
    position: relative;
    height: 400px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') center/contain no-repeat;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff6b6b;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-pin::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #ff6b6b;
}

.map-pin:hover {
    transform: scale(1.2);
    background: #4ecdc4;
}

.pin-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-pin:hover .pin-label {
    opacity: 1;
}

.tour-dates h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.date-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.date-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date {
    font-weight: 700;
    color: #4ecdc4;
    font-size: 1.1rem;
}

.venue {
    font-weight: 600;
    font-size: 1.1rem;
}

.city {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.ticket-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== AI AVATAR SECTION ===== */
.avatar-container {
    text-align: center;
}

.avatar-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.avatar-visual {
    margin-bottom: 2rem;
}

.avatar-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarPulse 3s ease-in-out infinite;
}

.avatar-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: avatarFloat 4s ease-in-out infinite;
}

.avatar-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.avatar-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.avatar-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.avatar-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avatar-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.newsletter-signup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.signup-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.signup-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
    font-size: 1.5rem;
}

.social-name {
    font-weight: 500;
}

/* ===== FOOTER ===== */
.main-footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section {
        padding: 100px 1rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .listening-room-content,
    .album-progress,
    .touring-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .track-grid {
        grid-template-columns: 1fr;
    }
    
    .discography-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .signup-form input {
        min-width: auto;
    }
} 
