#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--bg);
    pointer-events: none;
}

#particles-js::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 900px at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 60%),
        radial-gradient(circle 800px at 90% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-section: rgba(255, 255, 255, 0.015);
    --bg-nav: rgba(10, 10, 15, 0.7);
    --border: rgba(255, 255, 255, 0.07);
    --border-light: rgba(255, 255, 255, 0.12);
    --fg: #e8e8ec;
    --fg-muted: #b0b0be;
    --fg-dim: #9a9aaa;
    --accent: #d4a84a;
    --accent-hover: #c89b3e;
    --accent-dim: rgba(212, 168, 74, .12);
    --green: #22c55e;
    --blue: #3b82f6;
    --red: #ef4444;
    --radius: 12px;
    --font: 'Inter', 'Noto Sans JP', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-nav);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color .2s;
}

.navbar-links a:hover {
    color: var(--fg);
}

.navbar-cta {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: var(--accent) !important;
    font-weight: 600 !important;
    transition: all .2s !important;
}

.navbar-cta:hover {
    background: var(--accent) !important;
    color: #000 !important;
}

.nav-auth-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.nav-auth-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
    color: #fff;
}

/* Language Custom Toggle */
.nav-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    height: 36px;
}

.nav-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    color: #fff;
}

/* Hide translation tooltip popups, banner frame, etc. completely */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    display: none !important;
    visibility: hidden !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

body,
html {
    top: 0 !important;
    position: static !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 75px 0 8px;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 500px at 30% 30%, rgba(245, 166, 35, .05) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 70%, rgba(59, 130, 246, .03) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-dim);
    border: 1px solid rgba(245, 166, 35, .2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(1.2);
    }
}

@keyframes titleFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 12px;
    animation: titleFadeUp .8s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-title .title-main {
    background: linear-gradient(90deg, #ffffff 0%, #c8a96e 40%, #e8d5a3 60%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.hero-title .title-vol {
    display: inline-block;
    color: #c8a96e;
    -webkit-text-fill-color: #c8a96e;
    font-size: .72em;
    font-weight: 700;
    letter-spacing: .02em;
    opacity: .9;
    animation: titleFadeUp .8s .15s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-desc {
    font-size: 15px;
    color: var(--fg-muted);
    margin-bottom: 4px;
}

/* Countdown */
.hero-bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 20px 0 0;
    flex-wrap: wrap;
}

.countdown {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.countdown-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 0;
    width: 72px;
    text-align: center;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--fg);
}

.countdown-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--fg-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Event Meta */
.event-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-left: 1px solid var(--border);
    padding-left: 28px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.meta-icon {
    font-size: 20px;
    margin-top: 2px;
}

.meta-label {
    font-size: 11px;
    color: var(--fg-dim);
    margin-bottom: 2px;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.main-content {
    min-width: 0;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.ticket-box {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.ticket-box-header {
    padding: 20px 24px 12px;
}

.ticket-box-title {
    font-size: 18px;
    font-weight: 800;
}

.ticket-box-subtitle {
    font-size: 12px;
    color: var(--fg-muted);
    margin-top: 4px;
}

.ticket-option {
    margin: 0 12px 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.ticket-option:hover {
    border-color: var(--border-light);
}

.ticket-option.selected {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.ticket-option-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.ticket-option.selected .ticket-option-check {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.ticket-option-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    padding-right: 32px;
}

.ticket-option-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.ticket-option-price.free {
    color: var(--green);
}

.ticket-option-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-muted);
}

.ticket-remaining-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    font-size: 11px;
    color: var(--fg-muted);
    margin-top: 6px;
}

.ticket-submit-btn {
    display: block;
    width: calc(100% - 24px);
    margin: 8px 12px 16px;
    padding: 14px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    text-decoration: none;
}

.ticket-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 166, 35, .3);
}

.ticket-footnote {
    text-align: center;
    font-size: 11px;
    color: var(--fg-dim);
    padding: 0 12px 8px;
}

.ticket-applicants {
    text-align: center;
    padding: 12px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--fg-muted);
}

.ticket-applicants .count {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

/* Organizer Card */
.organizer-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.organizer-label {
    font-size: 11px;
    color: var(--fg-dim);
    margin-bottom: 12px;
}

.organizer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.organizer-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #000;
}

.organizer-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

.organizer-sub {
    font-size: 11px;
    color: var(--fg-muted);
}

.organizer-desc {
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.organizer-website {
    display: block;
    text-align: center;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}

.organizer-website:hover {
    border-color: var(--border-light);
    background: rgba(255, 255, 255, .03);
}

/* ===== SECTION ===== */
.content-section {
    background: var(--bg-section);
    border: 1px solid var(--border);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 0;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--accent);
    border-radius: 2px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* ===== SPEAKERS ===== */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.speaker-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

/* Country flag badge - inline after name */
.country-flag-badge {
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
    margin-left: 4px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .4));
}

.speaker-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.speaker-photo-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .1);
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-photo-wrap .initial {
    font-size: 36px;
    font-weight: 800;
    color: var(--fg-dim);
}

.speaker-company {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2px;
}

.speaker-title {
    font-size: 11px;
    color: var(--fg-muted);
    margin-bottom: 4px;
}

.speaker-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.speaker-bio {
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.6;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* speaker-message removed — space reallocated to speaker-bio */

.speaker-hp {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 5px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--fg-muted);
    text-decoration: none;
    transition: all .2s;
}

.speaker-hp:hover {
    border-color: var(--border-light);
    color: var(--fg);
}

/* ===== COMMENTATORS / FACILITATORS side-by-side ===== */
.commentators-facilitators-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.commentators-facilitators-row .content-section {
    margin-bottom: 0;
}

.commentators-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.commentator-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}

.commentator-card.coming-soon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    color: var(--fg-muted);
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.commentator-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--fg-dim);
}

.commentator-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commentator-company {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
}

.commentator-title {
    font-size: 10px;
    color: var(--fg-muted);
}

.commentator-name {
    font-size: 15px;
    font-weight: 700;
    margin: 2px 0 6px;
}

.commentator-bio {
    font-size: 11px;
    color: var(--fg-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== EVENT DETAILS ===== */
.event-desc-text {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.recommend-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.recommend-list {
    list-style: none;
    padding: 0;
}

.recommend-list li {
    font-size: 13px;
    color: var(--fg-muted);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.recommend-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.tags-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.tag {
    padding: 5px 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--fg-muted);
}

/* ===== TIMETABLE ===== */
.timetable {
    position: relative;
    padding-left: 24px;
}

.timetable::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--fg-dim));
    border-radius: 2px;
}

.tt-entry {
    position: relative;
    padding: 10px 0;
}

.tt-entry::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-section);
}

.tt-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2px;
}

.tt-desc {
    font-size: 14px;
    font-weight: 500;
}

/* ===== SPONSORS ===== */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sponsor-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    transition: all .2s;
    min-height: 80px;
    text-align: center;
}

.sponsor-chip:hover {
    border-color: var(--border-light);
    background: rgba(255, 255, 255, .06);
}

.sponsor-chip img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
}

/* ===== FOOTER ===== */
.footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 32px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 11px;
    color: var(--fg-dim);
}

.footer-copy a {
    color: var(--fg-muted);
    text-decoration: none;
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    flex-direction: column;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .sidebar {
        position: static;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 80px 20px 32px;
    }

    .navbar {
        padding: 0 16px;
    }

    .navbar-links a:not(.navbar-cta):not(.lang-switch) {
        display: none;
    }

    .event-meta {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .commentators-grid {
        /* already column layout */
    }

    .commentators-facilitators-row {
        grid-template-columns: 1fr;
    }

    .countdown-item {
        width: 60px;
    }

    .countdown-num {
        font-size: 24px;
    }
}

/* ===== SPEAKER MODAL ===== */
.spk-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.spk-modal-overlay.open {
    display: flex;
}

.spk-modal-box {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 36px;
    width: 780px;
    max-width: 92vw;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
}

.spk-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    z-index: 10;
}

.spk-modal-close:hover {
    color: #fff;
}

.spk-modal-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0a500;
    display: block;
    margin: 0 auto 16px;
}

.spk-modal-initial {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(240, 165, 0, .15);
    border: 3px solid #f0a500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: #f0a500;
    margin: 0 auto 16px;
}

.spk-modal-company {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 4px;
}

.spk-modal-title {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 6px;
}

.spk-modal-name {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.spk-modal-section {
    margin-top: 18px;
}

.spk-modal-label {
    font-size: 11px;
    color: #f0a500;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.spk-modal-text {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.75;
    white-space: pre-wrap;
}

.spk-modal-message {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    font-style: italic;
    line-height: 1.75;
    padding: 14px 18px;
    background: rgba(240, 165, 0, .07);
    border-left: 3px solid #f0a500;
    border-radius: 0 8px 8px 0;
}

/* ===== ENTRY MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg-muted);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.modal-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.modal-body {
    padding: 24px;
}

.step-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.step-dot {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    transition: all .3s;
}

.step-dot.active {
    background: var(--accent);
}

.step-dot.done {
    background: #22c55e;
}

.step-label {
    font-size: 13px;
    color: var(--fg-muted);
    margin-bottom: 20px;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.category-option {
    padding: 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.04);
}

.category-option:hover {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.category-option.selected {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    font-weight: 700;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--fg);
}

.form-group label::after {
    content: ' *';
    color: #ff4d4f;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid hsla(0, 0%, 100%, 0.4);
    border-radius: 8px;
    background: hsla(0, 0%, 100%, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.3);
}

.form-input::placeholder {
    color: var(--fg-muted);
    opacity: 0.6;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.btn-modal-back {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.btn-modal-back:hover {
    border-color: var(--accent);
}

.btn-modal-next {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background: #e8b84a;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.btn-modal-next:hover {
    background: #f0c45a;
    box-shadow: 0 4px 16px rgba(245, 166, 35, .3);
    transform: translateY(-1px);
}

.btn-modal-next:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    margin-bottom: 16px;
}

.btn-google:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

.or-divider {
    text-align: center;
    color: var(--fg-muted);
    font-size: 12px;
    margin: 16px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 60px);
    height: 1px;
    background: var(--border);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.success-content {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: hsla(120, 60%, 50%, 0.1);
    border: 2px solid hsla(120, 60%, 50%, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.success-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.success-content p {
    color: var(--fg-muted);
    font-size: 14px;
    line-height: 1.6;
}

.speaker-select-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 350px;
    overflow-y: auto;
}

.speaker-select-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
}

.speaker-select-item:hover {
    border-color: var(--accent);
}

.speaker-select-item.checked {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.1);
}

.speaker-select-check {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.speaker-select-item.checked .speaker-select-check {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.15);
}

.speaker-select-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}

.speaker-select-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-select-info {
    flex: 1;
}

.speaker-select-name {
    font-size: 14px;
    font-weight: 600;
}

.speaker-select-company {
    font-size: 12px;
    color: var(--fg-muted);
}

/* Survey Styles */
.survey-section {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.survey-section.active {
    display: block;
}

.survey-section.active .survey-question-label::after {
    content: ' *';
    color: #ff4d4f;
    font-weight: 700;
}

.survey-question {
    margin-bottom: 16px;
}

.survey-question-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--fg);
}

.survey-question-label::after {
    content: ' *';
    color: #ff4d4f;
    font-weight: 700;
}

.survey-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.survey-option {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    color: var(--fg-muted);
}

.survey-option:hover {
    border-color: var(--accent);
    color: var(--fg);
}

.survey-option.selected {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
}

.survey-radio {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.survey-radio-item {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    color: var(--fg-muted);
}

.survey-radio-item:hover {
    border-color: var(--accent);
    color: var(--fg);
}

.survey-radio-item.selected {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
}

.survey-conditional {
    display: none;
    margin-top: 8px;
}

.survey-conditional.show {
    display: block;
}

.survey-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: hsla(0, 0%, 100%, 0.08);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
    min-height: 60px;
    box-sizing: border-box;
}

.survey-textarea:focus {
    border-color: var(--accent);
    outline: none;
}

/* Validation error styles */
.form-input.input-error {
    border-color: #ff4d4f !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.15);
}

.field-error-msg {
    display: none;
    color: #ff4d4f;
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.4;
}

.field-error-msg.show {
    display: block;
}

.modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    color: var(--fg-muted);
    font-size: 14px;
}


/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== SPONSOR BANNER ===== */
.sponsor-banner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 18px 28px;
    min-width: 160px;
    min-height: 72px;
    transition: border-color .2s, background .2s;
}

a:hover .sponsor-banner-card {
    border-color: rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.07);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--fg-muted);
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 12px;
    color: var(--fg-dim);
}

.footer-copy a {
    color: var(--fg-dim);
    text-decoration: none;
}

.footer-copy a:hover {
    color: var(--fg-muted);
}

/* ===== SPONSOR MODAL BUTTONS ===== */
.spnsr-link-btn {
    display: inline-block;
    font-size: 12px;
    color: var(--fg-muted);
    text-decoration: none;
    word-break: break-all;
    transition: color .2s;
}

.spnsr-link-btn:hover {
    color: var(--fg);
}

.spnsr-action-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    transition: all .2s;
    background: rgba(255, 255, 255, .04);
}

.spnsr-action-btn:hover {
    background: rgba(255, 255, 255, .10);
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== NAVBAR ACTIONS FIX ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ===== SPONSOR MODAL (PREMIUM) ===== */
.spnsr-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: linear-gradient(135deg, rgba(245, 166, 35, .08) 0%, rgba(59, 130, 246, .06) 100%);
    border-radius: 12px 12px 0 0;
    margin: -28px -28px 0;
    overflow: hidden;
}

.spnsr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.spnsr-hero.no-logo {
    height: 60px;
}

.spnsr-hero.no-logo .spnsr-logo {
    display: none;
}

.spnsr-hero.no-logo+.spnsr-name {
    color: var(--accent);
}

.spnsr-logo {
    max-height: 72px;
    max-width: 260px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .4));
    position: relative;
    z-index: 1;
}

.spnsr-name {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin: 22px 0 6px;
    letter-spacing: -.3px;
    color: var(--fg);
}

.spnsr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 16px 0 4px;
}

.spnsr-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid transparent;
}

.spnsr-btn--web {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: var(--fg-muted);
}

.spnsr-btn--web:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: var(--fg);
}

.spnsr-btn--cal {
    background: rgba(245, 166, 35, .12);
    border-color: rgba(245, 166, 35, .3);
    color: var(--accent);
}

.spnsr-btn--cal:hover {
    background: rgba(245, 166, 35, .22);
    border-color: var(--accent);
}

.spnsr-btn--doc {
    background: rgba(59, 130, 246, .1);
    border-color: rgba(59, 130, 246, .3);
    color: #60a5fa;
}

.spnsr-btn--doc:hover {
    background: rgba(59, 130, 246, .2);
    border-color: #60a5fa;
}

.spnsr-desc-block {
    margin-top: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
}

.spnsr-desc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 10px;
}

.spnsr-desc-text {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.8;
}

/* sponsor name text fallback -> orange */
.spnsr-name {
    color: var(--accent);
}

.sponsor-banner-card span,
.sponsor-chip span {
    color: var(--accent);
    font-weight: 700;
}

/* Scroll Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   MOBILE RESPONSIVE — COMPREHENSIVE
   ============================================================ */

/* --- Tablet (max-width: 768px) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 0 12px;
        height: 52px;
    }

    .nav-brand {
        font-size: 13px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-auth-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .nav-lang-toggle {
        padding: 6px 8px;
        height: 32px;
        font-size: 12px;
    }

    .nav-lang-toggle svg {
        width: 13px;
        height: 13px;
    }

    #navUserProfile span[id="navUserName"] {
        font-size: 11px !important;
    }

    .hero {
        padding: 64px 0 8px;
    }

    .hero-inner {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 36px);
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .countdown {
        gap: 6px;
    }

    .countdown-item {
        width: 56px;
        padding: 8px 0;
    }

    .countdown-num {
        font-size: 22px;
    }

    .countdown-label {
        font-size: 9px;
    }

    .event-meta {
        border-left: none;
        padding-left: 0;
        gap: 12px;
    }

    .main-layout {
        padding: 0 16px;
    }

    .content-section {
        padding: 20px 16px;
    }

    .section-title {
        font-size: 17px;
    }

    .speaker-photo-wrap {
        width: 90px;
        height: 90px;
    }

    .speaker-name {
        font-size: 15px;
    }

    .commentator-photo {
        width: 52px;
        height: 52px;
    }

    /* Modal adjustments for tablet */
    .modal {
        max-width: 95vw;
    }

    .spk-modal-box {
        padding: 24px 20px;
        max-width: 95vw;
    }

    .footer {
        padding: 24px 16px;
    }
}

/* --- Smartphone (max-width: 480px) --- */
@media (max-width: 480px) {
    .navbar {
        padding: 0 10px;
        height: 48px;
    }

    .nav-brand {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* Feedback link in nav */
    .nav-brand a[onclick*="Feedback"] {
        display: none;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-auth-btn {
        padding: 5px 8px;
        font-size: 10px;
    }

    .nav-auth-btn svg {
        width: 14px;
        height: 14px;
    }

    .nav-lang-toggle {
        padding: 5px 6px;
        height: 30px;
    }

    #navUserProfile {
        gap: 6px !important;
    }

    #navUserProfile span[id="navUserName"] {
        font-size: 10px !important;
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #navUserProfile a[onclick="signOut()"] {
        font-size: 9px !important;
    }

    .hero {
        padding: 56px 0 4px;
    }

    .hero-inner {
        padding: 0 14px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: clamp(20px, 6.5vw, 28px);
        letter-spacing: -0.5px;
    }

    .hero-desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-bottom {
        margin: 14px 0 0;
    }

    .countdown-item {
        width: 52px;
        padding: 6px 0;
    }

    .countdown-num {
        font-size: 20px;
    }

    .countdown-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .event-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        border-left: none;
        padding-left: 0;
    }

    .meta-item {
        gap: 6px;
    }

    .meta-value {
        font-size: 12px;
        word-break: break-word;
    }

    /* Hero ticket CTA - compact on mobile */
    .hero-ticket-cta {
        padding: 0 16px;
    }

    .hero-free-badge {
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        margin-left: 4px;
        letter-spacing: 1px;
    }

    .meta-icon {
        font-size: 16px;
    }

    .meta-label {
        font-size: 10px;
    }

    .meta-value {
        font-size: 13px;
    }

    .main-layout {
        padding: 0 12px;
        gap: 16px;
        margin-top: 4px;
    }

    .content-section {
        padding: 16px 14px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .section-title::before {
        height: 20px;
        margin-right: 10px;
    }

    /* Speaker cards - 2 column on mobile */
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .speaker-card {
        padding: 14px 10px;
    }

    .speaker-photo-wrap {
        width: 64px;
        height: 64px;
    }

    .speaker-company {
        font-size: 11px;
    }

    .speaker-name {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .speaker-bio {
        font-size: 11px;
        -webkit-line-clamp: 5;
    }

    /* Commentators */
    .commentator-card {
        padding: 12px;
        gap: 10px;
    }

    .commentator-photo {
        width: 48px;
        height: 48px;
    }

    .commentator-name {
        font-size: 13px;
    }

    .commentator-bio {
        font-size: 10px;
    }

    /* Timetable */
    .timetable {
        padding-left: 18px;
    }

    .tt-time {
        font-size: 12px;
    }

    .tt-desc {
        font-size: 13px;
    }

    /* Sidebar & Ticket Box */
    .ticket-box {
        border-radius: 10px;
    }

    .ticket-box-header {
        padding: 16px 16px 10px;
    }

    .ticket-box-title {
        font-size: 16px;
    }

    .ticket-option {
        margin: 0 10px 10px;
        padding: 14px;
    }

    .ticket-option-price {
        font-size: 24px;
    }

    .ticket-submit-btn {
        width: calc(100% - 20px);
        margin: 6px 10px 12px;
        padding: 12px;
        font-size: 14px;
    }

    .organizer-card {
        padding: 18px;
    }

    /* Sponsors */
    .sponsors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sponsor-chip {
        padding: 12px;
        min-height: 60px;
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 20px 14px;
    }

    .footer-brand {
        font-size: 14px;
    }

    .footer-copy {
        font-size: 10px;
    }

    /* ===== MODAL — Full-Screen on Mobile ===== */
    .modal-overlay {
        padding: 0;
        align-items: stretch;
    }

    .modal {
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        height: 100%;
    }

    .modal-header {
        padding: 16px;
        position: sticky;
        top: 0;
        background: rgba(10, 10, 15, 0.95);
        z-index: 10;
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .modal-header h2 {
        font-size: 16px;
    }

    .modal-body {
        padding: 16px;
    }

    .step-label {
        font-size: 12px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .category-option {
        padding: 14px 10px;
        font-size: 13px;
        border-radius: 10px;
    }

    .form-input {
        padding: 12px;
        font-size: 16px;
        /* Prevent iOS zoom on focus */
    }

    .form-group label {
        font-size: 12px;
    }

    .btn-modal-next,
    .btn-modal-back {
        padding: 14px 16px;
        font-size: 15px;
    }

    .survey-option {
        padding: 7px 12px;
        font-size: 12px;
    }

    .survey-radio-item {
        padding: 10px 12px;
        font-size: 12px;
    }

    .survey-textarea {
        font-size: 14px;
    }

    .speaker-select-list {
        max-height: calc(100vh - 260px);
    }

    .speaker-select-item {
        padding: 10px;
        gap: 10px;
    }

    .speaker-select-name {
        font-size: 13px;
    }

    .speaker-select-company {
        font-size: 11px;
    }

    .success-content h3 {
        font-size: 18px;
    }

    .success-content p {
        font-size: 13px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    /* ===== SPEAKER MODAL — Full-screen on mobile ===== */
    .spk-modal-overlay {
        align-items: stretch;
    }

    .spk-modal-box {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 20px 16px;
    }

    .spk-modal-photo,
    .spk-modal-initial {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .spk-modal-name {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .spk-modal-text {
        font-size: 13px;
    }

    .spk-modal-message {
        font-size: 13px;
        padding: 10px 14px;
    }

    /* ===== SPONSOR MODAL — Mobile adjustments ===== */
    .spnsr-hero {
        height: 100px;
        margin: -20px -16px 0;
    }

    .spnsr-logo {
        max-height: 52px;
        max-width: 200px;
    }

    .spnsr-name {
        font-size: 18px;
    }

    .spnsr-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .spnsr-desc-block {
        padding: 14px;
    }

    .spnsr-desc-text {
        font-size: 12px;
    }

    /* Sponsor banner */
    .sponsor-banner-card {
        padding: 12px 16px;
        min-width: 120px;
        min-height: 56px;
    }

    /* Recommend list */
    .recommend-list li {
        font-size: 12px;
    }

    .recommend-title {
        font-size: 14px;
    }

    .event-desc-text {
        font-size: 13px;
    }

    .tag {
        padding: 4px 10px;
        font-size: 11px;
    }

    /* Skeleton loading adjustments */
    .content-grid {
        grid-template-columns: 1fr !important;
    }

    .content-sidebar {
        display: none;
    }
}

/* ===== Hero Ticket CTA (mobile only) ===== */
.hero-ticket-cta {
    max-width: 960px;
    margin: 0 auto;
    padding: 6px 20px 0;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .hero-ticket-cta {
        display: block;
    }
}

/* ===== Footer size refinement ===== */
.footer-brand {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--fg-dim);
}

.footer a[href="terms.html"],
.footer a[href="privacy.html"] {
    font-size: 11px;
}

.footer-copy {
    font-size: 10px;
}

/* ===== Cheer / Comment Buttons on Speaker Cards ===== */
.card-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    justify-content: center;
}

.card-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: transparent;
    color: var(--fg-muted, #888);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.card-action-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 168, 74, .08);
}

.card-action-btn.cheered {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 168, 74, .12);
}

.card-action-btn.cheered:hover {
    background: rgba(212, 168, 74, .04);
    border-color: rgba(255, 255, 255, .2);
}

.card-action-btn .count {
    font-weight: 700;
}

.card-comment-area {
    display: none;
    margin-top: 6px;
}

.card-comment-area.show {
    display: flex;
    gap: 4px;
}

.card-comment-input {
    flex: 1;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(0, 0, 0, .3);
    color: #e8e6e3;
    font-size: 11px;
    outline: none;
    font-family: inherit;
}

.card-comment-input:focus {
    border-color: var(--accent);
}

.card-comment-send {
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    background: var(--accent);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.card-comment-send:hover {
    background: #e0b550;
}

.card-comment-send:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* ===== Pitch Overview Section (AI-generated) ===== */
.pitch-overview-section {
    position: relative;
    overflow: hidden;
}

.pitch-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 74, 0.04) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.pitch-theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pitch-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent, #d4a84a);
    background: rgba(212, 168, 74, 0.08);
    border: 1px solid rgba(212, 168, 74, 0.2);
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.pitch-tag:hover {
    background: rgba(212, 168, 74, 0.15);
    border-color: rgba(212, 168, 74, 0.4);
}

.pitch-overview-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--fg-muted, #aaa);
    position: relative;
}

@media (max-width: 480px) {
    .pitch-theme-tags {
        gap: 6px;
    }

    .pitch-tag {
        padding: 4px 10px;
        font-size: 11px;
    }

    .pitch-overview-text {
        font-size: 13px;
        line-height: 1.8;
    }
}
.read-pitch-btn { display: inline-block; padding: 10px 16px; background: rgba(212, 168, 74, 0.1); color: var(--fg-gold); border: 1px solid rgba(212, 168, 74, 0.3); border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; width: 100%; box-sizing: border-box; } .read-pitch-btn:hover { background: rgba(212, 168, 74, 0.2); border-color: rgba(212, 168, 74, 0.6); transform: translateY(-1px); }
