/* Global Styles */
:root {
    --primary-color: #ffc800;
    --secondary-color: #0D0D10;
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --accent-color: #FFB800;
    --text-color: #FFFFFF;
    --text-light: #A1A1AA;
    --border-radius: 8px;
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --dog-ear-size: 30px;
}

/* Font Face Declarations for SP Pro */
@font-face {
    font-family: 'SP Pro';
    src: url('fonts/SP.Pro/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Custom Scrollbar - Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 184, 0, 0.5) rgba(255, 255, 255, 0.05);
}

/* Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 184, 0, 0.5);
    border-radius: 5px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 184, 0, 0.7);
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary-color);
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-corner {
    background: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'SP Pro', 'SF Pro Display', -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-title-large {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-align: center;
}

.section-title::after {
    display: none;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #FFC94D;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.highlight {
    background-color: rgba(255, 184, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Dog-Ear Corner Cut Utility Classes */
.dog-ear-top-right {
    position: relative;
    clip-path: polygon(0 0, calc(100% - var(--dog-ear-size)) 0, 100% var(--dog-ear-size), 100% 100%, 0 100%);
}

.dog-ear-bottom-left {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, var(--dog-ear-size) 100%, 0 calc(100% - var(--dog-ear-size)));
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 16, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 25px 0;
    background-color: rgba(13, 13, 16, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    height: auto;
    width: auto;
}

.logo-square img {
    max-height: 40px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--light-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-color);
}

/* Navbar Styles */
nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    color: var(--light-color);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:focus {
    outline: none;
}

/* Dropdown nav */
nav ul li.has-dropdown {
    position: relative;
}

.dropdown-chevron {
    display: inline-block;
    font-size: 13px;
    margin-left: 3px;
    vertical-align: middle;
    transition: transform 0.2s ease;
    line-height: 1;
}

nav ul li.has-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

nav ul li.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

nav ul li.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 16, 0.97);
    border: 1px solid rgba(255, 200, 0, 0.15);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 190px;
    backdrop-filter: blur(14px);
    z-index: 100;
    flex-direction: column;
}

nav ul li.has-dropdown:hover .dropdown {
    display: flex;
}

nav ul li.has-dropdown .dropdown li {
    margin: 0;
    text-align: left;
}

nav ul li.has-dropdown .dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
}

nav ul li.has-dropdown .dropdown li a::after {
    display: none;
}

nav ul li.has-dropdown .dropdown li a:hover {
    color: var(--primary-color);
    background: rgba(255, 200, 0, 0.05);
}

/* Hero Section */
/* ── Hero Section ── */
.hero {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-color: #000;
    overflow: hidden;
}

/* Top bar */
/* Body: left/right split */
.hero-body {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.hero-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 3vh, 48px) clamp(16px, 3vw, 48px) clamp(40px, 6vh, 80px) clamp(24px, 5.5vw, 80px);
}

.hero-right {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

/* Title block */
.hero-title-block {
    display: flex;
    flex-direction: column;
}

.hero-line {
    display: flex;
    align-items: baseline;
    line-height: 0.9;
}

.hero-line-2 {
    align-items: center;
    margin-top: -0.05em;
}

.hero-word {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 5.2vw, 86px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.9;
    white-space: nowrap;
}

.hero-line-1 .hero-word + .hero-word {
    margin-left: 0.18em;
}

.hero-word-white { color: #ffffff; }
.hero-word-yellow { color: #ffc800; }

/* Snip badge — chamfered corner via clip-path (reusable for LFBUIDL & MAY 25) */
.snip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc800;
    color: #000;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Bottom-left corner snipped ~10px diagonal cut */
.snip-badge--corner-bl {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* Small: inline next to BUILDERS' */
.snip-badge--sm {
    font-size: clamp(20px, 2.4vw, 34px);
    padding: 4px 10px;
    align-self: flex-end;
    margin-left: 0.15em;
    margin-bottom: 0.12em;
}

/* Medium: date row MAY 25 badge */
.snip-badge--md {
    font-size: clamp(10px, 1.2vw, 16px);
    padding: 5px 14px;
}

/* DANANG // VIETNAM inline label on line 2 */
.hero-loc-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Anton', sans-serif;
    font-size: clamp(9px, 1.05vw, 15px);
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    padding: 0 clamp(16px, 1.8vw, 32px);
    flex-shrink: 0;
}

/* Date row below title: [MAY 25 badge] 2026 */
.hero-date-row {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-top: clamp(16px, 2vh, 32px);
}

.hero-date-year {
    font-family: 'Anton', sans-serif;
    font-size: clamp(14px, 1.5vw, 22px);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Collaboration line */
.hero-collab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.hero-collab-text {
    font-family: 'SP Pro', 'SF Pro Display', sans-serif;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.hero-collab-logo {
    height: clamp(3rem, 5vw, 6rem);
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.hero-thankyou {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.hero-thankyou-text {
    font-family: 'SP Pro', 'SF Pro Display', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* KV images inside right panel */
.hero-kv-img {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
}

.hero-kv-img-1 {
    top: -8%;
    left: -8%;
    width: 116%;
    height: auto;
    opacity: 0.95;
}

.hero-kv-img-2 {
    top: 10%;
    left: 2%;
    width: 105%;
    height: auto;
}

.hero-kv-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    z-index: 1;
}

/* Pill Badge Component */
.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35em 0.9em;
    background-color: #ffc800;
    color: #000000;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(0.8rem, 1.2vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 9999px;
    white-space: nowrap;
    line-height: 1;
}

.pill-badge--lg {
    font-size: clamp(1.2rem, 2.5vw, 3.2rem);
    padding: 0.4em 1em;
}

#our-partners .section-title-large {
    margin-bottom: 2rem;
}

.overview-description {
    max-width: 980px;
    margin: 0 auto 3rem;
    text-align: center;
}

.overview-description p {
    max-width: 72ch;
    margin: 0 auto 2rem;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.18rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
}

.overview-description p:last-child {
    margin-bottom: 0;
}

/* Partners Subsection Pill Labels */
.subsection-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.subsection-pill .pill-badge {
    font-size: clamp(1rem, 1.6vw, 1.8rem);
    padding: 0.3em 0.85em;
}

.subsection-pill-gradient {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.8rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #c9c9c9, #3e3e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Impact Grid Section */
.impact-grid {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.impact-grid .section-title {
    margin-bottom: 0.5rem;
}

.impact-grid .section-title-large {
    margin-bottom: 4rem;
    text-align: left;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.impact-card {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--primary-color);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    background-color: rgba(255, 184, 0, 0.1);
}

.impact-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-align: center;
    height: 4rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding-top: 0;
    margin-top: 0;
}

.impact-label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-color);
}

.media-coverage {
    text-align: center;
    margin-top: 4rem;
}

.media-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.media-logos a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.media-logos a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.media-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
}

.media-logos a.on-light {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 6px 12px;
}

.media-logos a.on-light:hover {
    background: rgba(255, 255, 255, 1);
}

/* Media logos with internal padding - display larger */
.media-logo[data-original="danang-dost"] {
    max-width: 200px;
    max-height: 100px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 4rem;
}

.cta-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
}

.countdown {
    margin-top: 0;
    padding: 20px; /* Add padding to prevent cutoff */
}

.countdown h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 12px; /* Maintain spacing between items */
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 4px;
    flex: 1 1 100px; /* Allow items to grow and shrink */
    min-width: 100px; /* Set a minimum width */
    text-align: center; /* Center text */
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 4px;
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    color: var(--text-light);
}


/* Week-at-a-Glance Timeline Section */
.week-timeline {
    background-color: var(--dark-color);
    padding: 80px 0;
}

#timeline {
    background-color: var(--secondary-color);
}

#partners {
    background-color: var(--dark-color);
}

.week-timeline .subsection-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.week-timeline .subsection-title:first-of-type {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.strategic-partners {
    margin-bottom: 3.5rem;
    text-align: center;
}

.strategic-partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 0;
}

.ecosystem-partners-logos {
    margin-bottom: 0;
}

.partner-subsection-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin: 3.5rem 0 1.5rem;
    text-align: center;
}

.strategic-partners-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategic-partner-logo {
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.partner-tier-cohost    { max-height: 100px; max-width: 200px; }
.partner-tier-strategic { max-height: 80px;  max-width: 180px; }
.partner-tier-premium   { max-height: 100px; max-width: 220px; }
.partner-tier-ecosystem { max-height: 44px;  max-width: 120px; }
.partner-tier-community { max-height: 40px;  max-width: 120px; }

.strategic-partner-logo:hover,
.strategic-partners-logos a:hover .strategic-partner-logo {
    opacity: 1;
}

.nebulus-logo {
    filter: brightness(1.8) contrast(1.1);
}

.vici-logo {
    max-height: 60px;
    max-width: 160px;
}

.strategic-partners-note {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-weight: 500;
    margin-top: 0;
    padding-top: 0.25rem;
}

.strategic-partners-cta {
    margin-top: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.timeline-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.timeline-scroll {
    display: flex;
    gap: 2rem;
    min-width: min-content;
    padding: 20px;
}

.timeline-event {
    min-width: 280px;
    max-width: 320px;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.w3bs-event {
    background-color: rgba(255, 184, 0, 0.1);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.w3bs-event.main-event {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
    background-color: rgba(255, 184, 0, 0.15);
}

.davas-event {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.event-date {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.event-type {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-type a {
    color: inherit;
    text-decoration: none;
}

.event-type a:hover {
    text-decoration: underline;
}

.event-description {
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.event-status {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.free-badge {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 900;
}

.invite-only-badge {
    background-color: #8B5CF6;
    color: var(--light-color);
    font-weight: 900;
}

.approval-badge {
    background-color: #F59E0B;
    color: var(--dark-color);
    font-weight: 900;
}

.event-cta {
    margin-top: 0.5rem;
}

.timeline-event .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    width: fit-content;
}

/* Previous Event Section */
.previous-event {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.previous-event .section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.previous-event .section-title::after {
    display: none;
}

.previous-event-content {
    max-width: 1200px;
    margin: 0 auto;
}

.previous-event-info {
    text-align: left;
}

.previous-event-info h3 {
    font-size: 3.5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.previous-event-info .date-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: start;
    width: fit-content;
}

.event-highlights .highlight {
    background-color: rgba(13, 13, 16, 0.8);
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-width: 150px;
}

.event-highlights .highlight span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.event-highlights .highlight span:last-child {
    font-size: 0.875rem;
    color: var(--text-light);
}

.event-description {
    max-width: 800px;
    margin: 0 0 3rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.gallery-action {
    text-align: center;
    margin-top: 1rem;
}

.gallery-action .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.gallery-action .btn:hover {
    color: var(--light-color);
    border-color: var(--light-color);
}

.event-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.event-stats .stat {
    text-align: center;
}

.event-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-stats .stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .hero-left {
        flex: 0 0 55%;
    }

    .hero-right {
        flex: 0 0 45%;
    }

    .hero-word {
        font-size: clamp(32px, 5vw, 64px);
    }
    
    .venue-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .venue-map {
        order: 2;
    }
    
    .venue-info {
        order: 1;
    }

}

@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }

    .logo img {
        max-height: 32px;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 20px 0;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li.has-dropdown .dropdown {
        display: flex;
        position: static;
        transform: none;
        background: transparent;
        border: none;
        border-left: 2px solid rgba(255, 200, 0, 0.25);
        border-radius: 0;
        padding: 4px 0;
        margin: 6px auto 0;
        width: fit-content;
        backdrop-filter: none;
    }

    nav ul li.has-dropdown .dropdown li {
        text-align: left;
    }

    nav ul li.has-dropdown .dropdown li a {
        padding: 6px 16px;
        font-size: 12px;
    }

    .dropdown-chevron {
        display: none;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
        max-height: none;
    }

    .hero-body {
        flex-direction: column;
        height: 100%;
    }

    .hero-left {
        flex: 0 0 auto;
        order: 1;
        padding: 80px 6vw 1rem;
    }

    .hero-right {
        flex: 1 0 auto;
        order: 2;
        width: 100%;
        height: auto;
        min-height: 200px;
        max-height: none;
    }

    .hero-line {
        line-height: 1.05;
    }

    .hero-line-2 {
        margin-top: 0.08em;
    }

    .hero-word {
        font-size: clamp(24px, 7vw, 50px);
        line-height: 1.05;
    }

    .snip-badge--sm {
        font-size: clamp(13px, 4vw, 20px);
        padding: 3px 7px;
    }

    .snip-badge--md {
        font-size: clamp(9px, 2.5vw, 13px);
        padding: 3px 10px;
    }

    .hero-loc-label {
        font-size: clamp(7px, 1.8vw, 11px);
        padding: 0 clamp(8px, 1.5vw, 16px);
    }

    .hero-date-row {
        margin-top: clamp(10px, 1.8vh, 18px);
    }

    .hero-date-year {
        font-size: clamp(11px, 2.8vw, 16px);
    }

    .hero-collab {
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 0.75rem;
    }

    .hero-collab-text {
        font-size: clamp(0.65rem, 2.8vw, 0.95rem);
        white-space: normal;
    }

    .hero-collab-logo {
        height: clamp(1.2rem, 5.5vw, 1.9rem);
    }

    .hero-kv-img-1 {
        top: -5%;
        left: -5%;
        width: 112%;
        height: auto;
        opacity: 0.9;
    }

    .hero-kv-img-2 {
        top: 8%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .overview-description {
        margin-bottom: 1rem;
    }

    .overview-description p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .date-location {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .dummy-placeholder-removed {
        display: none;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        width: calc(50% - 6px);
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Impact Grid Responsive */
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .impact-number {
        font-size: 3rem;
    }
    
    .impact-label {
        font-size: 1rem;
    }
    
    .media-logos {
        gap: 2rem;
    }
    
    /* Past Supporters Responsive */
    .supporter-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .supporter-logo {
        max-width: 120px;
    }
    
    /* Speakers Responsive */
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .speakers .section-title-large {
        margin-bottom: 2rem;
    }
    
    /* Timeline Responsive */
    .strategic-partners-logos {
        gap: 1.5rem;
    }

    .strategic-partner-logo { max-height: unset; }
    .partner-tier-cohost    { max-height: 85px; max-width: 170px; }
    .partner-tier-strategic { max-height: 68px; max-width: 153px; }
    .partner-tier-premium   { max-height: 85px; max-width: 187px; }
    .partner-tier-ecosystem { max-height: 37px; max-width: 102px; }
    .partner-tier-community { max-height: 34px; max-width: 102px; }

    .timeline-event {
        min-width: 250px;
    }
    
    .event-date {
        font-size: 1.5rem;
    }
    
    .event-type {
        font-size: 1rem;
    }
    
    .event-description {
        font-size: 0.85rem;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    .footer-col {
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .footer-col ul li {
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
        order: 2;
    }

    .about-image {
        order: 1;
        width: 100%;
    }

    .partners-grid {
        margin-top: 16px;
    }

    .partner-tier {
        margin-bottom: 24px;
    }

    .register-content {
        gap: 24px;
        margin-top: 16px;
    }

    .previous-event-info h3 {
        font-size: 2.5rem;
    }

    .event-highlights {
        grid-template-columns: repeat(2, auto);
        gap: 0.75rem;
    }

    .event-highlights .highlight {
        padding: 0.75rem;
        min-width: 130px;
    }

    .event-highlights .highlight span:first-child {
        font-size: 1.75rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col ul li {
        text-align: center;
    }

}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero h2 {
        font-size: 1.25rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .venue-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .countdown-item {
        min-width: 100%;
    }

    .event-highlights {
        grid-template-columns: auto;
        width: 100%;
        max-width: 200px;
    }

    .partner-logos img {
        padding: 8px;
    }

    .stat-item .stat-number {
        font-size: 3rem;
    }
    
    /* Impact Grid Mobile */
    .impact-cards {
        grid-template-columns: 1fr;
    }
    
    .impact-card {
        min-height: 150px;
        padding: 2rem 1.5rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    /* Past Supporters Mobile */
    .supporter-logos {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    /* Speakers Mobile */
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline Mobile */
    .strategic-partner-logo { max-height: unset; }
    .partner-tier-cohost    { max-height: 72px; max-width: 144px; }
    .partner-tier-strategic { max-height: 58px; max-width: 130px; }
    .partner-tier-premium   { max-height: 72px; max-width: 158px; }
    .partner-tier-ecosystem { max-height: 32px; max-width: 86px;  }
    .partner-tier-community { max-height: 30px; max-width: 90px;  }

    .timeline-event {
        min-width: 220px;
        padding: 1.5rem;
    }
    
    .event-date {
        font-size: 1.25rem;
    }
    
    .event-type {
        font-size: 0.9rem;
    }
    
    .event-description {
        font-size: 0.8rem;
    }
}

/* About Section */
.about {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.about .section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about .section-title::after {
    display: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 3.5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-content .date-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.about-text {
    max-width: 800px;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 0;
    margin-top: 3rem;
    justify-content: start;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-item .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Speakers Section */
.speakers {
    background-color: var(--secondary-color);
}

.speakers .section-title {
    margin-bottom: 0.5rem;
}

.speakers .section-title-large {
    margin-bottom: 4rem;
    text-align: left;
}

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

.speaker-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.speaker-info.hidden {
    display: none;
}

.speaker-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.speaker-info p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.speaker-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.speaker-socials a {
    color: var(--text-light);
    font-size: 1.25rem;
}

.speaker-socials a:hover {
    color: var(--primary-color);
}

.view-all-speakers {
    text-align: center;
    margin-top: 50px;
}

/* Venue Section */
.venue {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.venue .section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.venue h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.venue-location {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.venue-name {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.venue-address {
    font-size: 1rem;
    color: var(--light-color);
    margin: 0;
}

.venue-description {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.venue-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--text-light);
    font-size: 1.2rem;
    min-width: 1.2rem;
    text-align: center;
}

.feature span {
    color: var(--text-light);
    font-size: 1rem;
}

.transportation {
    margin: 0;
}

.transportation p {
    color: var(--text-light);
    margin: 0;
}

.venue-map {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

.venue-map-link {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    text-decoration: none;
}

.venue-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
}

.venue-map-placeholder i {
    font-size: 2.5rem;
    color: #4f8ef7;
}

.venue-map-link:hover .venue-map-placeholder {
    background: rgba(79, 142, 247, 0.1);
    border-color: rgba(79, 142, 247, 0.4);
}

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

    .venue h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .venue h1 {
        font-size: 2.5rem;
    }

    .venue-features {
        gap: 0.75rem;
    }
}

/* Register Section */
.register {
    background-color: var(--dark-color);
    text-align: center;
    padding: 100px 0;
}

.register-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.register-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-tier {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.pricing-tier.sold-out::after {
    content: "Sold Out!";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 8rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
}

.pricing-tier.sold-out {
    opacity: 0.7;
    pointer-events: none;
}

.pricing-tier.sold-out:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.tier-header {
    margin-bottom: 2rem;
    text-align: left;
}

.tier-type {
    display: block;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tier-header h3 {
    font-size: 2.5rem;
    color: var(--light-color);
    line-height: 1.2;
    margin: 0;
}

.pricing-tier ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-tier ul li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.pricing-tier ul li::before {
    content: "•";
    color: var(--text-light);
    position: absolute;
    left: 0;
}

.register-cta {
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing {
        grid-template-columns: 1fr;
    }
    
    .register-description br {
        display: none;
    }
}

/* Past Supporters Section */
.past-supporters {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.past-supporters .section-title {
    margin-bottom: 0.5rem;
}

.past-supporters .section-title-large {
    margin-bottom: 4rem;
    text-align: left;
}

.supporters-grid {
    margin-top: 40px;
}

.supporter-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.supporter-logo {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.supporter-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Logos with internal padding - display larger */
.supporter-logo[data-original="danang-dost"],
.supporter-logo[data-original="furama"] {
    max-width: 240px;
    max-height: 130px;
    padding: 10px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--light-color);
    padding-top: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}


/* Contact Section */
/* Benefits section */
.section.benefits {
    background: var(--secondary-color);
    padding: 80px 0;
}

.section.benefits .section-title-large {
    margin-bottom: 0.5rem;
}

.section.benefits .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefits-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-content {
    flex: 1;
}

.benefits-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefits-subtitle {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.benefits-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.benefit-arrow {
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.benefits-cta {
    margin-top: 0.5rem;
}

.benefits-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laguna-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.benefits-banner-img {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.benefits-banner-img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .benefits-inner {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .laguna-logo {
        width: 130px;
    }
    .section.benefits .section-title-large {
        font-size: 1.8rem;
    }
}

.section.contact {
    background: var(--secondary-color);
    padding: 80px 0 60px 0;
    text-align: center;
}
.contact-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}
.contact-options a {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    color: var(--light-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-width: 120px;
    text-align: center;
}
.contact-options a i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: color 0.2s;
}
.contact-options a:hover,
.contact-options a:focus {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-4px) scale(1.04);
    box-shadow: var(--box-shadow);
}
.contact-options a:hover i,
.contact-options a:focus i {
    color: var(--dark-color);
}
.contact-options a span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        gap: 20px;
    }
    .contact-options a {
        padding: 18px 0;
        min-width: 0;
    }
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.gallery-sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.gallery-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-section h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

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

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

.gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

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

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

/* Video Highlights — Cinema Player */
.video-highlights {
    margin-top: 60px;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 200, 0, 0.15);
}

.video-highlights-title {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 24px;
}

.cinema-player {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cinema-main .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.cinema-main .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.cinema-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cinema-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    padding: 0;
    aspect-ratio: 16 / 9;
    opacity: 0.55;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.cinema-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cinema-thumb .thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: var(--light-color);
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cinema-thumb:hover {
    opacity: 1;
}

.cinema-thumb:hover .thumb-play {
    opacity: 1;
}

.cinema-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
}

.cinema-thumb.active .thumb-play {
    opacity: 1;
    color: var(--primary-color);
}

@media (max-width: 500px) {
    .cinema-thumbs {
        gap: 8px;
    }
}

/* ===================== Agenda Section ===================== */
.agenda {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.agenda .section-title {
    margin-bottom: 0.5rem;
}

.agenda .section-title-large {
    margin-bottom: 4rem;
    text-align: left;
}

.agenda-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3.5rem;
}

.agenda-subtitle a {
    color: var(--primary-color);
    text-decoration: none;
}

.agenda-subtitle a:hover {
    text-decoration: underline;
}

/* Phase block */
.agenda-phase {
    margin-bottom: 3rem;
}

.agenda-phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.agenda-phase-header > span:first-child {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    white-space: nowrap;
}

.agenda-phase-tag {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-light) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rows */
.agenda-rows {
    display: flex;
    flex-direction: column;
}

.agenda-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.agenda-row:last-child {
    border-bottom: none;
}

.agenda-row-break {
    opacity: 0.65;
}

.agenda-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 118px;
    padding-top: 3px;
    white-space: nowrap;
}

/* Badges */
.agenda-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    margin-top: 2px;
    min-width: 80px;
    text-align: center;
}

.badge-keynote {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.badge-panel {
    background-color: #3B82F6;
    color: #fff;
}

.badge-debate {
    background-color: #F97316;
    color: #fff;
}

.badge-showcase {
    background-color: #10B981;
    color: #fff;
}

.badge-break {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}

.badge-dinner {
    background-color: #8B5CF6;
    color: #fff;
}

/* Content */
.agenda-content {
    flex: 1;
    min-width: 0;
}

.agenda-session-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.agenda-session-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.agenda-motion {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.agenda-speakers {
    font-size: 0.825rem;
    color: rgba(255, 184, 0, 0.8);
    line-height: 1.5;
}

.tentative-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 6px;
    border-radius: 3px;
    border: 1px solid rgba(255, 184, 0, 0.45);
    color: rgba(255, 184, 0, 0.7);
    margin-right: 4px;
    vertical-align: middle;
}

/* Evening dinner grid */
.agenda-dinner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.agenda-dinner-card {
    background-color: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.agenda-dinner-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-color);
    line-height: 1.4;
}

.agenda-dinner-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 768px) {
    .agenda-phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .agenda-phase-tag {
        white-space: normal !important;
        overflow: visible !important;
    }

    .agenda-row {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .agenda-time {
        min-width: 100%;
        font-size: 0.8rem;
    }

    .agenda-badge {
        min-width: auto;
    }

    .agenda-dinner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .agenda {
        padding: 60px 0;
    }

    .agenda-session-title {
        font-size: 0.95rem;
    }
}

/* Tickets Section */
.tickets {
    background-color: var(--dark-color);
    padding: 80px 0;
}

.tickets .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.tickets .section-title-large {
    margin-bottom: 1rem;
}

.tickets-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-size: 1rem;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ticket-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ticket-card:hover {
    border-color: rgba(255, 200, 0, 0.3);
    transform: translateY(-4px);
}

.ticket-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(255, 200, 0, 0.07) 0%, #111113 100%);
}

.ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ticket-type {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-color);
}

.ticket-featured-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 3px 8px;
    border-radius: 4px;
}

.ticket-coming-soon-badge {
    background: rgba(255, 200, 0, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(255, 200, 0, 0.4);
}

.ticket-cta-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.ticket-card.closed {
    opacity: 0.55;
    border-color: rgba(255, 255, 255, 0.05);
}

.ticket-card.closed:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.05);
}

.ticket-closed-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 80, 80, 0.12);
    color: #ff6b6b;
    border: 1px solid rgba(255, 80, 80, 0.35);
    padding: 3px 8px;
    border-radius: 4px;
}

.ticket-price {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.ticket-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.ticket-access {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ticket-access-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.ticket-access-item i {
    color: #4ade80;
    font-size: 0.75rem;
    width: 14px;
}

.ticket-access-item.ticket-access-fcfs i {
    color: var(--primary-color);
}

.ticket-access-item.ticket-access-fcfs {
    color: var(--text-light);
}

.ticket-availability {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.75rem;
}

.ticket-availability i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.ticket-cta {
    display: block;
    text-align: center;
    width: 100%;
}

.tickets-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tickets-note i {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .ticket-card.featured {
        order: -1;
    }
}