/* ==========================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================== */
:root {
    /* Brand Colors (Badan POM & AI theme) */
    --bpom-blue: #003366;
    --bpom-green: #00A859;
    --bpom-gold: #D4AF37;
    
    /* Tech & AI Glow Colors */
    --glow-cyan: #00f0ff;
    --glow-emerald: #00ffaa;
    --glow-blue: #0066ff;
    
    /* Neutral Palette */
    --bg-dark: #050b18;
    --bg-card: rgba(8, 20, 42, 0.65);
    --bg-card-hover: rgba(12, 28, 58, 0.8);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 240, 255, 0.2);
    --border-glow-green: rgba(0, 255, 170, 0.2);
    
    --text-primary: #ffffff;
    --text-secondary: #9cb1cc;
    --text-muted: #647b9c;
    
    /* Font Families */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(5, 11, 24, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.25);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 170, 0.4);
}

/* ==========================================
   BACKGROUND EFFECTS (AI/TECH VISUALS)
   ========================================== */
.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0),
        linear-gradient(to right, rgba(0, 102, 204, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 30px 30px, 120px 120px, 120px 120px;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}

.glow-orb-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.8) 0%, rgba(0, 102, 255, 0.3) 100%);
    animation: floatOrb1 20s infinite alternate;
}

.glow-orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.6) 0%, rgba(0, 255, 170, 0.2) 100%);
    animation: floatOrb2 25s infinite alternate;
}

@keyframes floatOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 80px) scale(1.1); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -60px) scale(1.15); }
}

/* ==========================================
   APP CONTAINER & SPLIT PANE LAYOUT
   ========================================== */
.app-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* COVER PANE (LEFT) */
.cover-pane {
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 22, 48, 0.95) 0%, rgba(4, 10, 24, 0.98) 100%);
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
    transition: var(--trans-slow);
}

.cover-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--bpom-blue), var(--glow-cyan), var(--bpom-green));
}

.cover-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

/* BPOM SVG Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.bpom-logo {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
    animation: logoGlow 4s infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.2)); }
    100% { filter: drop-shadow(0 0 15px rgba(0, 255, 170, 0.5)); }
}

.agency-title h2 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    line-height: 1.3;
}

.agency-title p {
    font-size: 0.75rem;
    color: var(--bpom-green);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Titles */
.badge-ai {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-glow);
    color: var(--glow-cyan);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 30%, #a2c7f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2.5rem;
    border-left: 2.5px solid var(--bpom-green);
    padding-left: 1rem;
}

/* Recipient Box */
.recipient-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.2rem 1.8rem;
    width: 100%;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.recipient-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--glow-cyan);
}

.to-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.recipient-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--glow-cyan);
    margin: 0.3rem 0;
}

.to-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn-open-invitation {
    background: linear-gradient(135deg, var(--bpom-blue) 0%, #004d99 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--trans-normal);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-open-invitation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
    border-color: var(--glow-cyan);
}

.btn-glow {
    position: absolute;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    top: 0;
    left: -150%;
    transform: skewX(-20deg);
    transition: 0.7s;
}

.btn-open-invitation:hover .btn-glow {
    left: 150%;
}

.cover-footer {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

/* CONTENT PANE (RIGHT) */
.content-pane {
    width: 58%;
    height: 100%;
    overflow-y: auto;
    padding: 4rem 3.5rem;
    z-index: 5;
    position: relative;
}

/* ==========================================
   CARDS & CONTAINERS
   ========================================== */
.content-section {
    margin-bottom: 4rem;
}

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

.glass-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    transition: box-shadow var(--trans-normal);
}

.glass-card:hover {
    box-shadow: 0 15px 45px rgba(0, 240, 255, 0.22);
}

/* Conic gradient rotating border element behind the card */
.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(0, 240, 255, 0.08) 25%,
        rgba(0, 255, 170, 0.15) 50%,
        rgba(0, 240, 255, 0.08) 75%,
        transparent 100%
    );
    animation: rotateBorder 12s linear infinite;
    z-index: -2;
    pointer-events: none;
    transition: var(--trans-normal);
}

.glass-card:hover::before {
    background: conic-gradient(
        transparent,
        rgba(0, 240, 255, 0.28) 25%,
        rgba(0, 255, 170, 0.48) 50%,
        rgba(0, 240, 255, 0.28) 75%,
        transparent 100%
    );
    animation-duration: 5s; /* Spreads glow faster on hover */
}

/* Glass card body background overlay */
.glass-card::after {
    content: '';
    position: absolute;
    inset: 1.5px; /* Border thickness */
    background: var(--bg-card);
    border-radius: 14.5px; /* Matches card border minus border thickness */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
    pointer-events: none;
    transition: background var(--trans-normal);
}

.glass-card:hover::after {
    background: var(--bg-card-hover);
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Badges & Section Titles */
.section-badge {
    color: var(--glow-cyan);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    background: linear-gradient(to right, #ffffff, #b2c9e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Quote container */
.quote-container {
    border-left: 3px solid var(--bpom-green);
    background: rgba(0, 168, 89, 0.04);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
}

.quote-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bpom-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================
   EVENT DETAILS GRID
   ========================================== */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.8rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.detail-item.full-width {
    grid-column: span 2;
}

.detail-icon {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--glow-cyan);
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-info h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.detail-info p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.detail-info p.highlight {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--glow-cyan);
}

.detail-info p.desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================
   COUNTDOWN TIMER
   ========================================== */
.countdown-wrapper {
    margin-top: 2.5rem;
    text-align: center;
    border-top: 1px dashed var(--border-light);
    padding-top: 2.5rem;
}

.countdown-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.countdown-box {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    width: 80px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-box .time {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--glow-cyan);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.countdown-box .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================
   RUNDOWN / TIMELINE
   ========================================== */
.rundown-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: relative;
    transition: var(--trans-fast);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--glow-cyan);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glow-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.timeline {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 1.8rem;
}

.timeline.active {
    display: flex;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.8rem;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2.5px solid var(--text-muted);
    z-index: 2;
    transition: border-color var(--trans-fast);
}

.timeline-item:hover::before {
    border-color: var(--glow-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

.time-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--glow-cyan);
    margin-bottom: 0.4rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.2rem;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Sub-activities in timeline */
.timeline-sub-list {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.timeline-sub-item {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    padding-left: 0.3rem;
}

.timeline-sub-bullet {
    color: var(--glow-cyan);
    font-weight: 700;
    margin-right: 0.3rem;
}

.timeline-sub-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.timeline-content.highlight-event {
    border-color: var(--border-glow-green);
    background: rgba(0, 168, 89, 0.03);
}

.timeline-content.highlight-event h4 {
    color: var(--glow-emerald);
}

/* ==========================================
   LINK KEGIATAN BUTTON
   ========================================== */
.link-kegiatan-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--glow-cyan), var(--glow-emerald));
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--trans-med);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.link-kegiatan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.5);
    filter: brightness(1.1);
}

.link-kegiatan-btn:active {
    transform: translateY(0);
}

.link-kegiatan-btn svg {
    flex-shrink: 0;
}

/* ==========================================
   MAPS SECTION
   ========================================== */
.address-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.map-container {
    width: 100%;
    height: 250px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #0b1424;
    position: relative;
}

.map-grid-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--glow-cyan);
    box-shadow: 0 0 0 rgba(0, 240, 255, 0.4);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.marker-info {
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 22, 48, 0.9);
    border: 1px solid var(--border-glow);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-align: center;
    min-width: 150px;
}

.marker-info .tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.marker-info .coordinates {
    display: block;
    font-size: 0.7rem;
    color: var(--glow-cyan);
}

.map-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans-fast);
}

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

.btn-primary-link {
    background: linear-gradient(135deg, var(--bpom-green) 0%, #008044 100%);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans-fast);
}

.btn-primary-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
}

/* ==========================================
   FORM & RSVP SECTION
   ========================================== */
.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

input[type="text"], 
select, 
textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--trans-fast);
    outline: none;
}

input[type="text"]:focus, 
select:focus, 
textarea:focus {
    border-color: var(--glow-cyan);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

select option {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* Radio Cards */
.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.radio-card {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
    transition: var(--trans-fast);
    background: rgba(255, 255, 255, 0.01);
}

.radio-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.radio-card input[type="radio"] {
    margin-top: 0.25rem;
    accent-color: var(--glow-cyan);
}

.radio-label {
    display: flex;
    flex-direction: column;
}

.radio-label .title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.radio-label .desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Selected State for Radio Card */
.radio-card:has(input[type="radio"]:checked) {
    border-color: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.btn-submit {
    background: linear-gradient(135deg, var(--bpom-blue) 0%, #0066cc 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--trans-fast);
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    border-color: var(--glow-cyan);
}

/* ==========================================
   BUKU TAMU / WISHES LIST
   ========================================== */
.guestbook-container {
    width: 100%;
}

.wishes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.wish-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1.2rem;
    position: relative;
    animation: cardSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

.wish-author {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--glow-cyan);
}

.wish-badge {
    background: rgba(0, 168, 89, 0.1);
    color: var(--glow-emerald);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-glow-green);
}

.wish-badge.absent {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-color: var(--border-light);
}

.wish-metadata {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.wish-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================
   MUSIC PLAYER CONTROLLER
   ========================================== */
.audio-controller {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-music {
    background: rgba(8, 20, 42, 0.85);
    border: 1px solid var(--border-glow);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--glow-cyan);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.25);
    transition: var(--trans-fast);
    outline: none;
}

.btn-music:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.music-icon {
    display: none;
}

.music-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.music-wave span {
    display: block;
    width: 2px;
    background-color: var(--glow-cyan);
    border-radius: 1px;
    animation: bounceWave 0.8s ease infinite alternate;
}

.music-wave span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.music-wave span:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.music-wave span:nth-child(3) { height: 10px; animation-delay: 0.5s; }
.music-wave span:nth-child(4) { height: 8px; animation-delay: 0.2s; }

@keyframes bounceWave {
    from { transform: scaleY(0.2); }
    to { transform: scaleY(1); }
}

/* Paused State for Wave */
.audio-controller.paused .music-wave span {
    animation-play-state: paused;
    transform: scaleY(0.3);
    background-color: var(--text-muted);
}

.audio-controller.paused .btn-music {
    border-color: var(--border-light);
    color: var(--text-muted);
    box-shadow: none;
}

/* Tooltip */
.music-tooltip {
    background: rgba(8, 20, 42, 0.9);
    border: 1px solid var(--border-light);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 4px;
    color: var(--text-secondary);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--trans-fast);
}

.audio-controller:hover .music-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toast {
    background: rgba(8, 20, 42, 0.95);
    border-left: 4px solid var(--glow-emerald);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 2.5rem;
    margin-top: 5rem;
    text-align: center;
}

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

.main-footer .tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--glow-cyan);
    margin-top: 0.4rem;
    letter-spacing: 1px;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE ADAPTATIONS)
   ========================================== */

/* State where content is locked until Cover is opened */
body.locked {
    overflow: hidden;
}

@media (min-width: 1025px) {
    /* Large screens: Force split screen always */
    body.locked {
        overflow: auto; /* Allow scrolling right pane since left pane is fixed */
    }
    
    .cover-pane {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
    }
    
    .content-pane {
        margin-left: 42%;
    }
}

@media (max-width: 1024px) {
    .app-container {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    /* Cover as overlay */
    .cover-pane {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        padding: 3rem 2rem;
        transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 1.2s;
    }

    .cover-pane.opened {
        transform: none;
        visibility: hidden;
        pointer-events: none;
    }

    /* Content below cover */
    .content-pane {
        width: 100%;
        height: auto;
        padding: 3rem 1.5rem;
        overflow-y: visible;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item.full-width {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .audio-controller {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* ==========================================
   FUTURISTIC AI IMAGE EFFECTS & ANIMATIONS
   ========================================== */
.cover-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bpom_ai_building.png');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: -1;
    transition: transform var(--trans-slow);
    animation: zoomBg 24s infinite alternate linear;
    pointer-events: none;
}

@keyframes zoomBg {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.08) rotate(0.5deg); }
}

.intro-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: var(--trans-normal);
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 320px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 11, 24, 0.8) 0%, transparent 60%);
    pointer-events: none;
    transition: var(--trans-normal);
}

.intro-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.intro-image-container:hover {
    border-color: var(--border-glow);
    box-shadow: 0 12px 35px rgba(0, 240, 255, 0.15);
}

.intro-image-container:hover .intro-image {
    transform: scale(1.04);
}

.intro-image-container:hover::after {
    left: 125%;
}

/* ==========================================
   NEW PREMIUM IMAGES & CARDS COMPONENTS
   ========================================== */
.intro-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

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

.image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(8, 22, 48, 0.85);
    border: 1px solid var(--border-glow);
    color: var(--glow-cyan);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
    pointer-events: none;
}

.venue-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-top: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--trans-normal);
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.venue-image-container:hover {
    border-color: var(--border-glow-green);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
}

.venue-image-container:hover .venue-image {
    transform: scale(1.05);
}

.detail-item.flex-col {
    flex-direction: column;
    align-items: stretch;
}

.detail-header {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

/* Gallery Section Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

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

.gallery-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--trans-normal);
    position: relative;
}

.gallery-img-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-info {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.gallery-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Hover effects for Gallery Card */
.gallery-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.15);
}

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

/* ==========================================
   OFFICIAL LOGO & BACKGROUND GRID LINES
   ========================================== */
.bpom-logo-img {
    width: 62px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
    animation: logoGlow 4s infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.6));
    }
}

/* Background Cyber Grid Lines (Cipher Digital Style) */
.cyber-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: rgba(0, 240, 255, 0.04);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
}

.grid-line.line-1 { top: 25%; }
.grid-line.line-2 { top: 75%; }
.grid-line.line-3 { left: 30%; }
.grid-line.line-4 { left: 70%; }

.grid-line::after {
    content: '';
    position: absolute;
}

.grid-line.horizontal::after {
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glow-cyan), var(--glow-emerald), transparent);
    animation: horizontalPulse 8s infinite linear;
}

.grid-line.vertical::after {
    left: 0;
    top: -50%;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, var(--glow-cyan), var(--glow-emerald), transparent);
    animation: verticalPulse 10s infinite linear;
}

@keyframes horizontalPulse {
    0% { left: -50%; }
    100% { left: 150%; }
}

@keyframes verticalPulse {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ==========================================
   SERVICES GRID (LAYANAN DIGITAL BPOM)
   ========================================== */
.services-cyber-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.2rem;
}

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

.service-cyber-cell {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: var(--trans-normal);
    z-index: 1;
}

.service-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    transition: var(--trans-normal);
    flex-shrink: 0;
}

.service-icon-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.service-cell-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.badge-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-cyber-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity var(--trans-normal);
    z-index: -1;
}

.service-cyber-cell:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.12);
}

.service-cyber-cell:hover::before {
    opacity: 1;
}

.service-cyber-cell:hover .service-icon-wrapper {
    border-color: var(--glow-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

/* ==========================================
   COVER BG VIDEO & OVERLAY
   ========================================== */
.cover-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.75;
}

.cover-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 9, 23, 0.5) 0%, rgba(5, 11, 24, 0.7) 100%);
    z-index: 2;
}

/* ==========================================
   SDM FEST 2026 ARCHWAY (ENTRANCE STAGE)
   ========================================== */
.sdm-fest-arch {
    background: rgba(16, 20, 38, 0.45);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sdm-fest-arch::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), transparent, rgba(0, 255, 170, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.arch-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.arch-logo {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.4));
}

.arch-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffffff, #00f0ff, #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 240, 255, 0.3));
}

.arch-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--glow-cyan), var(--glow-emerald));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

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

@media (max-width: 600px) {
    .arch-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.arch-pillar {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pillar-icon {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    transition: var(--trans-normal);
}

.pillar-icon:hover {
    border-color: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.04);
    transform: translateX(3px);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

.pillar-right .pillar-icon:hover {
    transform: translateX(-3px);
}

.icon-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glow-cyan);
    box-shadow: 0 0 8px var(--glow-cyan);
    display: inline-block;
    flex-shrink: 0;
}

.pillar-right .icon-indicator {
    background: var(--glow-emerald);
    box-shadow: 0 0 8px var(--glow-emerald);
}

/* ==========================================
   LAUNCHING VIDEO PLAYERS
   ========================================== */
.video-card-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.launching-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-glow-effect {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.25);
    border: 1px solid rgba(0, 240, 255, 0.2);
    z-index: 2;
}

/* ==========================================
   NARASUMBER (SPEAKERS) GRID
   ========================================== */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.speaker-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--trans-normal);
}

.speaker-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.15);
}

.speaker-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.speaker-card:hover .speaker-img-wrapper img {
    transform: scale(1.05);
}

.speaker-info {
    padding: 1.2rem;
    border-top: 1px solid var(--border-light);
}

.speaker-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.speaker-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================================
   PREMIUM ARCHWAY & STAGE: SDM FEST 2026 (MATCHING PHOTO)
   ============================================================ */
.sdm-fest-arch {
    position: relative;
    background: radial-gradient(100% 100% at 50% 0%, rgba(10, 24, 60, 0.4) 0%, rgba(5, 10, 28, 0.8) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.1), inset 0 0 20px rgba(0, 240, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Glowing Top Arch Bar */
.arch-top-bar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--glow-cyan);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px -4px rgba(0, 240, 255, 0.4);
}

.arch-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--glow-cyan);
    bottom: -8px;
}
.arch-corner-tl {
    left: 0;
    border-right: none;
    border-top: none;
    transform: rotate(45deg);
}
.arch-corner-tr {
    right: 0;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
}

.arch-center-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

.arch-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.arch-brand-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin: 0;
}
.arch-brand-text h2 span {
    color: var(--glow-cyan);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
}

.arch-scan-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--glow-cyan), var(--glow-emerald), transparent);
    animation: archScan 3s linear infinite;
}

@keyframes archScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Arch Body Layout */
.arch-body {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .arch-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.arch-pillar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-icon {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatIcon 4s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

.pillar-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glow-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
    transition: all 0.3s ease;
}

.pillar-icon:hover {
    border-color: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.pillar-icon:hover .pillar-icon-box {
    background: var(--glow-cyan);
    color: #050a1c;
    box-shadow: 0 0 10px var(--glow-cyan);
}

.pillar-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #e2e8f0;
}

/* Center Stage Visual */
.arch-stage-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stage-neon-frame {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1.4 / 1;
    background: #040817;
    border: 2px solid #0055ff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 0 25px rgba(0, 85, 255, 0.4), inset 0 0 15px rgba(0, 85, 255, 0.2);
}

.stage-neon-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    border: 1.5px solid var(--glow-cyan);
    opacity: 0.7;
    pointer-events: none;
    animation: framePulse 2s ease-in-out infinite alternate;
}

@keyframes framePulse {
    0% { opacity: 0.3; filter: drop-shadow(0 0 2px var(--glow-cyan)); }
    100% { opacity: 0.9; filter: drop-shadow(0 0 8px var(--glow-cyan)); }
}

.stage-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #091a45 0%, #02050f 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stage-bpom-logo {
    height: 55px;
    width: auto;
    margin-bottom: 0.8rem;
    z-index: 2;
    animation: logoPulse 2.5s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    0% { transform: scale(0.95); filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.4)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.7)); }
}

.stage-title-block {
    z-index: 2;
    text-align: center;
}

.stage-event-badge {
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.25), rgba(0, 255, 170, 0.25));
    border: 1px solid var(--glow-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
    letter-spacing: 0.5px;
}

.stage-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.08), transparent);
    animation: scanStage 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scanStage {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.arch-bottom-plate {
    margin-top: 1rem;
    background: #0f1c3f;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    padding: 0.3rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--glow-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Floating Particles */
.stage-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--glow-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleUp 5s linear infinite;
}
.stage-particles .p1 { left: 15%; animation-duration: 4s; animation-delay: 0.5s; }
.stage-particles .p2 { left: 35%; animation-duration: 6s; animation-delay: 1.2s; }
.stage-particles .p3 { left: 55%; animation-duration: 3s; animation-delay: 0.2s; }
.stage-particles .p4 { left: 75%; animation-duration: 5.5s; animation-delay: 2.1s; }
.stage-particles .p5 { left: 88%; animation-duration: 4.8s; animation-delay: 0.9s; }

@keyframes particleUp {
    0% { transform: translateY(110px); opacity: 0; }
    30% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-20px); opacity: 0; }
}

/* Bottom Accents */
.arch-bottom-accents {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.accent-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
}

.accent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glow-cyan);
    box-shadow: 0 0 8px var(--glow-cyan);
}

/* ============================================================
   AMBIENT VIDEO TEASER & DECORATIONS
   ============================================================ */
.ambient-video-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.ambient-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.ambient-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #050a1c 0%, rgba(5, 10, 28, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 0.8rem;
}

.ambient-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ambient-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
    box-shadow: 0 0 8px red;
    animation: recBlink 1s infinite alternate;
}

@keyframes recBlink {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* Video Frame Corner Decos */
.video-frame-deco {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--glow-cyan);
    z-index: 3;
    pointer-events: none;
}
.video-frame-deco.top-left { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.video-frame-deco.top-right { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.video-frame-deco.bot-left { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.video-frame-deco.bot-right { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.launching-keywords {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.launching-keywords span {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.launching-keywords span:hover {
    border-color: var(--glow-cyan);
    color: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.03);
}

/* ============================================================
   3D CARD ENTRANCE & SPEAKERS GRID
   ============================================================ */
.speakers-grid {
    perspective: 1000px;
}

.speaker-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* ============================================================
   ADVANCED ANIMATIONS STYLING (CANVAS, CURTAIN, GLITCH, LINE)
   ============================================================ */

/* 1. Canvas Background */
#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
}

/* 2. Curtain Split Reveal */
.cover-curtain {
    position: absolute;
    top: 0;
    width: 50.5%; /* slight overlap to avoid gap */
    height: 100%;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.left-curtain {
    left: 0;
    border-right: 1.5px solid var(--border-glow);
}

.right-curtain {
    right: 0;
    border-left: 1.5px solid var(--border-glow);
}

/* Curtain background wrapper for perfect alignment of split elements */
.curtain-bg-wrapper {
    position: absolute;
    top: 0;
    width: 200%; /* Parent is 50.5%, wrapper matches 101% of screen size to make a single seamless image/video */
    height: 100%;
}

.left-curtain .curtain-bg-wrapper {
    left: 0;
}

.right-curtain .curtain-bg-wrapper {
    right: 0;
}

.curtain-bg-wrapper .cover-bg-image,
.curtain-bg-wrapper .cover-bg-video,
.curtain-bg-wrapper .cover-video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.curtain-bg-wrapper .cover-bg-image {
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    animation: zoomBg 24s infinite alternate linear;
}

.curtain-bg-wrapper .cover-bg-video {
    object-fit: cover;
    opacity: 0.75;
    z-index: 1;
}

.curtain-bg-wrapper .cover-video-overlay {
    background: linear-gradient(135deg, rgba(4, 9, 23, 0.5) 0%, rgba(5, 11, 24, 0.7) 100%);
    z-index: 2;
}

/* Slide out curtains when cover-pane is opened */
.cover-pane.opened .left-curtain {
    transform: translateX(-100%);
}

.cover-pane.opened .right-curtain {
    transform: translateX(100%);
}

/* Smooth fade out elements inside cover-pane on open */
.cover-pane.opened .logo-container,
.cover-pane.opened .cover-event-info,
.cover-pane.opened .recipient-box,
.cover-pane.opened .btn-open-invitation,
.cover-pane.opened .cover-footer {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.cover-content {
    z-index: 3 !important; /* Ensure content is on top of curtains */
    transition: all 0.6s ease;
}

/* 3. Glitch Text Styling */
.badge-ai,
.section-title,
.main-title {
    position: relative;
    transition: text-shadow 0.2s ease;
}

.badge-ai.glitch-active,
.section-title.glitch-active,
.main-title.glitch-active {
    animation: glitchRGB 0.25s infinite;
}

@keyframes glitchRGB {
    0% { text-shadow: 1.5px -1.5px 0 #ff3366, -1.5px 1.5px 0 #00ffff; }
    25% { text-shadow: -1.5px 1.5px 0 #ff3366, 1.5px -1.5px 0 #00ffff; }
    50% { text-shadow: 1.5px 1.5px 0 #ff3366, -1.5px -1.5px 0 #00ffff; }
    75% { text-shadow: -1.5px -1.5px 0 #ff3366, 1.5px 1.5px 0 #00ffff; }
    100% { text-shadow: 1.5px -1.5px 0 #ff3366, -1.5px 1.5px 0 #00ffff; }
}

/* 4. Timeline Line Glow Assembly */
.timeline-line-glow {
    position: absolute;
    left: 4px;
    top: 5px;
    width: 2px;
    height: 0%; /* Grows dynamically from 0 to 100% */
    background: linear-gradient(to bottom, var(--glow-cyan) 0%, var(--glow-emerald) 100%);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    z-index: 1;
    transition: height 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}


