/* ===== TICKET TIER GLOW ANIMATION ===== */
@keyframes slowGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 146, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 146, 255, 0.8), 0 0 30px rgba(0, 255, 145, 0.6);
    }
}

.ticket-tier-sub .glow-text {
    animation: slowGlow 3s ease-in-out infinite;
}

/* ===== FORM CUSTOM STYLES ===== */
#_form_24_._inline-form, 
#_form_24_._inline-form ._form-content {
    padding: 20px !important;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%) !important;
    color: white !important;
    border-radius: 12px;
}

#_form_24_._inline-form ._form-title,
#_form_24_._inline-form ._html-code,
#_form_24_._inline-form ._form-label,
#_form_24_._inline-form ._html-code p {
    color: white !important;
}

#_form_24_._inline-form ._html-code h1, 
#_form_24_._inline-form ._html-code h2, 
#_form_24_._inline-form ._html-code h3, 
#_form_24_._inline-form ._html-code h4, 
#_form_24_._inline-form ._html-code h5, 
#_form_24_._inline-form ._html-code h6, 
#_form_24_._inline-form ._form-title {
    line-height: 1 !important;
    font-size: 44px !important;
}

#_form_24_ ._form-title {
    font-weight: 900 !important;
}

#_form_24_._inline-form ._html-code p {
    font-size: 18px !important;
}

#_form_24_._inline-form input[type="text"],
#_form_24_._inline-form input[type="email"] {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

#_form_24_._inline-form input[type="text"]:focus,
#_form_24_._inline-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.8) !important;
    outline: none !important;
}

/* ===== CSS RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 75%;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 146, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 146, 255, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 255, 145, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 145, 0.6);
}

.btn-outline {
    background: transparent;
    color: #0092ff;
    border: 2px solid #0092ff;
}

.btn-outline:hover {
    background: #0092ff;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-early-bird {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #8b4513;
}

.badge-limited {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #8b1538;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    transform: translateY(0);
}

.nav.scrolled {
    background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Mobile nav logo */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 27px; /* Half the original size */
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00ff91;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 146, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Mobile navigation active states */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    height: 120%;
    background: url('img/fallconbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform-origin: center center;
    will-change: transform;
    z-index: -2;
    overflow: hidden;
    animation: breathe 8s ease-in-out infinite;
    transform: translateZ(0);
    --parallax-offset: 0px;
    --parallax-scale: 1;
}

.futuristic-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.dots-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: floatDots 20s ease-in-out infinite;
}

.layer-1 {
    background-size: 60px 60px;
    animation-delay: 0s;
    opacity: 0.8;
}

.layer-2 {
    background-size: 80px 80px;
    animation-delay: -7s;
    opacity: 0.6;
    transform: translate(20px, 20px);
}

.layer-3 {
    background-size: 100px 100px;
    animation-delay: -14s;
    opacity: 0.4;
    transform: translate(-10px, -10px);
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 39px, rgba(255, 255, 255, 0.2) 40px, transparent 41px),
        linear-gradient(transparent 39px, rgba(255, 255, 255, 0.2) 40px, transparent 41px);
    background-size: 40px 40px;
    animation: pulseLines 15s ease-in-out infinite;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

@keyframes floatDots {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(5px, -8px) scale(1.02);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-3px, 6px) scale(0.98);
        opacity: 0.7;
    }
    75% { 
        transform: translate(8px, -4px) scale(1.01);
        opacity: 0.9;
    }
}

@keyframes pulseLines {
    0%, 100% { 
        opacity: 0.1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.02);
    }
}

@keyframes breathe {
    0%, 100% { 
        transform: translateY(var(--parallax-offset)) scale(calc(var(--parallax-scale) * 1)) translateZ(0);
    }
    50% { 
        transform: translateY(var(--parallax-offset)) scale(calc(var(--parallax-scale) * 1.05)) translateZ(0);
    }
}

/* Hover effects for interactivity */
.hero:hover .dots-layer {
    animation-duration: 15s;
}

.hero:hover .connection-lines {
    animation-duration: 10s;
    opacity: 0.5;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .dots-layer {
        background-size: 30px 30px;
    }
    
    .layer-1 {
        background-size: 45px 45px;
    }
    
    .layer-2 {
        background-size: 60px 60px;
        transform: translate(15px, 15px);
    }
    
    .layer-3 {
        background-size: 75px 75px;
        transform: translate(-8px, -8px);
    }
    
    .connection-lines {
        background-size: 30px 30px;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .dots-layer,
    .connection-lines,
    .hero-background {
        animation: none;
    }
    
    .hero:hover .dots-layer,
    .hero:hover .connection-lines {
        animation-duration: 20s;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .dots-layer {
        background-image: radial-gradient(circle, rgba(200, 200, 200, 0.3) 1px, transparent 1px);
    }
    
    .connection-lines {
        background-image: 
            linear-gradient(90deg, transparent 39px, rgba(200, 200, 200, 0.08) 40px, transparent 41px),
            linear-gradient(transparent 39px, rgba(200, 200, 200, 0.08) 40px, transparent 41px);
    }
}

/* Light mode compatibility */
@media (prefers-color-scheme: light) {
    
    .dots-layer {
        background-image: radial-gradient(circle, rgba(100, 100, 100, 0.2) 1px, transparent 1px);
    }
    
    .connection-lines {
        background-image: 
            linear-gradient(90deg, transparent 39px, rgba(100, 100, 100, 0.06) 40px, transparent 41px),
            linear-gradient(transparent 39px, rgba(100, 100, 100, 0.06) 40px, transparent 41px);
    }
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 0 80px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-logo-img {
    max-width: 50vw;
    height: auto;
    opacity: 1;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-year {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    opacity: 1;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 48px;
    opacity: 1;
    font-weight: 400;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-detail {
    text-align: center;
}

.hero-detail-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.hero-detail-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-countdown {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 16px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== GIVEAWAY CTA BAR ===== */
.giveaway-cta-bar {
    display: none;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 24px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #00ff91;
    border-bottom: 3px solid #0092ff;
}

.giveaway-cta-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 145, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.giveaway-cta-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.giveaway-cta-bar-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.giveaway-cta-bar-text i {
    font-size: 1.5rem;
    color: #00ff91;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .giveaway-cta-bar {
        padding: 20px 0;
    }
    
    .giveaway-cta-bar-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .giveaway-cta-bar-text {
        font-size: 1rem;
        justify-content: center;
    }
}

/* ===== GIVEAWAY SECTION ===== */
.giveaway {
    display: none;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.giveaway::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 145, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 146, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.giveaway > * {
    position: relative;
    z-index: 2;
}

.giveaway-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: stretch;
}

.giveaway-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.1) 0%, rgba(0, 146, 255, 0.1) 100%);
    height: 80%;
    align-self: center;
}

.giveaway-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.giveaway-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.giveaway-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.giveaway-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.giveaway-details {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.giveaway-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.giveaway-detail-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 145, 0.3);
    transform: translateX(8px);
}

.giveaway-detail-item i {
    font-size: 1.5rem;
    color: #00ff91;
    width: 32px;
    text-align: center;
}

.giveaway-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.giveaway-detail-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.giveaway-detail-value {
    font-size: 1.125rem;
    color: white;
    font-weight: 600;
}

.giveaway-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
}

.giveaway-terms-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #00ff91;
    border-radius: 4px;
}

.giveaway-terms-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.giveaway-terms-link:hover {
    color: #00ff91;
}

/* Responsive Giveaway */
@media (max-width: 1024px) {
    .giveaway-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .giveaway-image-container {
        height: auto;
    }
    
    .giveaway-image {
        height: auto;
        object-fit: contain;
    }
    
    .giveaway-text {
        text-align: center;
    }
    
    .giveaway-cta {
        align-items: center;
    }
    
    .giveaway-terms-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .giveaway {
        padding: 80px 0;
    }
    
    .giveaway-headline {
        font-size: 2rem;
    }
    
    .giveaway-subheadline {
        font-size: 1.125rem;
    }
    
    .giveaway-details {
        gap: 16px;
    }
    
    .giveaway-detail-item {
        padding: 12px 16px;
    }
    
    .giveaway-detail-item i {
        font-size: 1.25rem;
        width: 28px;
    }
    
    .giveaway-detail-value {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .giveaway-headline {
        font-size: 1.75rem;
    }
    
    .giveaway-detail-item {
        gap: 12px;
    }
}

/* ===== SPONSORS SECTION ===== */
.sponsors {
    padding: 120px 0;
    background: #2d3748;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.08) 52%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.08) 52%, transparent 53%);
    background-size: 60px 60px, 40px 40px, 30px 30px, 30px 30px;
    background-position: 0 0, 30px 30px, 0 0, 0 0;
    color: white;
    position: relative;
}

.sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.8) 0%, rgba(26, 32, 44, 0.9) 100%);
    z-index: 1;
}

.sponsors > * {
    position: relative;
    z-index: 2;
}

.sponsors .section-title {
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsors .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 64px;
    max-width: 100%;
    overflow: hidden;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5vh;
    padding: 20px;
}


.sponsor-logo {
    width: 200px;
    height: 180px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.1) 0%, rgba(0, 146, 255, 0.1) 100%);
    border-radius: 12px;
    padding: 21px;
    box-shadow: 0 4px 20px rgba(0, 255, 145, 0.15), 0 0 0 1px rgba(0, 255, 145, 0.1);
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 3;
}

.sponsor-logo:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 145, 0.25), 0 0 0 1px rgba(0, 255, 145, 0.2);
    transform: translateY(-2px);
}

.sponsors-cta {
    text-align: center;
}

/* ===== SPONSOR REVEAL FUNCTIONALITY ===== */
.sponsor-hidden {
    display: none;
}

.sponsor-revealed {
    display: flex !important;
    animation: fadeInUp 0.6s ease-out;
}

.sponsor-reveal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    width: 100%;
    text-align: center;
}

.sponsor-reveal-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sponsor-reveal-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.more-sponsors-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 24px auto 16px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

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

/* ===== ASCEND INITIATIVE UNIVERSITY SECTION ===== */
.ascend-university {
    padding: 80px 0;
    background: #ffffff;
}

.university-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.university-text {
    width: 80%;
    text-align: center;
    margin-bottom: 60px;
}

.university-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
}

.university-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature-item {
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 146, 255, 0.3);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #0092ff;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.university-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    border-radius: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-block;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    line-height: 1.4;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== WHY ATTEND SECTION ===== */
.why-attend {
    padding: 120px 0;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
}

.pillar-item {
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    pointer-events: none;
}

.pillar-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #0092ff;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 146, 255, 0.3);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.pillar-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ===== TICKETS SECTION ===== */
.tickets {
    padding: 120px 0;
    background: url('img/fallconbg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.tickets .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.tickets .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.price-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.countdown-text {
    font-size: 1.125rem;
    font-weight: 500;
}

.mini-countdown {
    display: flex;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.ticket-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.ticket-card.featured {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}


.ticket-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.ticket-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.ticket-card-left {
    text-align: left;
}

.ticket-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.form-container {
    width: 100%;
    padding: 20px;
}

/* Override form styles to match the design */
#_form_24_ {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

#_form_24_ ._form-title {
    color: #1a1a1a !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
    text-align: center;
}

#_form_24_ ._html-code p {
    color: #374151 !important;
    text-align: center;
    margin-bottom: 24px !important;
    font-size: 0.95rem !important;
}

#_form_24_ ._form-label {
    color: #1a1a1a !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
}

#_form_24_ input[type="text"] {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #d1d5db !important;
    color: #1a1a1a !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#_form_24_ input[type="text"]::placeholder {
    color: #6b7280 !important;
}

#_form_24_ input[type="text"]:focus {
    outline: none !important;
    border-color: #00ff91 !important;
    box-shadow: 0 0 0 2px rgba(0, 255, 145, 0.2) !important;
}

#_form_24_ ._submit {
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%) !important;
    color: white !important;
    border: none !important;
    padding: 14px 24px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 16px !important;
}

#_form_24_ ._submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 146, 255, 0.4) !important;
}

#_form_24_ ._submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

#_form_24_ .field-required {
    color: #ff6b6b !important;
}

#_form_24_ ._form_element {
    margin-bottom: 20px !important;
}

#_form_24_ ._button-wrapper {
    margin-top: 24px !important;
}

/* Error styling */
#_form_24_ ._error-inner {
    background: rgba(255, 107, 107, 0.1) !important;
    border: 1px solid #ff6b6b !important;
    color: #dc2626 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    margin-top: 8px !important;
}

/* Thank you message styling */
#_form_24_ ._form-thank-you {
    color: #1a1a1a !important;
    text-align: center !important;
    padding: 20px !important;
    background: rgba(0, 255, 145, 0.1) !important;
    border: 1px solid rgba(0, 255, 145, 0.3) !important;
    border-radius: 8px !important;
}

.ticket-tier {
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-tier-main {
    font-size: clamp(4rem, 8vw, 6rem);
    line-height: 0.9;
}

.ticket-tier-sub {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}


.ticket-perks {
    list-style: none;
    margin-bottom: 32px;
    width: 75%;
}

.ticket-perks li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    line-height: 1.25;
    font-size: 1.3em;
}

.ticket-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.tickets-cta {
    text-align: center;
}

/* ===== VENUE SECTION ===== */
.venue {
    padding: 120px 0;
    background: #f8fafc;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.venue-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.venue-address {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.venue-info-section {
    margin-bottom: 32px;
}

.venue-info-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #374151;
}

.venue-info-section p {
    color: #6b7280;
    margin-bottom: 16px;
}

.hotel-list {
    list-style: none;
}

.hotel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.hotel-name {
    font-weight: 600;
    color: #374151;
}

.hotel-rate {
    color: #0092ff;
    text-decoration: none;
    font-weight: 500;
}

.hotel-rate:hover {
    text-decoration: underline;
}

.map-container {
    background: #e5e7eb;
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.125rem;
}

/* ===== PRESENTING SPONSORS SECTION ===== */
.presenting-sponsors {
    padding: 120px 0;
    background: #2d3748;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.08) 52%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.08) 52%, transparent 53%);
    background-size: 60px 60px, 40px 40px, 30px 30px, 30px 30px;
    background-position: 0 0, 30px 30px, 0 0, 0 0;
    color: white;
    position: relative;
}

.presenting-sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.8) 0%, rgba(26, 32, 44, 0.9) 100%);
    z-index: 1;
}

.presenting-sponsors > * {
    position: relative;
    z-index: 2;
}

.presenting-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 48px;
}

.presenting-sponsor-item {
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.presenting-sponsor-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
    border-color: #0092ff !important;
}

.presenting-sponsor-logo {
    width: 75%;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 24px;
}

.presenting-sponsor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.presenting-sponsor-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.presenting-sponsor-link {
    color: #00ff91;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.presenting-sponsor-link:hover {
    color: #0092ff;
    text-decoration: underline;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 120px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0092ff;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #0092ff;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 16px 32px 24px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.final-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.newsletter-signup {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-signup h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form input:focus {
    outline: 2px solid #0092ff;
}

/* ===== FLOATING CTA BUTTON ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0, 146, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.floating-cta-btn:hover::before {
    left: 100%;
}

.floating-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 146, 255, 0.6);
}

.floating-cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.floating-cta-btn:hover .floating-cta-arrow {
    transform: translateX(4px);
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 146, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 146, 255, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 146, 255, 0.4);
    }
}

/* Mobile responsive floating CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-cta-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 12px;
        right: 12px;
    }
    
    .floating-cta-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo-img {
    width: 280px;
    height: auto;
    margin-bottom: 16px;
}

.footer-logo p {
    color: #9ca3af;
    font-size: 1rem;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 800px;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    padding: 8px 16px;
    transition: color 0.3s ease;
    text-align: left;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* ===== FEATURED SPEAKER SECTION ===== */
.featured-speaker {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.speaker-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Swipe Hint Indicator */
.swipe-hint {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 146, 255, 0.95);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 146, 255, 0.4);
    animation: swipeHintPulse 2s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.swipe-hint.fade-out {
    opacity: 0;
}

.swipe-hint-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.swipe-hint-text {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.swipe-icon-left,
.swipe-icon-right {
    font-size: 1rem;
    animation: swipeIconBounce 1.5s ease-in-out infinite;
}

.swipe-icon-left {
    animation-delay: 0s;
}

.swipe-icon-right {
    animation-delay: 0.75s;
}

@keyframes swipeHintPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 146, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 146, 255, 0.6);
    }
}

@keyframes swipeIconBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-3px);
    }
}

.speaker-carousel-inner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.speaker-slide {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.speaker-slide.active {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    opacity: 1;
    transform: scale(1);
    align-items: center;
    min-height: 500px;
}

.speaker-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.1) 0%, rgba(0, 146, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.speaker-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.05) 0%, rgba(0, 146, 255, 0.05) 100%);
    z-index: 1;
}

.speaker-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-slide:hover .speaker-headshot {
    transform: scale(1.05);
}

.speaker-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.speaker-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.speaker-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.speaker-company {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

/* Spacing for multiple positions */
.speaker-company + .speaker-title {
    margin-top: 16px;
}

.speaker-tagline {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    padding-top: 16px;
    border-top: 2px solid #e5e7eb;
}

.speaker-session-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(0, 146, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speaker-session-info + .speaker-session-info {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 146, 255, 0.1);
}

.speaker-time {
    font-size: 1rem;
    font-weight: 600;
    color: #00ff91;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.speaker-time i {
    font-size: 0.875rem;
    color: #0092ff;
}

.speaker-session-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.speaker-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0092ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.speaker-bio-link:hover {
    color: #00ff91;
    gap: 12px;
}

.speaker-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.speaker-nav-btn {
    pointer-events: all;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #0092ff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speaker-nav-btn:hover {
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 146, 255, 0.3);
}

.speaker-nav-btn:focus {
    outline: 2px solid #0092ff;
    outline-offset: 2px;
}

.speaker-nav-btn:active {
    transform: scale(0.95);
}

.speaker-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.speaker-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.speaker-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.speaker-dot:hover {
    border-color: #0092ff;
    transform: scale(1.2);
}

.speaker-dot:focus {
    outline: 2px solid #0092ff;
    outline-offset: 2px;
}

.speaker-dot.active {
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    border-color: transparent;
    transform: scale(1.3);
}

.speaker-more-info {
    text-align: center;
    margin-top: 48px;
    display: none; /* Hidden on desktop by default */
}

.speaker-count-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.speaker-count-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff91 0%, #0092ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-right: 4px;
}

.speaker-cta {
    text-align: center;
    margin-top: 24px;
    display: none; /* Hidden on desktop by default */
}

/* Slide transition animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.speaker-slide.slide-in-right {
    animation: slideInFromRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-slide.slide-in-left {
    animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pause indicator */
.speaker-carousel.paused::after {
    content: '⏸';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    color: rgba(0, 146, 255, 0.6);
    z-index: 20;
    pointer-events: none;
}

/* Responsive design for speakers */
@media (max-width: 1024px) {
    .speaker-carousel {
        padding: 0 60px;
    }
    
    .speaker-content {
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .featured-speaker {
        padding: 80px 0;
    }
    
    .speaker-carousel {
        padding: 0 20px;
    }
    
    .speaker-slide.active {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .speaker-image-container {
        min-height: 400px;
        height: 400px;
    }
    
    .speaker-content {
        padding: 40px 32px;
    }
    
    .speaker-name {
        font-size: 2rem;
    }
    
    .speaker-title {
        font-size: 1.125rem;
    }
    
    .speaker-company {
        font-size: 1rem;
    }
    
    .speaker-tagline {
        font-size: 1rem;
    }
    
    .speaker-time {
        font-size: 0.9375rem;
    }
    
    .speaker-session-title {
        font-size: 1rem;
    }
    
    .swipe-hint {
        bottom: 80px;
        padding: 10px 20px;
    }
    
    .swipe-hint-text {
        font-size: 0.8125rem;
    }
    
    .speaker-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .speaker-controls {
        display: none; /* Hide nav buttons on mobile, use swipe instead */
    }
    
    .speaker-more-info {
        margin-top: 32px;
    }
    
    .speaker-count-text {
        font-size: 1rem;
    }
    
    .speaker-count-number {
        font-size: 1.25rem;
    }
    
    .speaker-cta {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .speaker-image-container {
        min-height: 320px;
        height: 320px;
    }
    
    .speaker-content {
        padding: 32px 24px;
        gap: 16px;
    }
    
    .speaker-name {
        font-size: 1.75rem;
    }
    
    .speaker-carousel {
        padding: 0 16px;
    }
    
    .speaker-dots {
        gap: 8px;
        margin-top: 32px;
    }
    
    .speaker-dot {
        width: 10px;
        height: 10px;
    }
}

/* All Speakers Grid */
.all-speakers-grid-container {
    margin-top: 48px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    max-height: 10000px;
}

.all-speakers-grid-container.visible {
    opacity: 1;
    max-height: 10000px;
}

.all-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    padding-top: 32px;
}

.speaker-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 146, 255, 0.2);
}

.speaker-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.1) 0%, rgba(0, 146, 255, 0.1) 100%);
    position: relative;
}

.speaker-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.speaker-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-card:hover .speaker-card-photo {
    transform: scale(1.1);
}

.speaker-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.speaker-card-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.speaker-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0092ff;
    margin: 0;
    line-height: 1.3;
}

.speaker-card-company {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Spacing for multiple positions in speaker cards */
.speaker-card-company + .speaker-card-title {
    margin-top: 12px;
}

.speaker-card-session {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(0, 146, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speaker-card-session + .speaker-card-session {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 146, 255, 0.08);
}

.speaker-card-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00ff91;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.speaker-card-time i {
    font-size: 0.75rem;
    color: #0092ff;
}

.speaker-card-session-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.speaker-card-tagline {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    flex: 1;
}

.speaker-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0092ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.speaker-card-link:hover {
    color: #00ff91;
    gap: 10px;
}

.speaker-card-link i {
    font-size: 0.75rem;
}

/* View All Button States */
#view-all-speakers-btn {
    position: relative;
    overflow: visible;
}

#view-all-speakers-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

#view-all-speakers-btn[aria-expanded="true"] .btn-arrow {
    transform: rotate(180deg);
}

/* Grid reveal animation */
@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.all-speakers-grid-container.visible .speaker-card {
    animation: fadeInGrid 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.all-speakers-grid-container.visible .speaker-card:nth-child(1) { animation-delay: 0.05s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(2) { animation-delay: 0.1s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(3) { animation-delay: 0.15s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(4) { animation-delay: 0.2s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(5) { animation-delay: 0.25s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(6) { animation-delay: 0.3s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(7) { animation-delay: 0.35s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(8) { animation-delay: 0.4s; }
.all-speakers-grid-container.visible .speaker-card:nth-child(n+9) { animation-delay: 0.45s; }

/* Responsive speaker grid */
@media (max-width: 1024px) {
    .all-speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    /* Show the View All Speakers button and info on mobile */
    .speaker-cta {
        display: block;
    }
    
    .speaker-more-info {
        display: block;
    }
    
    /* Hide the speakers grid by default on mobile */
    .all-speakers-grid-container {
        opacity: 0;
        max-height: 0;
    }
    
    /* Show when visible class is added */
    .all-speakers-grid-container.visible {
        opacity: 1;
        max-height: 10000px;
    }
    
    .all-speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }
    
    .speaker-card-image {
        height: 280px;
    }
    
    .speaker-card-content {
        padding: 20px;
    }
    
    .speaker-card-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .all-speakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .speaker-card-image {
        height: 320px;
    }
    
    .all-speakers-grid-container {
        margin-top: 32px;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .speaker-slide,
    .speaker-headshot,
    .speaker-nav-btn,
    .speaker-dot,
    .speaker-card,
    .all-speakers-grid-container {
        transition: none;
    }
    
    .speaker-slide.slide-in-right,
    .speaker-slide.slide-in-left {
        animation: none;
    }
    
    .all-speakers-grid-container.visible .speaker-card {
        animation: none;
    }
}

/* ===== EXPO FLOOR MAP SECTION ===== */
.expo-map {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.expo-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 145, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 146, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.expo-map > * {
    position: relative;
    z-index: 2;
}

.expo-map-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.expo-map-preview {
    background: white;
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 146, 255, 0.1);
    transition: all 0.3s ease;
}

.expo-map-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 146, 255, 0.15);
}

.map-preview-container {
    text-align: center;
    width: 100%;
    height: 100%;
}

.booth-map-preview {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booth-map-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 146, 255, 0.2);
}

.expo-map-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expo-map-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.expo-map-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

.expo-map-features {
    display: flex;
    margin-bottom: 16px;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.map-feature:hover {
    border-color: #0092ff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 146, 255, 0.1);
}

.map-feature i {
    color: #00ff91;
    font-size: 1.25rem;
}

.map-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.expo-map-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.map-download-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.map-download-note i {
    color: #0092ff;
    font-size: 1rem;
}

/* Responsive Expo Map */
@media (max-width: 1024px) {
    .expo-map-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .expo-map-preview {
        padding: 48px 32px;
    }
    
    .map-feature {
        flex: 1;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .expo-map {
        padding: 80px 0;
    }
    
    .expo-map-content {
        gap: 40px;
        margin-top: 48px;
    }
    
    .expo-map-preview {
        padding: 24px;
    }
    
    .expo-map-title {
        font-size: 1.75rem;
    }
    
    .expo-map-description {
        font-size: 1rem;
    }
    
    .map-feature {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .expo-map-preview {
        padding: 16px;
    }
    
    .expo-map-title {
        font-size: 1.5rem;
    }
}

/* ===== AGENDA SECTION ===== */
.agenda {
    padding: 120px 0;
    background: white;
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.agenda-tab {
    padding: 20px 40px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: -2px;
}

.agenda-tab-date {
    font-size: 0.875rem;
    font-weight: 400;
    color: #9ca3af;
}

.agenda-tab:hover {
    color: #0092ff;
}

.agenda-tab:focus {
    outline: 2px solid #0092ff;
    outline-offset: 2px;
}

.agenda-tab.active {
    color: #1f2937;
    border-bottom-color: #0092ff;
}

.agenda-tab.active .agenda-tab-date {
    color: #6b7280;
}

.agenda-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.agenda-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.agenda-schedule {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.agenda-item:first-child {
    padding-top: 0;
}

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

.agenda-item:hover {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 146, 255, 0.02) 50%, transparent 100%);
    padding-left: 24px;
    padding-right: 24px;
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 12px;
}

.agenda-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.agenda-time-primary {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.agenda-time-duration {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 4px;
}

.agenda-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.agenda-sponsor {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #0092ff;
    font-weight: 600;
    margin-top: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.08) 0%, rgba(0, 146, 255, 0.08) 100%);
    border-radius: 6px;
    width: fit-content;
}

.agenda-sponsor i {
    font-size: 0.875rem;
    color: #00ff91;
}

.agenda-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 4px;
}

.agenda-host {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #00ff91;
    font-weight: 600;
}

.agenda-host i {
    font-size: 0.875rem;
    color: #00ff91;
}

.agenda-host .host-name {
    color: #374151;
}

.agenda-speaker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #0092ff;
    font-weight: 500;
}

.agenda-speaker i {
    font-size: 0.875rem;
}

.agenda-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #6b7280;
}

.agenda-location i {
    font-size: 0.875rem;
}

.agenda-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.1) 0%, rgba(0, 146, 255, 0.1) 100%);
    color: #0092ff;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agenda-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 8px;
}

.agenda-cta {
    text-align: center;
    margin-top: 64px;
}

/* Responsive Agenda */
@media (max-width: 768px) {
    .agenda {
        padding: 80px 0;
    }
    
    .agenda-tabs {
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .agenda-tab {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .agenda-tab-date {
        font-size: 0.8125rem;
    }
    
    .agenda-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 0;
    }
    
    .agenda-item:hover {
        padding-left: 16px;
        padding-right: 16px;
        margin-left: -16px;
        margin-right: -16px;
    }
    
    .agenda-time {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .agenda-time-primary {
        font-size: 1.125rem;
    }
    
    .agenda-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .agenda-details {
        gap: 12px;
    }
    
    .agenda-sponsor {
        margin-top: 8px;
        margin-bottom: 4px;
    }
    
    .agenda-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
    }
    
    .agenda-description {
        margin-top: 12px;
    }
    
    /* Force all meta items to be visible */
    .agenda-meta .agenda-host,
    .agenda-meta .agenda-speaker,
    .agenda-meta .agenda-location,
    .agenda-meta .agenda-tag {
        display: inline-flex !important;
        width: auto !important;
    }
    
    .agenda-cta {
        margin-top: 48px;
    }
}

@media (max-width: 480px) {
    .agenda-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .agenda-tab {
        width: 100%;
        padding: 16px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .agenda-tab.active {
        border-bottom-color: transparent;
        border-left-color: #0092ff;
        background: rgba(0, 146, 255, 0.05);
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .agenda-panel,
    .agenda-item {
        transition: none;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Prevent horizontal overflow globally */
@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: clip;
        width: 100%;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent all sections from causing overflow */
    section {
        max-width: 100vw;
        overflow-x: clip;
        position: relative;
    }
    
    /* Allow agenda section to show all content */
    section.agenda {
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    .agenda-schedule,
    .agenda-panel {
        overflow: visible !important;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
    }
    
    /* Fix any elements that might cause overflow - use clip instead of hidden */
    .hero-content,
    .section-header,
    .university-content,
    .university-text,
    .university-stats,
    .pillars-grid,
    .tickets-grid,
    .venue-content,
    .faq-container,
    .giveaway-content,
    .sponsors-grid,
    .presenting-sponsors-grid,
    .all-speakers-grid,
    .agenda-schedule,
    .footer-content,
    .hero,
    .giveaway-cta-bar,
    .final-cta {
        max-width: 100%;
    }
    
    /* Only apply overflow-x to containers that actually need it */
    .giveaway-image-container,
    .speaker-carousel,
    .speaker-carousel-inner {
        overflow: hidden;
    }
    
    /* Ensure grid items don't overflow */
    .pillars-grid > *,
    .sponsors-grid > *,
    .tickets-grid > *,
    .presenting-sponsors-grid > *,
    .all-speakers-grid > * {
        max-width: 100%;
        min-width: 0;
    }
    
    /* Ensure agenda items show all content on mobile */
    .agenda-item,
    .agenda-time,
    .agenda-time-primary,
    .agenda-time-duration,
    .agenda-details,
    .agenda-meta,
    .agenda-sponsor,
    .agenda-host,
    .agenda-speaker,
    .agenda-location,
    .agenda-tag,
    .agenda-description,
    .agenda-title {
        max-width: 100% !important;
        overflow: visible !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    /* Ensure all agenda children are visible */
    .agenda-details,
    .agenda-details > *,
    .agenda-meta,
    .agenda-meta > * {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure sponsor, host, speaker, and location display properly */
    .agenda-sponsor,
    .agenda-host,
    .agenda-speaker,
    .agenda-location {
        display: inline-flex !important;
    }
    
    /* Prevent negative margins on mobile */
    .agenda-item:hover {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Fix any image containers */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .venue-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .presenting-sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo-img {
        width: 220px;
    }
    
    .footer-logo p {
        max-width: 100%;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Adjust breakpoint for navigation with more items */
@media (max-width: 1280px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .nav-cta {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
}

@media (max-width: 1150px) {
    .nav-links {
        gap: 14px;
    }
    
    .nav-link {
        font-size: 0.8125rem;
    }
    
    .nav-cta {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 1050px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-details {
        gap: 24px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo-img {
        max-width: 85vw;
    }
    
    .hero-countdown {
        gap: 16px;
    }
    
    .university-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .university-text {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .university-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .university-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-item {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 16px 12px;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr; /* 1 sponsor per row on mobile */
        gap: 30px;
        max-width: 100%;
    }
    
    .sponsor-logo {
        width: 100%;
        max-width: 250px;
        height: 120px;
    }
    
    .more-sponsors-text {
        font-size: 0.9rem;
        margin: 20px auto 12px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ticket-card.featured {
        transform: none;
    }
    
    .ticket-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .ticket-card {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }
    
    .ticket-card-left {
        text-align: left;
    }
    
    .ticket-perks {
        width: 100%;
    }
    
    /* Left align form elements on mobile */
    #_form_24_ ._form-title {
        text-align: left !important;
    }
    
    #_form_24_ ._html-code p {
        text-align: left !important;
    }
    
    #_form_24_ ._form-label {
        text-align: left !important;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo-img {
        width: 180px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-column a {
        padding: 8px 12px;
        font-size: 0.9375rem;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 12px 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr; /* Keep 1 per row on small mobile */
        gap: 16px;
    }
    
    .more-sponsors-text {
        font-size: 0.85rem;
        margin: 16px auto 10px;
    }
    
    .price-countdown {
        flex-direction: column;
        gap: 12px;
    }
    
    .pillar-item {
        padding: 32px 24px;
    }
    
    .ticket-card {
        padding: 32px 24px;
    }
    
    .presenting-sponsor-item {
        padding: 32px 20px;
    }
    
    .presenting-sponsor-logo {
        width: 90%;
        height: 80px;
    }
    
    .university-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.faq-question:focus,
.newsletter-form input:focus {
    outline: 2px solid #0092ff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-title {
        background: none;
        -webkit-text-fill-color: initial;
        color: #000;
    }
    
    .nav-logo-img {
        filter: none;
    }
}

/* Print styles */
@media print {
    .nav,
    .hero-countdown,
    .final-cta,
    .newsletter-signup {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .btn {
        border: 2px solid #000;
        color: #000;
        background: none;
    }
}

