/* 
   Drum de Dance: Concept 2 - Liberated & Dynamic Design System
   Main Stylesheet
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #050614;
    --bg-darker: #02030a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-bg: rgba(255, 255, 255, 0.06);
    --card-hover-border: rgba(0, 255, 255, 0.3);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --primary-gradient: linear-gradient(135deg, #ff00ff 0%, #ff5500 50%, #00ffff 100%);
    --accent-gradient: linear-gradient(135deg, #00ffff 0%, #ffaa00 50%, #ff00ff 100%);
    --btn-gradient: linear-gradient(135deg, #ff00ff 0%, #ff5500 100%);
    
    --color-primary: #ff00ff;
    --color-secondary: #00ffff;
    --color-accent: #ff5500;
    
    --font-heading: 'Outfit', 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glows - Concept 2 Premium */
.bg-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
}

.glow-sphere-left {
    top: 15%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #e0246a 0%, transparent 80%);
}

.glow-sphere-right {
    bottom: 20%;
    right: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #00dbff 0%, transparent 80%);
}

.glow-sphere-bottom {
    bottom: -150px;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff7700 0%, transparent 80%);
    opacity: 0.1;
}

/* Neon Wave Ribbons (Mockup Image Assets with Blending) */
.neon-ribbons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.native-wave {
    position: absolute;
    pointer-events: none;
    height: 700px;
    opacity: 0.98; /* Increased opacity to maximize glow */
    mix-blend-mode: screen; /* Additive color rendering to make neon glowing paths stand out */
    transition: opacity 0.5s ease;
}

body:hover .native-wave {
    opacity: 1.0;
}

.wave-left-svg {
    left: 0;
    top: 50px;
    width: 100vw;
    animation: wave-float-left-anim 16s ease-in-out infinite alternate;
}

@keyframes wave-float-left-anim {
    0% { transform: translateY(0) scale(1) skewX(-2deg); }
    100% { transform: translateY(20px) scale(1.05) skewX(2deg); }
}

/* Floating Sparks (Bottom Right Glows) */
.sparks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.spark {
    position: absolute;
    background: #ffffff; /* Solid White particles */
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Individual spark positions removed from CSS: now dynamically set via responsive inline styles in templates/base.html */

@keyframes float-spark-slow {
    0% { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
    15% { opacity: 0.8; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-110vh) translateX(-70px) scale(1.3); opacity: 0; }
}

@keyframes float-spark-fast {
    0% { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
    15% { opacity: 0.9; }
    70% { opacity: 0.4; }
    100% { transform: translateY(-110vh) translateX(50px) scale(1.1); opacity: 0; }
}

/* Header & Navigation */
header {
    background: rgba(5, 6, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 219, 255, 0.5);
}

.nav-btn {
    background: var(--btn-gradient);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(224, 36, 106, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 36, 106, 0.5);
}

/* Split Typography & Image Hero Section */
.hero-split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    position: relative;
    z-index: 10;
}

.hero-split-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.mockup-hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.mockup-hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1.8rem;
    max-width: 600px;
    text-align: left;
}

.hero-split-actions {
    margin-top: 2.2rem;
}

.hero-split-right {
    flex: 0.9;
    width: 100%;
}

.hero-image-container {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6), 
        0 0 30px rgba(0, 255, 255, 0.15),
        0 0 60px rgba(255, 0, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-container:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.7), 
        0 0 40px rgba(0, 255, 255, 0.25),
        0 0 80px rgba(255, 0, 255, 0.15);
}

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

@media (max-width: 900px) {
    .hero-split-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-top: 6rem;
        gap: 2.5rem;
    }
    .hero-split-left {
        align-items: center;
        text-align: center;
    }
    .mockup-hero-title {
        font-size: 3.2rem;
    }
    .mockup-hero-desc {
        text-align: center;
    }
    .hero-split-right {
        max-width: 500px;
    }
}

/* Pitch / Intro container styling */
.pitch-container {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.pitch-content {
    flex: 1.2;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
}

/* Option 2: Interactive Lightbox Modal Styling */
.pitch-video-wrapper {
    flex: 0.9;
    width: 100%;
}

.pitch-video-thumbnail-card {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 255, 255, 0.05);
    transition: 
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
        border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pitch-video-thumbnail-card:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6), 
        0 0 25px rgba(0, 255, 255, 0.25), 
        0 0 50px rgba(255, 0, 255, 0.1);
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: grayscale(20%) brightness(0.65);
    transition: opacity 0.6s ease, filter 0.6s ease;
}

.pitch-video-thumbnail-card:hover .thumbnail-img {
    opacity: 0.85;
    filter: grayscale(0%) brightness(0.85);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
}

.play-neon-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #00ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.8rem;
}

.play-neon-btn .play-triangle {
    color: #00ffff;
    font-size: 1.6rem;
    margin-left: 6px; /* offset triangle to center visually */
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    transition: color 0.5s ease, text-shadow 0.5s ease, transform 0.5s ease;
}

.pitch-video-thumbnail-card:hover .play-neon-btn {
    transform: scale(1.12);
    border-color: #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6), inset 0 0 15px rgba(255, 0, 255, 0.3);
}

.pitch-video-thumbnail-card:hover .play-neon-btn .play-triangle {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
    transform: scale(1.05);
}

.play-label {
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.75;
    transition: opacity 0.5s ease, color 0.5s ease;
}

.pitch-video-thumbnail-card:hover .play-label {
    opacity: 1;
    color: #ff00ff;
}

/* Modal Lightbox Layout */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-container {
    width: 90%;
    max-width: 960px;
    position: relative;
    transform: scale(0.92) translateY(10px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.6rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.video-modal-close:hover {
    opacity: 1;
    color: #ff00ff;
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 0, 255, 0.8);
}

.video-modal-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 255, 0.15);
}

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

@media (max-width: 900px) {
    .pitch-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }
}

.pitch-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pitch-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

/* Two-Column Dashboard Panels Grid */
.panels-grid {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.panel-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Left Panel: Rhythm Sessions list */
.sessions-list {
    display: flex;
    flex-direction: column;
}

.no-sessions {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.session-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.session-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.session-info {
    flex: 1;
    padding-right: 1rem;
}

.session-row .session-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.session-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.session-btn {
    background: linear-gradient(135deg, #00dbff 0%, #00aeff 100%);
    color: #050614 !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 219, 255, 0.3);
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.session-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 219, 255, 0.5);
}

/* Right Panel: Tickets side-by-side */
.tickets-row {
    display: flex;
    gap: 1rem;
}

.ticket-card {
    flex: 1;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.ticket-card:hover {
    border-color: rgba(224, 36, 106, 0.2);
}

.ticket-header h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.ticket-sub {
    font-size: 0.7rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 0.2rem;
    display: block;
}

.ticket-body {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 1rem 0;
}

.ticket-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.ticket-btn {
    background: linear-gradient(135deg, #e0246a 0%, #ff0090 100%);
    color: #fff !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(224, 36, 106, 0.25);
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(224, 36, 106, 0.45);
}

/* Detailed Articles & Form positioning */
.detailed-section, .booking-section {
    max-width: 900px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.detailed-article {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
}

.detailed-header {
    margin-bottom: 1.5rem;
}

.detailed-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.detailed-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--card-border);
}

.detailed-media iframe, .detailed-media video {
    width: 100%;
    height: 100%;
    border: none;
}

.detailed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detailed-body {
    color: var(--text-secondary);
}

.detailed-body h2, .detailed-body h3 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.detailed-body h2 {
    font-size: 1.3rem;
}

.detailed-body p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.detailed-footer {
    margin-top: 2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Glassmorphism Card Layout */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

/* Event List */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.event-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    box-shadow: 0 10px 30px rgba(0, 219, 255, 0.1);
}

.event-header {
    padding: 2.5rem 2.5rem 1rem 2.5rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.event-badge {
    background: rgba(0, 219, 255, 0.15);
    color: var(--color-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 219, 255, 0.3);
}

.event-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-subtitle {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Media Showcase */
.event-media {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 480px;
}

.event-media iframe {
    width: 100%;
    height: 480px;
    border: none;
}

/* Event Content */
.event-body {
    padding: 2.5rem;
    color: var(--text-secondary);
}

.event-body h1, .event-body h2, .event-body h3 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.event-body h2 {
    font-size: 1.4rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 0.75rem;
}

.event-body p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.event-body ul, .event-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.event-body li {
    margin-bottom: 0.5rem;
}

.event-footer {
    padding: 0 2.5rem 2.5rem 2.5rem;
    display: flex;
    justify-content: flex-start;
}

/* Button & Link UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--btn-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(224, 36, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 36, 106, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--color-secondary);
    background: rgba(0, 219, 255, 0.05);
}

/* Form Styles */
.form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(0, 219, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

/* Anti-spam math captcha styling */
.captcha-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.captcha-question {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-secondary);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* Alert notifications */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--card-border);
    padding: 3rem 2rem;
    background: var(--bg-darker);
    text-align: center;
    color: var(--text-muted);
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Admin Dashboard Elements */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tabs & Custom Editor Styling */
.editor-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.editor-toolbar {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.editor-tabs {
    display: flex;
    gap: 0.25rem;
}

.editor-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.editor-tab.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.toolbar-helpers {
    display: flex;
    gap: 0.25rem;
}

.toolbar-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.toolbar-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-secondary);
}

.editor-textarea {
    width: 100%;
    min-height: 350px;
    background: transparent;
    border: none;
    padding: 1rem;
    color: var(--text-primary);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    resize: vertical;
}

.editor-textarea:focus {
    outline: none;
}

.preview-panel {
    min-height: 350px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-secondary);
    overflow-y: auto;
    border-top: 1px solid var(--card-border);
}

/* Admin Table Design */
.admin-table-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow-x: auto;
    margin-bottom: 3rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Actions list */
.action-links {
    display: flex;
    gap: 0.75rem;
}

.action-link {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.action-edit {
    color: var(--color-secondary);
}

.action-delete {
    color: #ef4444;
}

/* Media Query Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .hero-split-container {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
        gap: 2rem;
    }
    
    .hero-text-col {
        text-align: center;
        max-width: 100%;
    }
    
    .mockup-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .mockup-hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-col {
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-frame {
        max-width: 100%;
    }
    
    .panels-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tickets-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ticket-card {
        min-height: auto;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .detailed-article {
        padding: 1.5rem;
    }
    
    .detailed-media iframe {
        height: 250px;
    }
}

/* Floating BGM Controller */
.bgm-controller {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(5, 6, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    padding: 8px 16px 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bgm-controller:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.bgm-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
    transition: all 0.2s ease;
    padding: 0;
}

.bgm-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255, 0, 255, 0.6);
}

.bgm-toggle-btn:active {
    transform: scale(0.95);
}

.bgm-icon {
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}

.play-icon {
    margin-left: 2px; /* Visual center adjustment for triangle */
}

.bgm-info {
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.bgm-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
}

.bgm-status {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.bgm-status.active {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

/* Mini Equalizer Bounce Animation */
.bgm-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    width: 22px;
    height: 16px;
    margin-left: 4px;
}

.eq-bar {
    width: 3px;
    height: 3px;
    background: #ff00ff;
    border-radius: 1.5px;
    transition: height 0.2s ease;
}

.bgm-equalizer.playing .eq-bar {
    background: #00ffff;
    animation: bounce-eq 0.8s ease infinite alternate;
}

.bgm-equalizer.playing .eq-bar:nth-child(1) { animation-duration: 0.6s; animation-delay: 0.1s; }
.bgm-equalizer.playing .eq-bar:nth-child(2) { animation-duration: 0.8s; animation-delay: 0.3s; }
.bgm-equalizer.playing .eq-bar:nth-child(3) { animation-duration: 0.5s; animation-delay: 0.0s; }
.bgm-equalizer.playing .eq-bar:nth-child(4) { animation-duration: 0.7s; animation-delay: 0.2s; }

@keyframes bounce-eq {
    0% { height: 3px; }
    100% { height: 16px; }
}

@media (max-width: 768px) {
    /* Global Layout & Padding */
    .container {
        padding: 2.5rem 1.25rem;
    }
    
    .detailed-section, .booking-section {
        padding: 0 1.25rem;
        margin-bottom: 4rem;
    }
    
    .detailed-article {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-card {
        padding: 1.5rem 1.25rem;
    }

    /* Hero Text Scaling */
    .mockup-hero-title {
        font-size: 2.4rem;
    }
    
    .mockup-hero-desc {
        font-size: 1rem;
        margin-top: 1.2rem;
    }
    
    .hero-split-actions {
        margin-top: 1.8rem;
    }
    
    .hero-split-container {
        padding-bottom: 3rem;
    }

    /* Concept & Video elements */
    .pitch-content {
        padding: 1.5rem;
    }
    
    .pitch-video-thumbnail-card {
        border-radius: 20px;
    }

    /* Lightbox Modal Tweaks */
    .video-modal-close {
        top: -45px;
        right: 10px;
        font-size: 2.2rem;
    }
    
    /* BGM floating controller mobile layout */
    .bgm-controller {
        bottom: 20px;
        right: 20px;
        padding: 6px 12px 6px 6px;
    }
    
    .bgm-toggle-btn {
        width: 38px;
        height: 38px;
    }
}
