:root
{
    --color-orange: #f37021;
    --color-orange-hover: #d95e14;
    --color-orange-light: #fef0e6;
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    --color-bg: #f8fafc;
    --color-card-bg: #ffffff;
    --color-text: #334155;
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-base: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

html
{
    scrollbar-gutter: stable;
}

body
{
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6
{
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a
{
    color: var(--color-orange);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover
{
    color: var(--color-orange-hover);
}

/* Base Layout Container */
.container
{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 24px;
    width: 100%;
}

/* Header & Navigation */
header
{
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container
{
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
}

.logo-wrapper
{
    align-items: center;
    display: flex;
    gap: 12px;
}

.logo-text-top
{
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-main
{
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    line-height: 0.95;
    text-transform: lowercase;
}

.logo-main span
{
    color: var(--color-navy);
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-buttons
{
    align-items: center;
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn
{
    align-items: center;
    border-radius: var(--radius-sm);
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    padding: 12px 24px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary
{
    background-color: var(--color-orange);
    border: 1px solid var(--color-orange);
    color: white;
}

.btn-primary:hover
{
    background-color: var(--color-orange-hover);
    border-color: var(--color-orange-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary
{
    background-color: transparent;
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
}

.btn-secondary:hover
{
    background-color: var(--color-navy);
    color: white;
    transform: translateY(-2px);
}

.btn-text
{
    color: var(--color-navy);
    font-weight: 600;
    padding: 8px 16px;
}

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

/* Hero Section */
.hero
{
    background: linear-gradient(135deg, var(--color-orange-light) 0%, #ffffff 100%);
    padding: 80px 0 120px;
    position: relative;
}

.hero-grid
{
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: 1.1fr 0.9fr;
}

.hero-content
{
    max-width: 640px;
}

.hero-logo-container
{
    aspect-ratio: 1160 / 1103;
    max-width: 420px;
    width: 100%;
    margin-bottom: 24px;
}

.hero-badge
{
    background-color: rgba(243, 112, 33, 0.1);
    border-radius: 50px;
    color: var(--color-orange);
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    padding: 6px 16px;
    text-transform: uppercase;
}

.hero-title
{
    color: var(--color-navy);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span
{
    color: var(--color-orange);
}

.hero-description
{
    color: var(--color-text);
    font-size: 18px;
    margin-bottom: 36px;
}

.hero-actions
{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Cards / Quick Info */
.quick-info-box
{
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 40px;
}

.quick-info-title
{
    color: var(--color-navy);
    font-size: 22px;
    margin-bottom: 24px;
}

.event-brief
{
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.event-brief:last-child
{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-date-badge
{
    align-items: center;
    color: var(--color-orange);
    display: flex;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
    margin-bottom: 10px;
}

.event-date-badge svg
{
    flex-shrink: 0;
}

.event-title-small
{
    color: var(--color-navy);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-meta-item
{
    align-items: flex-start;
    color: var(--color-text-muted);
    display: flex;
    font-size: 14px;
    gap: 8px;
    margin-bottom: 6px;
}

.event-meta-item svg
{
    flex-shrink: 0;
    margin-top: 3px;
}

.event-meta-item strong
{
    color: var(--color-text-dark);
}

/* Introduction Section (Questions) */
.intro-section
{
    background-color: var(--color-navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 100px 0;
    position: relative;
}

.intro-grid
{
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 1fr;
}

.intro-questions-col
{
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.intro-title
{
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
}

.question-list
{
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.question-item
{
    align-items: flex-start;
    display: flex;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    gap: 12px;
}

.question-item svg
{
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 4px;
}

.intro-text-col
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-paragraph
{
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Tabs Section (Program) */
.program-section
{
    padding: 100px 0;
}

.section-header
{
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.section-title
{
    font-size: 36px;
    position: relative;
}

.section-title::after
{
    background-color: var(--color-orange);
    bottom: -8px;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    width: 60px;
}

.tabs-nav
{
    background-color: rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-sm);
    display: inline-flex;
    gap: 4px;
    padding: 4px;
}

.tab-btn
{
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    transition: var(--transition-base);
}

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

.tab-btn.active
{
    background-color: var(--color-card-bg);
    color: var(--color-orange);
    box-shadow: var(--shadow-sm);
}

.tab-content
{
    display: none;
}

.tab-content.active
{
    animation: fadeIn 0.3s ease-out;
    display: block;
}

/* Timeline Cards */
.timeline
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item
{
    align-items: stretch;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    overflow: hidden;
    transition: var(--transition-base);
}

.timeline-item:hover
{
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--color-orange);
}

.timeline-time-col
{
    background-color: var(--color-navy);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 190px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-time-col
{
    background-color: var(--color-orange);
}

.time-range
{
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.timeline-content-col
{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
}

.timeline-item-title
{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-item-speakers
{
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item-meta
{
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    font-size: 13px;
    gap: 16px;
}

.timeline-item-meta span
{
    align-items: center;
    display: flex;
    gap: 4px;
}

.click-for-more
{
    align-items: center;
    color: var(--color-orange);
    display: flex;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    gap: 4px;
    margin-top: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-base);
}

.timeline-item:hover .click-for-more
{
    opacity: 1;
    transform: translateX(0);
}

/* Speakers Section */
.speakers-section
{
    background-color: rgba(15, 23, 42, 0.02);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 100px 0;
}

.speakers-grid
{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.speaker-card
{
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-base);
}

.speaker-card:hover
{
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-orange);
}

.speaker-img-container
{
    background-color: #cbd5e1;
    height: 320px;
    position: relative;
    width: 100%;
}

.speaker-img-fallback
{
    align-items: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.speaker-img-fallback svg
{
    height: 80px;
    width: 80px;
}

.speaker-img
{
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.speaker-info
{
    padding: 24px;
}

.speaker-name
{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.speaker-role
{
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.speaker-teaser
{
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Modals */
.modal-overlay
{
    align-items: center;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 200;
}

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

.modal-container
{
    background-color: var(--color-card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    width: 90%;
}

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

.modal-close
{
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: var(--transition-base);
    width: 40px;
    z-index: 100;
}

.modal-close:hover
{
    background-color: var(--color-navy);
    color: white;
    transform: rotate(90deg);
}

.modal-header-hero
{
    background: linear-gradient(135deg, var(--color-orange-light) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--color-border);
    padding: 48px 40px 32px;
}

.modal-time-tag
{
    background-color: var(--color-orange);
    border-radius: var(--radius-sm);
    color: white;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 4px 10px;
}

.modal-title
{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-subtitle
{
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.modal-body
{
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

/* Video Modal Specific Sizing */
.modal-container-video
{
    max-width: 550px;
}

.modal-header-video
{
    padding: 32px 32px 20px;
}

.modal-body-video
{
    align-items: center;
    background-color: #0f172a;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.responsive-video-player
{
    background: #000;
    border-radius: var(--radius-md);
    display: block;
    height: auto;
    max-height: calc(80vh - 160px);
    max-width: 100%;
    width: auto;
}

/* Registration Modal Sizing & Layout */
.modal-container-register
{
    max-width: 620px;
}

.modal-header-register
{
    padding: 36px 36px 20px;
}

.modal-body-register
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 36px 36px;
}

.register-option-card
{
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-base);
}

.register-option-card:hover
{
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.register-option-date
{
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.register-option-title
{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.register-option-desc
{
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.register-btn
{
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
}

.badge-free
{
    background-color: #10b981;
    border-radius: var(--radius-sm);
    color: white;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-left: 8px;
    padding: 3px 8px;
    text-transform: uppercase;
    vertical-align: middle;
}

.modal-content-grid
{
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

.modal-content-grid.has-sidebar
{
    grid-template-columns: 1.6fr 0.9fr;
}

.modal-main-content p
{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.modal-main-content ul
{
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-main-content li
{
    margin-bottom: 10px;
}

.modal-sidebar
{
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.sidebar-title
{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-navy);
}

.book-list
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.book-item
{
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    padding-left: 14px;
}

.book-item::before
{
    content: '•';
    color: var(--color-orange);
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer Section */
footer
{
    background-color: var(--color-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-grid
{
    display: grid;
    gap: 48px;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    margin-bottom: 60px;
}

.footer-brand h4
{
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-links ul
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-links a
{
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover
{
    color: white;
}

.footer-organizers
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-logos
{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo-placeholder
{
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    display: flex;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    min-width: 150px;
    padding: 0 16px;
    text-align: center;
}

.footer-bottom
{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn
{
    from
    {
        opacity: 0;
        transform: translateY(10px);
    }
    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px)
{
    .hero-grid
    {
        grid-template-columns: 1fr;
    }
    
    .intro-grid
    {
        grid-template-columns: 1fr;
    }
    
    .footer-grid
    {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-header
    {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px)
{
    body
    {
        padding-top: 60px !important;
    }

    .header-container
    {
        height: 60px;
        padding: 0 16px;
    }
    
    .nav-buttons
    {
        gap: 12px;
    }
    
    .nav-buttons .btn-text
    {
        display: none;
    }
    
    .nav-buttons .btn-primary
    {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    #nav-logo img
    {
        height: 32px !important;
    }
    
    #logo-fallback .logo-main
    {
        font-size: 18px;
    }
    
    #logo-fallback .logo-main span
    {
        font-size: 11px;
    }
    
    #logo-fallback .logo-text-top
    {
        font-size: 11px;
    }
    
    .timeline-item
    {
        flex-direction: column;
    }
    
    .timeline-time-col
    {
        flex-shrink: 1;
        min-width: unset;
        padding: 16px 24px;
        text-align: left;
        width: auto;
    }
    
    .timeline-content-col
    {
        padding: 20px 24px;
    }
    
    .modal-content-grid.has-sidebar
    {
        grid-template-columns: 1fr;
    }
    
    .modal-header-hero
    {
        padding: 32px 24px 20px;
    }
    
    .modal-body
    {
        padding: 24px;
    }
    
    .footer-bottom
    {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Theme Map Section */
.theme-map-section
{
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 80px 0;
}

.theme-image-container
{
    margin-bottom: 30px;
    text-align: center;
}

.theme-map-container
{
    height: 520px;
    margin: 40px auto 0;
    max-width: 900px;
    position: relative;
}

.theme-map-center
{
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.theme-map-sphere
{
    align-items: center;
    animation: pulseSphere 3s infinite ease-in-out;
    background: radial-gradient(circle, #3b82f6 0%, #1e3a8a 100%);
    border: 3px solid var(--color-orange);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
    display: flex;
    height: 240px;
    justify-content: center;
    width: 330px;
}

.sphere-text
{
    color: white;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-card-wrapper
{
    cursor: pointer;
    position: absolute;
    transition: var(--transition-base);
    z-index: 3;
}

.theme-map-card
{
    background: var(--color-card-bg);
    border: 2px solid var(--color-navy);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 12px 18px;
    transition: var(--transition-base);
}

.theme-card-wrapper:hover
{
    transform: scale(1.05);
    z-index: 10;
}

.theme-card-wrapper:hover .theme-map-card
{
    border-color: var(--color-orange);
    box-shadow: var(--shadow-lg);
}

.theme-map-card .card-title
{
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.theme-map-card .card-author
{
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Position mapping for the 6 cards */
.theme-card-wrapper.pos-1 { left: 12%; top: 8%; }
.theme-card-wrapper.pos-2 { right: 12%; top: 8%; }
.theme-card-wrapper.pos-3 { left: 4%; top: 40%; }
.theme-card-wrapper.pos-4 { right: 4%; top: 40%; }
.theme-card-wrapper.pos-5 { bottom: 8%; left: 12%; }
.theme-card-wrapper.pos-6 { bottom: 8%; right: 12%; }

@keyframes pulseSphere
{
    0%
    {
        box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
        transform: scale(1);
    }
    50%
    {
        box-shadow: 0 15px 35px rgba(30, 58, 138, 0.6);
        transform: scale(1.05);
    }
    100%
    {
        box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 900px)
{
    .theme-map-container
    {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: auto !important;
    }
    
    .theme-map-center
    {
        margin-bottom: 20px;
        position: static;
        transform: none;
    }
    
    .theme-card-wrapper
    {
        position: static;
        width: 100%;
    }
    
    .theme-map-card
    {
        text-align: center;
    }
}

.program-date-header
{
    align-items: center;
    border-bottom: 2px solid var(--color-orange-light);
    color: var(--color-navy);
    display: flex;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 10px;
}

section[id]
{
    scroll-margin-top: 90px;
}
