/* BALI WEEK 2026 - Main Stylesheet */

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0000FF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.navbar {
    background-color: #0000FF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.navbar-container {
    min-height: 80px;
}

.navbar-logo-container {
    padding: 1rem 0;
}

.header-logo {
    max-width: 280px;
}

.nav-links {
    height: 80px;
}

.nav-link {
    color: #e5e7eb;
    height: 80px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
    background-color: #ffffff;
}

/* Hero Section */
.hero-section {
    min-height: 72vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.875rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: -0.5rem;
}

.hero-description {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-date {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-edition-badge {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    margin-left: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #3b82f6;
    border-radius: 0.125rem;
    vertical-align: baseline;
    transform: translateY(-10px);
    cursor: default;
    transition: background-color 0.2s ease;
}

.hero-edition-badge:hover {
    background-color: #1d4ed8;
}

/* Ticker Section */
.ticker-section {
    background-color: #0000ff;
    color: #ffffff;
    height: 60px;
    padding: 0 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}

.ticker-content {
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.ticker-text {
    white-space: nowrap;
    animation: scroll-left 50s linear infinite;
    font-size: 1.125rem;
}

.ticker-buttons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-button {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.ticker-button-primary {
    background-color: #ffffff;
    color: #1e40af;
}

.ticker-button-primary:hover {
    background-color: #e5e7eb;
}

.ticker-button-secondary {
    background-color: #fde047;
    color: #1e3a8a;
}

.ticker-button-secondary:hover {
    background-color: #facc15;
}

/* Mobile Ticker Styles */
@media (max-width: 768px) {
    .ticker-section {
        padding: 0;
        height: auto;
        min-height: 60px;
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .ticker-section .container {
        padding: 0;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        width: 100%;
    }
    
    .ticker-content {
        margin-right: 0;
        padding: 0.75rem 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .ticker-text {
        font-size: 0.875rem;
        line-height: 1.4;
        animation: scroll-left 40s linear infinite;
    }
    
    .ticker-buttons {
        gap: 0;
        flex-direction: row;
        width: 100%;
        margin: 0;
        padding: 0 10px 10px 10px; /* 10px left, right, and bottom gaps */
    }
    
    .ticker-button {
        flex: 1;
        border-radius: 0;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        justify-content: center;
        text-align: center;
        border: none;
        margin: 0;
        width: calc(50% - 5px); /* Adjust width to account for gap */
        box-sizing: border-box;
    }
    
    .ticker-button:first-child {
        margin-right: 5px; /* Small gap between buttons */
    }
    
    .ticker-button:last-child {
        margin-left: 5px; /* Small gap between buttons */
    }
    
    .ticker-button i {
        margin-right: 0.25rem;
    }
}

@media (max-width: 480px) {
    .ticker-text {
        font-size: 0.75rem;
    }
    
    .ticker-button {
        padding: 0.625rem 0.5rem;
        font-size: 0.6875rem;
    }
    
    .ticker-button i {
        display: none;
    }
}

.animate-scroll-left {
    animation: scroll-left 50s linear infinite;
}

/* Events Overview Section */
.events-overview {
    background-color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.events-overview-container {
    position: relative;
    z-index: 10;
}

.events-overview-header {
    text-align: center;
    padding: 0 0 3rem 0;
}

.section-title {
    color: #111827;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.week-highlights-title {
    text-align: center;
    margin-bottom: 2rem;
}

.week-highlights-title h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.week-highlights-divider {
    width: 4rem;
    height: 0.25rem;
    background-color: #f97316;
    border-radius: 9999px;
    margin: 0 auto;
}

.event-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
}

.event-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.event-card-image-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.event-card-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.event-card-icon-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card-content {
    padding: 1.5rem;
}

.event-card-header {
    margin-bottom: 1rem;
}

.event-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.event-card-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.event-card-description {
    font-weight: 500;
    color: #374151;
    margin-bottom: 1rem;
}

.event-card-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.event-card-feature-bullet {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    margin: 0.5rem 0.75rem 0 0;
}

.event-card-focus {
    border-left-width: 4px;
    border-radius: 0.75rem;
    padding: 1rem;
}

.event-card-focus-content {
    font-size: 0.875rem;
    font-weight: 600;
}

/* How To Explore Section */
.how-to-explore {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.how-to-explore-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.how-to-explore-title {
    font-size: 1.875rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1e40af;
    letter-spacing: -0.025em;
}

.how-to-explore-subtitle {
    color: #4b5563;
    margin-top: 1rem;
}

.how-to-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

@media (min-width: 640px) {
    .how-to-tabs {
        flex-direction: row;
        gap: 1rem;
        overflow-x: visible;
        padding: 0;
    }
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tab-button-active {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tab-button-active:hover {
    background-color: #1d4ed8;
}

.tab-button-inactive {
    background-color: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.tab-button-inactive:hover {
    border-color: #9ca3af;
    background-color: #f9fafb;
}

.tab-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tab-number-active {
    background-color: #ffffff;
    color: #2563eb;
}

.tab-number-inactive {
    background-color: #2563eb;
    color: #ffffff;
}

.tab-panel {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    padding: 0.75rem 1.25rem 2rem;
}

@media (min-width: 640px) {
    .tab-panel {
        padding: 1.25rem 1.5rem 2rem;
    }
}

@media (min-width: 768px) {
    .tab-panel {
        padding: 2rem;
    }
}

.tab-panel-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .tab-panel-content {
        flex-direction: row;
        gap: 1rem;
    }
}

.tab-panel-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.tab-panel-text {
    flex: 1;
    width: 100%;
}

.tab-panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-top: 0;
}

.tab-panel-description {
    color: #4b5563;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.purchase-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .purchase-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .purchase-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

.purchase-option {
    border-radius: 0.75rem;
    padding: 1rem;
}

.purchase-option-primary {
    background-color: rgba(239, 246, 255, 0.5);
    border: 1px solid rgba(191, 219, 254, 0.5);
}

.purchase-option-secondary {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.purchase-option-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.purchase-option-primary .purchase-option-title {
    color: #1e40af;
}

.purchase-option-secondary .purchase-option-title {
    color: #1f2937;
}

.purchase-option-description {
    color: #4b5563;
    margin: 0;
}

.purchase-note {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 0.875rem;
}

.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .purchase-actions {
        flex-direction: row;
        gap: 0.75rem;
    }
}

.purchase-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .purchase-button {
        width: auto;
    }
}

.purchase-button-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.purchase-button-primary:hover {
    background-color: #1d4ed8;
}

.purchase-button-secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 1px solid rgba(191, 219, 254, 0.5);
}

.purchase-button-secondary:hover {
    background-color: #dbeafe;
}

/* Sponsor Section */
#sponsor-section {
    background-color: #ffffff;
    padding-bottom: 2rem;
}

.sponsor-section-header {
    text-align: center;
    padding: 4rem 0 2rem 0;
}

.sponsor-tier {
    margin-bottom: 3rem;
    padding: 0;
}

.sponsor-tier-header {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sponsor-tier-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    text-align: left;
}

.sponsor-tier-chevron {
    transition: transform 0.2s ease;
    font-size: 1rem;
    color: #6b7280;
}

.rotate-180 {
    transform: rotate(180deg);
}

.sponsor-tier-open .sponsor-tier-chevron {
    transform: rotate(180deg);
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    margin: 0;
    border: 1px solid #e5e7eb;
    gap: 1px;
    background-color: #e5e7eb;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 0.5rem;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: white;
    cursor: default;
    border: none;
    border-radius: 0;
}

.sponsor-card img,
.logo-image {
    width: 50%;
    height: auto;
    object-fit: contain;
}

/* Agenda Section */
.agenda-section {
    background-color: #ffffff;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.agenda-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.agenda-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.agenda-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

.agenda-container {
    border: 1px solid #0927d7;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 0.75rem;
}

.agenda-day-header {
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    background-color: #0927d7;
}

.agenda-time-header {
    font-weight: 600;
    color: #ffffff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    background-color: #0927d7;
}

.agenda-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    min-height: 100px;
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    background-color: #e0e7ff;
    color: #1e3a8a;
}

.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.agenda-card-button {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    border: 1px solid rgba(30, 58, 138, 0.3);
    transition: background-color 0.2s ease;
    background-color: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
}

.agenda-card-button:hover {
    background-color: rgba(30, 58, 138, 0.2);
}

/* Desktop Agenda Grid */
.agenda-grid-desktop {
    display: none;
    grid-template-columns: 1fr 2fr 2fr 2fr 2fr 2fr;
    grid-template-rows: auto repeat(3, 1fr);
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .agenda-grid-desktop {
        display: grid;
    }
    
    .agenda-grid-mobile {
        display: none;
    }
    /* Prevent page from shifting and horizontal scroll when modal opens */
    body.modal-open {
    overflow: hidden;
    }
    
    /* Avoid 100vw overflow when scrollbar removed */
    .hero-video {
    width: 100%;
    }
}

/* Background Images Responsive Styles */
@media (max-width: 768px) {
    /* Hide background images on mobile for cleaner look */
    .events-overview .absolute.inset-0 img {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Reduce size and opacity on tablets */
    .events-overview .absolute.inset-0 img {
        opacity: 0.15 !important;
        transform: scale(0.8);
    }
}

@media (min-width: 1025px) {
    /* Full effect on desktop */
    .events-overview .absolute.inset-0 img {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    /* Subtle hover effect for interactivity */
    .events-overview:hover .absolute.inset-0 img {
        opacity: 0.4;
    }
}

/* Call-to-Action Buttons - Ensure they stay above background content */
.events-overview .text-center {
    position: relative;
    z-index: 20;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.events-overview .inline-flex {
    position: relative;
    z-index: 25;
}

.events-overview .bg-blue-600,
.events-overview .bg-orange-500 {
    position: relative;
    z-index: 30;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Ensure background images don't interfere with button area */
.events-overview .absolute.inset-0 img {
    z-index: 1;
    pointer-events: none;
}

/* Additional spacing to prevent overlap */
.events-overview .absolute.inset-0 img[src*="009_Qsw3tv7hRiY"],
.events-overview .absolute.inset-0 img[src*="010_PSJ-B59f-LE"] {
    bottom: 120px !important;
}

.agenda-grid-corner {
    grid-row-start: 1;
    grid-column-start: 1;
}

.agenda-grid-day-header {
    grid-row-start: 1;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: #0927d7;
}

.agenda-grid-time-header {
    font-weight: 600;
    color: #ffffff;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0927d7;
}

.agenda-grid-event {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #e0e7ff;
    color: #1e3a8a;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #111827;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.footer-text {
    color: #d1d5db;
}

/* Modal */
.modal {
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal.opacity-0 {
    opacity: 0;
}

.modal-container {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 28rem;
    overflow: hidden;
    color: #1f2937;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background-color: #2563eb;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-content {
    padding: 1.5rem;
}

.modal-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-description strong {
    color: #1e3a8a;
}

.modal-description ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.modal-description li {
    margin-bottom: 0.5rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
}

.modal-close-button {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.modal-close-button:hover {
    background-color: #1d4ed8;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: start;
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    bottom: -1rem;
    width: 2px;
    background-color: #d1d5db;
    transform: translateX(-50%);
}

.timeline-icon {
    flex-shrink: 0;
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 0 8px #ffffff;
}

.timeline-icon i {
    font-size: 14px;
}

.timeline-content {
    margin-left: 1rem;
    flex-grow: 1;
}

.timeline-time {
    font-weight: 600;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

.timeline-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-top: 0;
}

/* Partner Logos */
.partner-logos {
    max-width: 250px;
    filter: brightness(0) invert(1);
}

.media-partner-logo {
    max-width: 250px;
    filter: brightness(0) invert(1);
}

.logo-bg {
    background-color: #0000FF;
    padding: 1rem;
}

/* Animations */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Force 3x8 grid layout on mobile */
    .sponsor-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(8, 1fr) !important;
        gap: 1px;
    }
    
    /* 10px gap between accordion sections */
    .sponsor-tier {
        margin-bottom: 10px !important;
    }
    
    /* Hide sponsor grids by default on mobile */
    .sponsor-tier .sponsor-grid {
        display: none !important;
    }
    
    /* Show sponsor grids when accordion is open */
    .sponsor-tier-open .sponsor-grid {
        display: grid !important;
    }
    
    /* Blue header styling for mobile accordions */
    .sponsor-tier-button {
        background: #0927d7 !important;
        color: #ffffff !important;
        border: 1px solid #0927d7 !important;
    }
    
    /* White chevron icon for mobile */
    .sponsor-tier-chevron {
        color: #ffffff !important;
    }
    
    /* Agenda grid mobile display */
    .agenda-grid-mobile {
        display: block;
    }
    
    .agenda-grid-desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(12, 1fr);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .agenda-grid-desktop {
        display: grid;
    }
    
    .agenda-grid-mobile {
        display: none;
    }
    /* Prevent page from shifting and horizontal scroll when modal opens */
    body.modal-open {
    overflow: hidden;
    }
    
    /* Avoid 100vw overflow when scrollbar removed */
    .hero-video {
    width: 100%;
    }
}

/* FAQ Section */
.faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
}

.faq-subtitle {
  text-align: center;
  color: #6b7280; /* gray-500 */
  margin-bottom: 1.5rem;
}

.faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb; /* gray-200 */
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  list-style: none;
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Remove default disclosure triangle */
.faq-item > summary::-webkit-details-marker { display: none; }

/* Add custom chevron using Bootstrap Icons class name reference for consistency in design system */
.faq-item > summary::after {
  content: '\f282'; /* bi-chevron-down unicode when using Bootstrap Icons; we use it as a plain char here */
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
}

.faq-item[open] > summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1rem 1rem 1rem;
  color: #374151; /* gray-700 */
  line-height: 1.6;
}

/* Mobile adjustments */
@media (min-width: 640px) {
  .faq-title { font-size: 1.5rem; }
  .faq-section { padding: 1.5rem 1rem; }
  .faq-question { padding-right: 2.5rem; }
}
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tab-button-active {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tab-button-active:hover {
    background-color: #1d4ed8;
}

.tab-button-inactive {
    background-color: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.tab-button-inactive:hover {
    border-color: #9ca3af;
    background-color: #f9fafb;
}

.tab-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tab-number-active {
    background-color: #ffffff;
    color: #2563eb;
}

.tab-number-inactive {
    background-color: #2563eb;
    color: #ffffff;
}

.tab-panel {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    padding: 0.75rem 1.25rem 2rem;
}

@media (min-width: 640px) {
    .tab-panel {
        padding: 1.25rem 1.5rem 2rem;
    }
}

@media (min-width: 768px) {
    .tab-panel {
        padding: 2rem;
    }
}

.tab-panel-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .tab-panel-content {
        flex-direction: row;
        gap: 1rem;
    }
}

.tab-panel-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.tab-panel-text {
    flex: 1;
    width: 100%;
}

.tab-panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-top: 0;
}

.tab-panel-description {
    color: #4b5563;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.purchase-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .purchase-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .purchase-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

.purchase-option {
    border-radius: 0.75rem;
    padding: 1rem;
}

.purchase-option-primary {
    background-color: rgba(239, 246, 255, 0.5);
    border: 1px solid rgba(191, 219, 254, 0.5);
}

.purchase-option-secondary {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.purchase-option-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.purchase-option-primary .purchase-option-title {
    color: #1e40af;
}

.purchase-option-secondary .purchase-option-title {
    color: #1f2937;
}

.purchase-option-description {
    color: #4b5563;
    margin: 0;
}

.purchase-note {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 0.875rem;
}

.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .purchase-actions {
        flex-direction: row;
        gap: 0.75rem;
    }
}

.purchase-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .purchase-button {
        width: auto;
    }
}

.purchase-button-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.purchase-button-primary:hover {
    background-color: #1d4ed8;
}

.purchase-button-secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 1px solid rgba(191, 219, 254, 0.5);
}

.purchase-button-secondary:hover {
    background-color: #dbeafe;
}

/* Sponsor Section */
#sponsor-section {
    background-color: #ffffff;
    padding-bottom: 2rem;
}

.sponsor-section-header {
    text-align: center;
    padding: 4rem 0 2rem 0;
}

.sponsor-tier {
    margin-bottom: 3rem;
    padding: 0;
}

.sponsor-tier-header {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sponsor-tier-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    text-align: left;
}

.sponsor-tier-chevron {
    transition: transform 0.2s ease;
    font-size: 1rem;
    color: #6b7280;
}

.rotate-180 {
    transform: rotate(180deg);
}

.sponsor-tier-open .sponsor-tier-chevron {
    transform: rotate(180deg);
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    margin: 0;
    border: 1px solid #e5e7eb;
    gap: 1px;
    background-color: #e5e7eb;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 0.5rem;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: white;
    cursor: default;
    border: none;
    border-radius: 0;
}

.sponsor-card img,
.logo-image {
    width: 50%;
    height: auto;
    object-fit: contain;
}

/* Agenda Section */
.agenda-section {
    background-color: #ffffff;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.agenda-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.agenda-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.agenda-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

.agenda-container {
    border: 1px solid #0927d7;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 0.75rem;
}

.agenda-day-header {
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    background-color: #0927d7;
}

.agenda-time-header {
    font-weight: 600;
    color: #ffffff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    background-color: #0927d7;
}

.agenda-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    min-height: 100px;
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    background-color: #e0e7ff;
    color: #1e3a8a;
}

.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.agenda-card-button {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    border: 1px solid rgba(30, 58, 138, 0.3);
    transition: background-color 0.2s ease;
    background-color: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
}

.agenda-card-button:hover {
    background-color: rgba(30, 58, 138, 0.2);
}

/* Desktop Agenda Grid */
.agenda-grid-desktop {
    display: none;
    grid-template-columns: 1fr 2fr 2fr 2fr 2fr 2fr;
    grid-template-rows: auto repeat(3, 1fr);
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .agenda-grid-desktop {
        display: grid;
    }
    
    .agenda-grid-mobile {
        display: none;
    }
    /* Prevent page from shifting and horizontal scroll when modal opens */
    body.modal-open {
    overflow: hidden;
    }
    
    /* Avoid 100vw overflow when scrollbar removed */
    .hero-video {
    width: 100%;
    }
}