/* Flexi IBM VGA True Font - Hosted on Cloudinary CDN */
@font-face {
    font-family: 'Flexi_IBM_VGA_True';
    src: url('https://res.cloudinary.com/dsyipwctv/raw/upload/v1765225330/Flexi_IBM_VGA_True_b7r5xb.woff2') format('woff2'),
         url('https://res.cloudinary.com/dsyipwctv/raw/upload/v1765225330/Flexi_IBM_VGA_True_krwqmi.woff') format('woff'),
         url('https://res.cloudinary.com/dsyipwctv/raw/upload/v1765225330/Flexi_IBM_VGA_True_jcgpki.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ABC Diatype Font - Hosted on Cloudinary CDN */
@font-face {
    font-family: 'ABC Diatype';
    src: url('https://res.cloudinary.com/dsyipwctv/raw/upload/v1765225330/ABCDiatype-Regular_mxgyxz.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #00FF41;
    --secondary-color: #00D4FF;
    --text-light: #DCDCDC;
    --text-dim: #888;
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
}

html {
    font-size: 1em; /* Base font size for em calculations */
}

body {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    background: #0d0d0d;
    color: var(--text-light);
    overflow-x: hidden;
    letter-spacing: 0.02em;
    font-size: 1em; /* 16px */
}

/* P5.js Canvas Background */
#generative-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

/* Hide P5.js canvas on mobile */
@media (max-width: 1024px) {
    #generative-canvas {
        display: none !important;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(55% - 40px);
    padding: 20px 40px;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

nav::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent,
        var(--primary-color),
        transparent
    );
}

/* MIT Logo in Nav - replaces //NAVIGATION */
.mit-logo-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.mit-logo-link:hover {
    opacity: 1;
}

.mit-logo-nav {
    height: 32px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .mit-logo-nav {
        height: 36px;
        width: auto;
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 1.25em;
    font-weight: normal;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    text-transform: uppercase;
}

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

/* Nav Title - HARD MODE in nav bar */
.nav-title {
    display: none;
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 1.25em;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-transform: uppercase;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
}

.nav-title.visible {
    display: block;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    overflow: visible;
}

.hamburger-menu.active {
    gap: 0;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
    position: relative;
}

.hamburger-menu:hover .hamburger-line {
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.8);
}

.hamburger-menu.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(0, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -14px;
    margin-top: -1px;
}

.hamburger-menu.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(0, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -14px;
    margin-top: -1px;
}

/* Split Layout */
.container {
    display: flex;
    height: 100vh;
    position: relative;
    z-index: 1;
}

/* Left Panel - Fixed */
.left-panel {
    width: 45%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(13,13,13,0.95) 100%);
    overflow: hidden;
}

/* Decorative Grid Background */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Corner Decorations */
.corner-decor {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.corner-decor.top-left {
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid rgba(0, 255, 65, 0.4);
    border-left: 2px solid rgba(0, 255, 65, 0.4);
}

.corner-decor.bottom-right {
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.4);
    border-right: 2px solid rgba(0, 255, 65, 0.4);
}

/* Technical UI Elements */
.tech-ui {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.625em;
    color: var(--primary-color);
    opacity: 0.6;
    z-index: 2;
}

.tech-ui.top-right {
    top: 30px;
    right: 30px;
    text-align: right;
}

.tech-ui.bottom-left {
    bottom: 30px;
    left: 30px;
}

.status-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.title {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 4.5em;
    letter-spacing: 0.13em;
    color: #DCDCDC;
    margin-bottom: 60px;
}

/* Hide mobile title on desktop */
.mobile-title {
    display: none;
}

/* Hide mobile MIT badge on desktop */
.mobile-mit-badge {
    display: none;
}

/* Hide mobile terminal on desktop */
.mobile-terminal {
    display: none;
}

/* Hide mobile elements on desktop */
.mobile-cta-button,
.mobile-tagline,
.mobile-event-details {
    display: none;
}

/* CAD Terminal */
.cad-terminal {
    width: 100%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.2);
    position: relative;
    z-index: 3;
}

.terminal-header {
    background: rgba(0, 255, 65, 0.1);
    padding: 12px 20px;
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 0.75em;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    position: relative;
    letter-spacing: 0.05em;
}

.terminal-header::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    box-shadow: 0 0 6px var(--primary-color);
    border-radius: 50%;
}

.terminal-menu {
    position: absolute;
    right: 10px;
    top: 10px;
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 0.625em;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: right;
    z-index: 15;
}

.terminal-menu div {
    margin-bottom: 2px;
}

.terminal-content {
    aspect-ratio: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.terminal-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 20;
    position: relative;
    transition: opacity 0.3s ease;
}

.terminal-image.transitioning {
    animation: zapOut 0.15s ease-in-out forwards;
}

.terminal-image.zapping-in {
    animation: zapIn 0.15s ease-in-out forwards;
}

/* Zapping Transition Overlay */
.transition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 25;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.transition-overlay.active {
    opacity: 1;
}

/* Electric Flash Effect - Neon Green Dot (hidden, no background) */
.transition-overlay::before {
    display: none;
}

/* Energy Discharge Lines (hidden, no background) */
.transition-overlay::after {
    display: none;
}

/* Zap Out Animation - Image shrinks to neon green dot */
@keyframes zapOut {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) contrast(1) drop-shadow(0 0 0 rgba(0, 255, 65, 0));
    }
    50% {
        opacity: 0.6;
        transform: scale(0.3);
        filter: brightness(3) contrast(2) drop-shadow(0 0 30px rgba(0, 255, 65, 1));
    }
    100% {
        opacity: 0;
        transform: scale(0);
        filter: brightness(5) contrast(3) drop-shadow(0 0 50px rgba(0, 255, 65, 1));
    }
}

/* Zap In Animation - Image expands from neon green dot */
@keyframes zapIn {
    0% {
        opacity: 0;
        transform: scale(0);
        filter: brightness(5) contrast(3) drop-shadow(0 0 50px rgba(0, 255, 65, 1));
    }
    50% {
        opacity: 0.6;
        transform: scale(0.3);
        filter: brightness(3) contrast(2) drop-shadow(0 0 30px rgba(0, 255, 65, 1));
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) contrast(1) drop-shadow(0 0 0 rgba(0, 255, 65, 0));
    }
}



/* Crosshairs */
.crosshair {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    z-index: 10;
}

.crosshair::before,
.crosshair::after {
    content: '';
    position: absolute;
    background: rgba(0, 255, 65, 0.3);
}

.crosshair::before {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.crosshair::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
}

.crosshair.tl {
    top: 20px;
    left: 20px;
}

.crosshair.br {
    bottom: 20px;
    right: 20px;
}

/* Measurement Lines */
.measure-line {
    position: absolute;
    background: rgba(0, 255, 65, 0.2);
    z-index: 10;
}

.measure-line.vertical {
    width: 1px;
    height: 60%;
    top: 20%;
    left: 15%;
}

.measure-line.horizontal {
    height: 1px;
    width: 60%;
    left: 20%;
    bottom: 15%;
}

.terminal-footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 12px 20px;
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 0.6875em;
    color: var(--primary-color);
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    position: relative;
    letter-spacing: 0.05em;
}

.terminal-footer::after {
    content: '>>>_';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Right Panel - Scrollable */
.right-panel {
    width: 55%;
    margin-left: 45%;
    padding: 100px 60px 60px 60px;
    min-height: 100vh;
    position: relative;
}

.right-panel::before {
    display: none;
}

section {
    margin-bottom: 120px;
    scroll-margin-top: 100px;
    position: relative;
}

section::before {
    content: attr(data-index);
    position: absolute;
    left: -40px;
    top: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.75em;
    color: rgba(0, 255, 65, 0.3);
    font-weight: 600;
}

.hero {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    display: none;
}

.mit-badge {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--text-light);
}

.tagline {
    font-size: 2em;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

.event-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 3.125em;
}

.detail-item {
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.detail-item .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.detail-item a {
    color: var(--text-light);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 65, 0.5);
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.detail-item a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-weight: normal;
    font-size: 1.25em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.cta-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.cta-button:hover::before,
.cta-button:hover::after {
    width: 40px;
    height: 40px;
}

#about .cta-button {
    margin-top: 3.125em;
}

#join .cta-button {
    margin-top: 3.125em;
    display: block;
    text-align: center;
}

/* Themes Marquee Section */
#themes {
    margin: 80px 0;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    background: rgba(0, 255, 65, 0.03);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
}

#themes h2 {
    margin-bottom: 40px;
}

#themes h2::after {
    display: none;
}

.themes-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.themes-words {
    display: inline-flex;
    gap: 60px;
    align-items: center;
    animation: marquee-scroll 20s linear infinite;
    white-space: nowrap;
}

.theme-word {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 3em;
    font-weight: 600;
    color: #DCDCDC;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.theme-word:hover {
    opacity: 1;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

#who .cta-button {
    margin-top: 3.125em;
}

h2 {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 2.25em;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 15px;
}

.coming-soon-text {
    color: #dcdcdc;
}

footer a {
    color: var(--text-dim);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

/* Semi-Footer Section */
.semi-footer {
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.semi-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.semi-footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.semi-footer-heading {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 2.25em;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.semi-footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.semi-footer-link {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    font-size: 1.05em;
    color: var(--text-light);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 65, 0.5);
    letter-spacing: 0.02em;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.semi-footer-link:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--text-dim);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    background: rgba(0, 255, 65, 0.03);
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.social-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

/* Discord Tooltip */
.discord-tooltip {
    position: relative;
    cursor: pointer;
}

.discord-tooltip::after {
    content: 'Will be shared with approved participants';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    font-size: 0.875em;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.discord-tooltip:hover::after,
.discord-tooltip.active::after {
    opacity: 1;
}

.discord-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2px;
    border: 5px solid transparent;
    border-top-color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.discord-tooltip:hover::before,
.discord-tooltip.active::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .semi-footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .semi-footer-heading {
        font-size: 1.75em;
    }
    
    .semi-footer-link {
        font-size: 1em;
    }
    
    .social-icons {
        gap: 15px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Code of Conduct Page */
.code-of-conduct-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.code-of-conduct-page h1 {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 3em;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 50px;
    text-align: center;
}

.coc-section {
    margin-bottom: 50px;
}

.coc-section h2 {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 2.25em;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    margin-top: 40px;
}

.coc-section h2:first-of-type {
    margin-top: 0;
}

.coc-section p {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.coc-section p strong {
    color: var(--text-light);
    font-weight: 600;
}

.coc-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.coc-list li {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    letter-spacing: 0.02em;
}

.coc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5em;
    line-height: 1;
}

.coc-list li strong {
    color: var(--text-light);
    font-weight: 600;
}

.coc-subsection {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 255, 65, 0.3);
}

.coc-subsection h3 {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.coc-section a {
    color: var(--text-light);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 65, 0.5);
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.coc-section a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}

@media (max-width: 1024px) {
    .code-of-conduct-page {
        padding: 40px 20px;
    }
    
    .code-of-conduct-page h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .coc-section h2 {
        font-size: 1.75em;
        margin-bottom: 20px;
    }
    
    .coc-section p,
    .coc-list li {
        font-size: 1em;
        line-height: 1.8;
    }
    
    .coc-subsection h3 {
        font-size: 1.25em;
    }
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

h3 {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif !important;
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-light);
    letter-spacing: 0.02em !important;
}

p {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif !important;
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 20px;
    letter-spacing: 0.02em !important;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.track-card {
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.track-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.track-card:hover::after {
    opacity: 1;
}

.track-card .corner-tech {
    position: absolute;
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.track-card .corner-tech.tl {
    top: 5px;
    left: 5px;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    border-left: 2px solid rgba(0, 212, 255, 0.3);
}

.track-card .corner-tech.br {
    bottom: 5px;
    right: 5px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    border-right: 2px solid rgba(0, 212, 255, 0.3);
}

.track-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 65, 0.05);
    transform: translateX(10px);
}

.track-card:hover .corner-tech {
    width: 30px;
    height: 30px;
    border-color: var(--primary-color);
}

.track-icon {
    width: 2em;
    height: 2em;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

.schedule-tabs {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 0;
}

.schedule-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-dim);
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 1.125em;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.schedule-tab:hover {
    color: var(--text-light);
    border-bottom-color: rgba(0, 255, 65, 0.5);
}

.schedule-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.schedule-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 40px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-time {
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-size: 0.875em;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.prize-card {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 15px 15px;
}

.prize-card .corner-tech {
    position: absolute;
    width: 15px;
    height: 15px;
}

.prize-card .corner-tech.tl {
    top: 5px;
    left: 5px;
    border-top: 2px solid rgba(0, 255, 65, 0.5);
    border-left: 2px solid rgba(0, 255, 65, 0.5);
}

.prize-card .corner-tech.br {
    bottom: 5px;
    right: 5px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.5);
    border-right: 2px solid rgba(0, 255, 65, 0.5);
}

.prize-amount,
.prize-card h3,
.prize-card p {
    position: relative;
    z-index: 1;
}

.track-card h3,
.prize-card h3 {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    letter-spacing: -0.08em;
}

.prize-amount {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.prize-blurred .prize-amount,
.prize-blurred h3,
.prize-blurred p {
    filter: blur(10px);
    user-select: none;
    pointer-events: none;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125em;
    font-weight: 600;
    color: var(--text-light);
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    letter-spacing: 0.02em;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question .faq-icon {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

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

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

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

.faq-answer p {
    margin-bottom: 0;
}

footer {
    margin-top: 100px;
    padding: 60px 0 40px 0;
    border-top: 2px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 0 80px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 1em;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-text {
    font-size: 0.95em;
    color: var(--text-dim);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-contact {
    font-size: 0.95em;
    color: var(--text-dim);
    margin-top: 10px;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 65, 0.5);
}

.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    padding-left: 80px;
    padding-right: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    font-size: 0.875em;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    /* Hide left panel on mobile */
    .left-panel {
        display: none;
    }
    
    nav {
        width: 100%;
        padding: 25px 20px;
        min-height: 70px;
    }
    
    .mit-logo-link {
        left: 20px;
    }
    
    .mit-logo-nav {
        height: 36px;
        width: auto;
    }
    
    nav::after {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    /* Hide nav title on mobile */
    .nav-title {
        display: none !important;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 100;
        border-left: 2px solid var(--primary-color);
        box-shadow: -5px 0 30px rgba(0, 255, 65, 0.2);
    }
    
    /* Add HARD MODE title inside hamburger menu */
    nav ul::before {
        content: 'HARD MODE';
        position: absolute;
        top: 30px;
        left: 30px;
        font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
        font-size: 1.8em;
        letter-spacing: 0.1em;
        color: var(--primary-color);
        text-transform: uppercase;
        text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 15px 20px;
        font-size: 1.5em;
        border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    }
    
    nav a:hover, nav a.active {
        background: rgba(0, 255, 65, 0.05);
        border-left: 3px solid var(--primary-color);
    }
    
    /* Mobile Title */
    .mobile-title {
        display: block;
        font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
        font-size: 4.5em;
        letter-spacing: 0.13em;
        color: #DCDCDC;
        text-align: center;
        margin: 70px auto 10px auto;
        padding: 0;
        text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
        width: 100%;
        max-width: 18em;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    /* Mobile MIT Badge - directly under HARD MODE - perfectly centered */
    .mobile-mit-badge {
        display: block;
        font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
        font-size: 1.5em;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: #dcdcdc;
        text-align: center;
        margin: 0 auto 20px auto;
        padding: 0;
        line-height: 1.4;
        width: 100%;
        max-width: 18em;
        box-sizing: border-box;
    }
    
    /* Hide regular mit-badge on mobile */
    .mit-badge {
        display: none;
    }
    
    /* Hide regular elements on mobile */
    .hero .tagline {
        display: none;
    }
    
    .hero .event-details {
        display: none;
    }
    
    .hero .cta-button {
        display: none;
    }
    
    /* Mobile CTA Button - under terminal */
    .mobile-cta-button {
        display: block !important;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 60px auto;
        padding: 18px 48px;
        background: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        text-decoration: none;
        font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
        font-size: 1.25em;
        font-weight: normal;
        letter-spacing: 0.05em;
        text-align: center;
        text-transform: uppercase;
        position: relative;
        transition: all 0.3s;
        box-sizing: border-box;
    }
    
    .mobile-cta-button:hover {
        background: var(--primary-color);
        color: #000;
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    }
    
    /* Center all CTA buttons on mobile */
    .cta-button {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile Tagline - 1.5em - keep together with date */
    .mobile-tagline {
        display: block !important;
        font-size: 1.5em;
        font-weight: 300;
        line-height: 1.3;
        margin: 0 auto 20px auto;
        color: var(--text-light);
        text-align: center;
        width: 100%;
        max-width: 300px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    /* Remove green underline from mobile tagline on mobile */
    .mobile-tagline::after {
        display: none !important;
    }
    
    /* Mobile Date - keep together with tagline */
    .mobile-event-details {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin: 0 auto 40px auto;
        width: 100%;
        max-width: 300px;
        padding: 0 20px;
        box-sizing: border-box;
        gap: 5px;
    }
    
    .mobile-event-details .detail-item {
        margin-bottom: 0;
    }
    
    /* Mobile Terminal - Sticky until title reaches nav */
    .mobile-terminal {
        display: block !important;
        position: sticky;
        top: 80px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px auto;
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid rgba(0, 255, 65, 0.5);
        border-radius: 8px;
        padding: 15px;
        z-index: 10;
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
        transition: position 0.3s ease;
    }
    
    /* Remove sticky when title is in nav */
    .mobile-terminal.scrolled {
        position: relative;
        top: 0;
    }
    
    .mobile-terminal-header {
        display: flex;
        justify-content: space-between;
        font-family: 'Courier New', monospace;
        font-size: 0.7em;
        color: var(--primary-color);
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0, 255, 65, 0.2);
        margin-bottom: 10px;
    }
    
    .mobile-terminal-content {
        position: relative;
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .mobile-terminal-image {
        width: 100%;
        max-width: 250px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
        transition: all 0.15s ease;
    }
    
    .mobile-terminal-image.transitioning {
        animation: zapOut 0.15s ease-in-out forwards;
    }
    
    .mobile-terminal-image.zapping-in {
        animation: zapIn 0.15s ease-in-out forwards;
    }
    
    .mobile-terminal-footer {
        font-family: 'Courier New', monospace;
        font-size: 0.7em;
        color: var(--text-dim);
        text-align: center;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 255, 65, 0.2);
    }
    
    .mobile-terminal-footer span {
        display: block;
        margin: 3px 0;
    }
    
    .mobile-coordinates {
        opacity: 0.7;
    }
    
    .right-panel {
        width: 100%;
        margin-left: 0;
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-heading {
        font-size: 0.9em;
    }
    
    .footer-text,
    .footer-contact,
    .footer-links a {
        font-size: 0.85em;
    }
    
    .hero {
        padding-top: 0;
        min-height: auto;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
    }
}


/* Who Section Cards */
#who .detail-item {
    margin-bottom: 3.125em;
}

.who-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 20px;
}

.who-title-box {
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.who-title {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    color: var(--text-light);
    letter-spacing: 0.05em;
    font-size: 1.5em;
}

.who-desc-box {
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.who-desc-box p {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    #themes {
        margin: 60px 0;
        padding: 40px 20px;
    }
    
    #themes h2 {
        font-size: 1.75em;
        margin-bottom: 30px;
    }
    
    .themes-marquee {
        height: 80px;
    }
    
    .theme-word {
        font-size: 2em;
    }
    
    .who-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .who-title-box,
    .who-desc-box {
        padding: 15px;
    }
    .who-title {
        font-size: 1em;
    }
}

/* Sponsors Section - Mystery Boxes */
.mystery-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mystery-box {
    background: rgba(0, 255, 65, 0.03);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystery-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.mystery-box:hover {
    border-color: rgba(0, 255, 65, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    transform: translateY(-5px);
}

.mystery-box-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.mystery-box-icon {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 4em;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
    animation: pulse-icon 2s ease-in-out infinite;
}

.mystery-box-text {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    font-size: 1.25em;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes pulse-icon {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .mystery-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .mystery-box {
        padding: 50px 20px;
        min-height: 180px;
    }
    .mystery-box-icon {
        font-size: 3em;
    }
    .mystery-box-text {
        font-size: 1.1em;
    }
}

@media (max-width: 640px) {
    .mystery-boxes-grid {
        grid-template-columns: 1fr;
    }
}

/* Hosts & Organizers Sections */
#organizers {
    padding-left: 0;
    padding-right: 0;
    margin-left: -60px;
    margin-right: -60px;
}

#organizers h2 {
    margin-left: 60px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    padding: 25px 12px;
    min-width: 0;
}

.person-photo {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    display: block;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.person-name {
    font-family: 'Flexi_IBM_VGA_True', 'Courier New', monospace;
    color: var(--text-light);
    font-size: 1.15em;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    width: 100%;
}

.desktop-break {
    display: inline;
}

.person-description {
    font-family: 'ABC Diatype', 'ABC Diatype Regular', 'abc-diatype', 'ABC-Diatype', sans-serif;
    color: var(--text-dim);
    font-size: 0.9em;
    line-height: 1.7;
    letter-spacing: 0.01em;
    width: 100%;
}

/* Larger displays - increase font sizes for organizers */
@media (min-width: 1920px) {
    .person-name {
        font-size: 1.25em;
        letter-spacing: 0.03em;
    }
    
    .person-description {
        font-size: 1.05em;
        line-height: 1.8;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 1024px) {
    .schedule-tabs {
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .schedule-tab {
        font-size: 1em;
        padding: 12px 20px;
        flex: 1;
        min-width: calc(33.333% - 4px);
    }
    
    .schedule-timeline {
        padding-left: 30px;
        margin-top: 20px;
    }
    
    #organizers {
        margin-left: 0;
        margin-right: 0;
    }
    
    #organizers h2 {
        margin-left: 0;
    }
    
    .people-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 0;
    }
    .person-photo {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 1 / 1;
    }
    .person-name {
        font-size: 1.1em;
    }
    .person-description {
        font-size: 0.9em;
        line-height: 1.8;
    }
    
    .desktop-break {
        display: none;
    }
}

