/* 
   🎨 Design System: Neo-Brutalism
   Based on style.md
*/

:root {
    /* Colors */
    --color-bg: #FFFFFF;
    --color-text: #000000;
    --color-primary: #FFED4E;
    /* Yellow - Primary Buttons */
    --color-emphasis: #FF006E;
    /* Magenta - Emphasis */
    --color-accent: #00F0FF;
    /* Cyan - Hover/Accent */

    /* Borders & Shapes */
    --border-width: 4px;
    --border-width-thin: 2px;
    --border-style: solid;
    --border-color: #000000;
    --border-radius: 12px;

    /* Shadows */
    --shadow-offset: 8px;
    --shadow-offset-hover: 4px;
    --shadow-color: #000000;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Space Mono', monospace;

    /* Spacing */
    --spacing-container: 2rem;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    /* Add some padding top to account for sticky navbar if needed, 
       but since it's sticky with top: 20px, we might need some spacer or margin on main */
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-text);
}

/* 
   🧩 Navigation Bar 
   Style: The "Clean Line" (Option 1)
   - Bottom border only
   - 4px borders on buttons
   - Gradient Logo in Black Box
*/
.navbar {
    position: sticky;
    top: 0;
    /* Stick to very top now, as it's a full width bar */
    z-index: 1000;

    background-color: var(--color-bg);
    border-bottom: 4px solid var(--border-color);

    height: 80px;
    padding: 0 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: all 0.3s ease;
}

/* Logo: Code Comment Style */
.nav-brand {
    background-color: #000000;
    padding: 0.5rem 1rem;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
    /* Space between elements */
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* Gradient Text for VibeCoding */
    background: linear-gradient(90deg, var(--color-accent), var(--color-emphasis), var(--color-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    animation: shine 3s linear infinite;
}

.logo-comment {
    font-family: var(--font-body);
    color: #00F0FF;
    /* Cyan */
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-sub {
    font-family: var(--font-body);
    color: #FFFFFF;
    /* White for Chinese text */
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Nav Links Container */
.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Nav Buttons - Common Styles */
.nav-btn {
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;

    border: 4px solid var(--border-color);
    /* Requested: 4px border */
    border-radius: 8px;
    padding: 0.4rem 1.2rem;

    transition: all 0.1s ease;
    cursor: pointer;
    display: inline-block;
}

/* Button Colors */
.btn-yellow {
    background-color: var(--color-primary);
}

.btn-cyan {
    background-color: var(--color-accent);
}

.btn-magenta {
    background-color: var(--color-emphasis);
}

.btn-green {
    background-color: #39FF14;
}

/* Neon Green */
.btn-white {
    background-color: #FFFFFF;
}

/* State: Raised (Default/Inactive) */
.nav-btn.raised {
    box-shadow: 4px 4px 0px var(--shadow-color);
    transform: translate(0, 0);
}

.nav-btn.raised:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--shadow-color);
}

.nav-btn.raised:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

/* State: Pressed (Active Page) */
.nav-btn.pressed {
    box-shadow: none;
    transform: translate(4px, 4px);
    /* Optional: Change border color or style to indicate active? 
       For now, just the physical "pressed" state is enough. */
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

/* 
   🦸 Hero Section (Design B: The Split)
   - 50/50 Split Layout
   - Left: Content
   - Right: Visual/Countdown
*/
.hero-split {
    display: flex;
    min-height: calc(100vh - 80px);
    /* Full height minus navbar */
    border-bottom: 4px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* 
   🎟️ Ticket Style (Clean Semicircle)
*/
.ticket-base {
    display: flex;
    border: 4px solid var(--border-color);
    position: relative;
    transform: rotate(-2deg);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    /* Space below ticket */
    width: fit-content;
    z-index: 2;
}

.t-left {
    background: var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-right: 3px dashed var(--border-color);
    display: flex;
    align-items: center;
    position: relative;
}

.t-right {
    background: #FFFFFF;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.date-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-text);
}

.time-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--color-text);
    text-align: left;
}

/* Notches (Clean Semicircle) */
.notch-top {
    position: absolute;
    top: -4px;
    right: -10px;
    width: 16px;
    height: 10px;
    background: var(--color-bg);
    /* Matches hero background */
    border: 4px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 50px 50px;
    z-index: 10;
}

.notch-bottom {
    position: absolute;
    bottom: -4px;
    right: -10px;
    width: 16px;
    height: 10px;
    background: var(--color-bg);
    border: 4px solid var(--border-color);
    border-bottom: none;
    border-radius: 50px 50px 0 0;
    z-index: 10;
}

/* Position Variations */
.ticket-base.absolute {
    position: absolute;
    top: calc(2rem + 40px);
    left: 2rem;
    transform: rotate(-5deg);
    margin-bottom: 0;
    z-index: 20;
}

.ticket-ghost {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    border: 4px solid transparent;
    margin-bottom: 1.5rem;
    width: fit-content;
    height: 86px;
    /* Approximate height of the real ticket including border */
}

/* Left Content Area */
.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    border-right: 4px solid var(--border-color);
    background-color: var(--color-bg);
    z-index: 1;
}

/* Right Visual Area */
.hero-right {
    flex: 1;
    background-color: #000000;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    /* Dot Pattern Background */
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Typography */
.h1-huge {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Yellow Highlight Underline */
.h1-huge::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--color-primary);
    z-index: -1;
    transform: rotate(-1deg);
    opacity: 0.6;
    display: none;
    /* Disable default underline for this design */
}

/* Sticker Bomb Styles */
.highlight-word {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 15px;
    background: var(--color-accent);
    z-index: -1;
    opacity: 0.7;
}

/* Wrapper for VibeCoding to position sticker */
.vibe-wrapper {
    position: relative;
    display: inline-block;
}

.sticker {
    position: absolute;
    background: var(--color-emphasis);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    top: -20px;
    right: -40px;
    /* Adjusted for centered layout */
    transform: rotate(15deg);
    border: 2px solid white;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    font-family: var(--font-body);
    z-index: 10;
}

/* Manifesto List Styles */
.slogan-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    font-family: var(--font-body);
}

.slogan-list li {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center list items */
    gap: 10px;
    color: var(--color-text);
}

.slogan-list li::before {
    content: '>';
    color: var(--color-emphasis);
    font-weight: 900;
    font-family: var(--font-heading);
}

/* CTA Button (Big Yellow) */
.cta-hero {
    background-color: var(--color-primary);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border: 4px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 8px 8px 0 var(--border-color);
    cursor: pointer;
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-hero:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--border-color);
    background-color: #FFFFFF;
}

.cta-hero:active {
    transform: translate(8px, 8px);
    box-shadow: none;
}

/* Countdown Timer */
.countdown-label {
    font-family: var(--font-body);
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.countdown-display {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1.2;
    color: var(--color-primary);
    text-shadow: 4px 4px 0 var(--color-emphasis);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    row-gap: 0.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

/* DAYS 和 HRS 在第一行 */
.countdown-unit:nth-child(1),
.countdown-unit:nth-child(2) {
    flex-basis: calc(50% - 0.25rem);
}

/* MIN 和 SEC 在第二行 */
.countdown-unit:nth-child(3),
.countdown-unit:nth-child(4) {
    flex-basis: calc(50% - 0.25rem);
}

.countdown-number {
    font-size: 4.5rem;
    line-height: 1;
}

.countdown-unit .countdown-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    letter-spacing: 2px;
}

/* Status Badge */
.status-badge {
    background-color: var(--color-emphasis);
    /* Magenta */
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border: 4px solid #FFFFFF;
    transform: rotate(-2deg);
    box-shadow: 4px 4px 0 var(--color-accent);
}

/* 
   🎛️ Dual Mode Switcher (Sticky)
*/
.mode-switcher-container {
    position: relative;
    width: 100%;
    /* Full width for center alignment */
    padding: 0;
    margin-top: 2rem;
    background: transparent;
    z-index: 10;
    display: flex;
    /* Enable flex to center content */
    justify-content: center;
    /* Center the switcher */
}

.mode-switcher {
    display: flex;
    gap: 1rem;
}

.mode-btn {
    background: #FFFFFF;
    border: 4px solid #000000;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 4px 4px 0 #000000;
    transition: all 0.1s;
    color: var(--color-text);
}

.mode-btn.active {
    background: var(--color-accent);
    /* Cyan */
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000000;
    color: var(--color-text);
}

/* ==========================================
   📱 HERO SECTION RESPONSIVE DESIGN
   ========================================== */

/* Tablet Landscape (968px) */
@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 1.5rem;
        border-right: none;
        border-bottom: 4px solid var(--border-color);
    }

    .hero-right {
        padding: 3rem 1.5rem;
        min-height: 400px;
    }

    .h1-huge {
        font-size: 3rem;
    }

    .countdown-display {
        font-size: 3.5rem;
    }

    .mode-switcher-container {
        position: relative;
        width: 100%;
        padding: 1rem 1.5rem;
        margin-top: 1rem;
    }

    /* Hero Carousel adjustments */
    .carousel-slide {
        flex-direction: column;
        min-height: auto;
    }

    .carousel-controls {
        bottom: 1.5rem;
        padding: 0.3rem 0.5rem;
        border-width: 2px;
        box-shadow: 3px 3px 0 #000;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .hero-carousel {
        min-height: auto;
    }

    .hero-left {
        padding: 2.5rem 1.5rem 2rem;
    }

    .hero-right {
        padding: 2.5rem 1.5rem;
        min-height: 350px;
    }

    .h1-huge {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .slogan-list li {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .cta-hero {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        box-shadow: 6px 6px 0 var(--border-color);
        display: inline-block;
        width: auto;
    }

    .countdown-display {
        font-size: 2.8rem;
        max-width: 100%;
    }

    .countdown-number {
        font-size: 2.8rem;
    }

    .countdown-unit .countdown-label {
        font-size: 0.8rem;
    }

    .status-badge {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .carousel-controls {
        padding: 0.25rem 0.5rem;
        gap: 0.4rem;
        border-width: 2px;
        box-shadow: 3px 3px 0 #000;
    }

    .carousel-btn {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
        border-width: 1px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
        border-width: 1px;
    }

    /* Ticket base adjustments */
    .ticket-base.absolute {
        position: relative;
        top: auto;
        left: auto;
        transform: rotate(-3deg);
        margin-bottom: 1.5rem;
    }

    .ticket-ghost {
        display: none;
    }

    .sticker {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        top: -15px;
        right: -20px;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .hero-left {
        padding: 2rem 1rem 1.5rem;
    }

    .hero-right {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .h1-huge {
        font-size: 2rem;
        line-height: 1;
    }

    .slogan-list li {
        font-size: 0.9rem;
        gap: 8px;
    }

    .slogan-list {
        margin-bottom: 2rem;
    }

    .cta-hero {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        box-shadow: 5px 5px 0 var(--border-color);
        width: auto;
        max-width: 100%;
        min-width: fit-content;
    }

    .countdown-display {
        font-size: 2.2rem;
        gap: 0.3rem;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-unit .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .countdown-label:first-of-type {
        font-size: 1.1rem;
    }

    .status-badge {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .carousel-controls {
        bottom: 1rem;
        padding: 0.2rem 0.4rem;
        gap: 0.25rem;
        border-radius: 20px;
        border-width: 2px;
        box-shadow: 3px 3px 0 #000;
        transform: scale(0.5);
        transform-origin: center bottom;
    }

    .carousel-btn {
        width: 16px;
        height: 16px;
        font-size: 0.45rem;
        border-width: 1px;
    }

    .carousel-dot {
        width: 5px;
        height: 5px;
        border-width: 1px;
    }

    .carousel-dots {
        gap: 0.2rem;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .hero-left {
        padding: 1.5rem 0.8rem 1rem;
    }

    .hero-right {
        padding: 1.5rem 0.8rem;
        min-height: 260px;
    }

    .h1-huge {
        font-size: 1.7rem;
    }

    .highlight-word::after {
        height: 10px;
        bottom: 3px;
    }

    .slogan-list li {
        font-size: 0.85rem;
    }

    .cta-hero {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
        box-shadow: 4px 4px 0 var(--border-color);
        border-radius: 10px;
    }

    .countdown-display {
        font-size: 1.8rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-unit:nth-child(1),
    .countdown-unit:nth-child(2),
    .countdown-unit:nth-child(3),
    .countdown-unit:nth-child(4) {
        flex-basis: calc(50% - 0.2rem);
    }

    .ticket-base {
        transform: rotate(-2deg);
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    }

    .date-text {
        font-size: 1.1rem;
    }

    .time-text {
        font-size: 0.85rem;
    }

    .t-left,
    .t-right {
        padding: 0.6rem 1rem;
    }
}

/* --- Login Button Style: The Terminal --- */
.login-btn-terminal {
    background-color: #000000;
    color: #FFFFFF;
    /* White text */
    border: 4px solid #000000;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    /* For pseudo-element */
}

.login-btn-terminal:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 2px 2px 0 var(--shadow-color);
}

/* Blinking cursor effect */
.login-btn-terminal::after {
    content: '_';
    animation: blink 1s step-end infinite;
    margin-left: 4px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: var(--color-text);
    border-radius: 2px;
}

/* ==========================================
   📱 NAVBAR RESPONSIVE DESIGN
   ========================================== */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 1.5rem;
    }

    .nav-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }

    .nav-links {
        gap: 0.6rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        height: 70px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        border-bottom: 4px solid var(--border-color);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.8rem;
        box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .nav-btn.raised {
        box-shadow: 3px 3px 0px var(--shadow-color);
    }

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

    .nav-brand {
        padding: 0.4rem 0.8rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-comment {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.85rem;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0 0.8rem;
        height: 60px;
    }

    .nav-links {
        top: 60px;
        padding: 1rem;
        max-height: calc(100vh - 60px);
    }

    .nav-brand {
        padding: 0.3rem 0.6rem;
        gap: 4px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-comment {
        font-size: 0.85rem;
    }

    .logo-sub {
        font-size: 0.75rem;
        display: none;
        /* 極小螢幕隱藏中文副標題 */
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 3px;
    }

    .mobile-menu-btn {
        gap: 5px;
    }
}

/* 
   ℹ️ Info Card Component (The Big Card)
*/
.info-card-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.info-card {
    background: #FFFFFF;
    border: 4px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 12px 12px 0 var(--border-color);
    display: flex;
    overflow: hidden;
    transition: transform 0.2s;
}

.info-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 14px 14px 0 var(--border-color);
}

.card-header {
    background: var(--color-primary);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 4px solid var(--border-color);
    min-width: 200px;
}

.card-header h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 1.1;
}

.card-header .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-body {
    padding: 2rem;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-emphasis);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-value {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

/* ==========================================
   📱 INFO CARD RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .info-card-container {
        margin: 2.5rem auto;
        padding: 0 1rem;
    }

    .info-card {
        flex-direction: column;
        box-shadow: 8px 8px 0 var(--border-color);
    }

    .card-header {
        border-right: none;
        border-bottom: 4px solid var(--border-color);
        padding: 1.5rem;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
        min-width: auto;
    }

    .card-header .icon {
        margin-bottom: 0;
        font-size: 2rem;
    }

    .card-header h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    .card-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .info-label {
        font-size: 1rem;
    }

    .info-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .info-card-container {
        margin: 2rem auto;
        padding: 0 0.8rem;
    }

    .info-card {
        box-shadow: 6px 6px 0 var(--border-color);
        border-radius: 10px;
    }

    .card-header {
        padding: 1.2rem;
    }

    .card-header .icon {
        font-size: 1.8rem;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

    .card-body {
        padding: 1.2rem;
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        box-shadow: 5px 5px 0 var(--border-color);
    }

    .card-header {
        padding: 1rem;
        gap: 0.8rem;
    }

    .card-header .icon {
        font-size: 1.5rem;
    }

    .card-header h2 {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 1rem;
        gap: 1rem;
    }

    .info-label {
        font-size: 0.95rem;
    }

    .info-value {
        font-size: 1rem;
    }
}

/* 
   🌟 Selling Points Section (Feature Cards)
*/
.section-container {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    right: -10px;
    height: 15px;
    background: var(--color-primary);
    z-index: -1;
    transform: rotate(-1deg);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    border: 4px solid var(--border-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 8px 8px 0 var(--border-color);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 12px 12px 0 var(--border-color);
}

.f-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: #000000;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.f-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: var(--color-accent);
    padding: 5px 10px;
    border: 2px solid #000000;
    transform: rotate(-2deg);
    box-shadow: 2px 2px 0 #000000;
}

.f-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
}

/* ==========================================
   📱 FEATURE CARDS RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-container {
        margin: 4rem auto;
        padding: 0 1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-title::after {
        height: 12px;
    }

    .feature-card {
        padding: 1.5rem;
        box-shadow: 6px 6px 0 var(--border-color);
    }

    .f-icon {
        font-size: 3rem;
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .f-title {
        font-size: 1.2rem;
    }

    .f-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .section-container {
        margin: 3rem auto;
        padding: 0 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
    }

    .cards-container {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.2rem;
        box-shadow: 5px 5px 0 var(--border-color);
    }

    .f-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .f-title {
        font-size: 1.1rem;
        padding: 4px 8px;
    }

    .f-desc {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .section-container {
        margin: 2.5rem auto;
    }

    .section-title {
        font-size: 1.3rem;
        padding: 0;
    }

    .section-title::after {
        height: 10px;
        bottom: 3px;
    }

    .feature-card {
        padding: 1rem;
        box-shadow: 4px 4px 0 var(--border-color);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 8px 8px 0 var(--border-color);
    }

    .f-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .f-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .f-desc {
        font-size: 0.85rem;
    }
}

/* 
   🎁 Bonus Content Section (The Tech Grid)
*/
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tech-card {
    background: #000000;
    color: #FFFFFF;
    border: 4px solid #000000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    position: relative;
    box-shadow: 8px 8px 0 var(--color-accent);
    transition: transform 0.2s;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 13px 0 var(--color-accent);
}

.tech-header {
    border-bottom: 2px solid #333333;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.tech-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 900;
    text-transform: uppercase;
}

.tech-body {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.tech-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-weight: 700;
}

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

/* 
   ⏱️ Timeline Section (Schedule Table)
*/
.schedule-list {
    background: #FFFFFF;
    border: 4px solid var(--border-color);
    box-shadow: 12px 12px 0 var(--border-color);
}

.s-row {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    transition: background 0.2s;
}

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

.s-row:hover {
    background: var(--color-accent);
}

.s-time {
    width: 150px;
    padding: 1.5rem;
    border-right: 2px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
}

.s-content {
    flex: 1;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
}

.s-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .s-row {
        flex-direction: column;
    }

    .s-time {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding: 0.5rem;
        background: var(--color-primary);
        /* Highlight time on mobile */
    }

    .s-content {
        padding: 1rem;
    }
}

/* 
   💰 Pricing Section (The Ticket Stubs)
*/
.ticket-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ticket {
    display: flex;
    background: #FFFFFF;
    border: 4px solid var(--border-color);
    filter: drop-shadow(8px 8px 0 var(--border-color));
    transition: transform 0.2s;
}

.ticket:hover {
    transform: translateX(-5px);
}

.ticket-left {
    flex: 1;
    padding: 2rem;
    border-right: 4px dashed var(--border-color);
    position: relative;
}

.ticket-left::after {
    content: '';
    position: absolute;
    right: -12px;
    top: -4px;
    bottom: -4px;
    width: 20px;
    background: radial-gradient(circle, #f0f0f0 8px, transparent 10px);
    background-size: 20px 20px;
    background-repeat: repeat-y;
}

.ticket-right {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    padding: 1rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ticket.premium .ticket-right {
    background: var(--color-emphasis);
    color: #FFFFFF;
}

.t-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.t-title {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.t-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: #000000;
    color: #FFFFFF;
    padding: 0.2rem 1rem;
    transform: rotate(-2deg);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-emphasis);
    font-weight: 900;
}

/* ==========================================
   📱 TICKET PRICING RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .ticket {
        flex-direction: column;
    }

    .ticket-left {
        border-right: none;
        border-bottom: 4px dashed var(--border-color);
        padding: 1.5rem;
    }

    .ticket-left::after {
        display: none;
    }

    .ticket-right {
        width: 100%;
        writing-mode: horizontal-tb;
        padding: 1rem;
        letter-spacing: 2px;
    }

    .t-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .t-title {
        font-size: 1.6rem;
    }

    .t-price {
        font-size: 2rem;
    }

    .feature-list li {
        font-size: 1rem;
        padding-left: 1.2rem;
    }

    .ticket-container {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ticket-left {
        padding: 1.2rem;
    }

    .ticket-right {
        padding: 0.8rem;
        font-size: 1.2rem;
    }

    .t-title {
        font-size: 1.4rem;
    }

    .t-price {
        font-size: 1.8rem;
        padding: 0.15rem 0.8rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .ticket {
        filter: drop-shadow(5px 5px 0 var(--border-color));
    }

    .ticket-left {
        padding: 1rem;
    }

    .ticket-right {
        padding: 0.6rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .t-title {
        font-size: 1.2rem;
    }

    .t-price {
        font-size: 1.5rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }
}

/* 
   🏪 Venue Info Section (Clean Split)
*/
.venue-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #FFFFFF;
    border: 4px solid var(--border-color);
    padding: 3rem;
    box-shadow: 12px 12px 0 var(--border-color);
}

.vc1-info {
    flex: 1;
}

.vc1-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.vc1-details {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: var(--font-body);
}

.vc1-stack {
    flex: 1;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.polaroid-1 {
    position: absolute;
    width: 240px;
    background: #FFFFFF;
    padding: 10px 10px 40px 10px;
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.polaroid-1 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.p1-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: var(--color-primary);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 900;
    text-align: center;
    padding: 5px 0;
    border: 2px solid var(--border-color);
    font-size: 1rem;
}

.s1-p1 {
    transform: rotate(-5deg);
    z-index: 1;
}

.s1-p2 {
    transform: rotate(3deg);
    z-index: 2;
}

.s1-p3 {
    transform: rotate(-2deg);
    z-index: 3;
}

.vc1-stack:hover .s1-p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.vc1-stack:hover .s1-p2 {
    transform: rotate(10deg) translateX(30px);
}

.vc1-stack:hover .s1-p3 {
    transform: scale(1.05) rotate(0deg);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    max-width: 1000px;
    width: 100%;
    background: transparent;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    font-family: var(--font-heading);
}

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

.gallery-item {
    border: 4px solid #FFFFFF;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    padding: 0.5rem;
    text-align: center;
    font-family: var(--font-body);
}

/* ==========================================
   📱 VENUE & MODAL RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .venue-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        box-shadow: 8px 8px 0 var(--border-color);
    }

    .vc1-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .vc1-details {
        font-size: 1rem;
        line-height: 1.7;
    }

    .vc1-stack {
        width: 100%;
        height: auto;
        min-height: 220px;
    }

    .polaroid-1 {
        width: 200px;
    }

    .polaroid-1 img {
        height: 150px;
    }

    .p1-btn {
        font-size: 0.9rem;
    }

    /* Modal */
    .modal-overlay {
        padding: 1rem;
    }

    .modal-content {
        max-width: 100%;
    }

    .modal-close {
        top: -35px;
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-item {
        border-width: 3px;
    }

    .gallery-caption {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

@media (max-width: 576px) {
    .venue-container {
        padding: 1.2rem;
        box-shadow: 6px 6px 0 var(--border-color);
    }

    .vc1-title {
        font-size: 1.4rem;
    }

    .vc1-details {
        font-size: 0.95rem;
    }

    .vc1-stack {
        min-height: 180px;
    }

    .polaroid-1 {
        width: 180px;
        padding: 8px 8px 30px 8px;
    }

    .polaroid-1 img {
        height: 130px;
    }

    .p1-btn {
        font-size: 0.85rem;
        padding: 4px 0;
    }

    .modal-overlay {
        padding: 0.8rem;
    }

    .modal-close {
        top: -30px;
        font-size: 1.3rem;
    }

    .gallery-item {
        border-width: 2px;
    }

    .gallery-caption {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .venue-container {
        padding: 1rem;
        gap: 1.2rem;
        box-shadow: 5px 5px 0 var(--border-color);
    }

    .vc1-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .vc1-details {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .vc1-stack {
        min-height: 160px;
    }

    .polaroid-1 {
        width: 160px;
        padding: 6px 6px 25px 6px;
    }

    .polaroid-1 img {
        height: 110px;
    }

    .p1-btn {
        font-size: 0.8rem;
        bottom: 6px;
        left: 6px;
        right: 6px;
    }

    /* Reduce spread on mobile hover */
    .vc1-stack:hover .s1-p1 {
        transform: rotate(-10deg) translateX(-20px);
    }

    .vc1-stack:hover .s1-p2 {
        transform: rotate(7deg) translateX(20px);
    }

    .modal-overlay {
        padding: 0.5rem;
    }
}

/* 
   👨‍🏫 Instructor Info (Option 3: Editorial Style - Refined)
*/
.instructor-card-v3 {
    position: relative;
    padding: 3rem;
    border: 6px solid #000;
    background: #fff;
    margin-top: 2rem;
}

.v3-bg-deco {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--color-emphasis);
    /* Magenta (Swapped) */
    z-index: -1;
    border: 6px solid #000;
}

.v3-bg-deco.cyan {
    background: var(--color-accent);
}

/* New Layout: Top Container */
.v3-top-container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* New Layout: Bottom Container */
.v3-bottom-container {
    border-top: 2px dashed #000;
    padding-top: 12px;
}

.v3-image-wrapper {
    flex: 0 0 300px;
    position: relative;
}

.v3-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 4px solid #000;
    /* NO GRAYSCALE - Always Color */
    box-shadow: 8px 8px 0px #000;
    transition: all 0.3s ease;
    filter: grayscale(0%) !important;
    /* Force color */
}

.v3-image-wrapper:hover .v3-image {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--color-primary);
    /* Yellow Shadow (Swapped) */
}

.v3-text {
    flex: 1;
}

.v3-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-emphasis);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v3-label::before {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #000;
}

.v3-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    /* Adjusted size */
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.v3-name span {
    color: #fff;
    -webkit-text-stroke: 2px #000;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: -1;
}

.v3-role-badge {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--color-primary);
    display: inline-block;
    padding: 0.2rem 1rem;
    border: 3px solid #000;
    margin-bottom: 1.5rem;
    transform: skewX(-10deg);
}

.v3-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 4px solid #000;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

/* --- Badge Styles with Hover --- */
.info-badges-c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-c {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 3px solid #000;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    background: #fff;
    box-shadow: 4px 4px 0 #000;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    cursor: pointer;
    text-decoration: none;
    /* Ensure links don't have underline */
}

/* Hover Effects */
.badge-c:hover {
    transform: translate(-2px, -2px) scale(1.05);
    box-shadow: 6px 6px 0 #000;
    z-index: 10;
}

.badge-c.highlight {
    background: var(--color-primary);
    transform: rotate(-2deg);
}

.badge-c.highlight:hover {
    transform: rotate(-2deg) translate(-2px, -2px) scale(1.05);
    box-shadow: 6px 6px 0 #000;
}

.badge-c.accent {
    background: var(--color-accent);
    transform: rotate(2deg);
}

.badge-c.accent:hover {
    transform: rotate(2deg) translate(-2px, -2px) scale(1.05);
    box-shadow: 6px 6px 0 #000;
}

.badge-c.dark {
    background: #000;
    color: #fff;
    transform: rotate(-1deg);
}

.badge-c.dark:hover {
    transform: rotate(-1deg) translate(-2px, -2px) scale(1.05);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
}

.badge-icon {
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .v3-content {
        flex-direction: column;
        align-items: center;
    }

    .v3-image-wrapper {
        width: 100%;
        flex: none;
    }

    .v3-image {
        height: 300px;
    }

    .v3-name {
        font-size: 3rem;
    }
}

/* --- NEON BREATHER ANIMATION --- */
@keyframes neon-breath {
    0% {
        box-shadow: 0 0 5px #FF006E, 4px 4px 0 #000;
    }

    50% {
        box-shadow: 0 0 20px #FF006E, 4px 4px 0 #000;
    }

    100% {
        box-shadow: 0 0 5px #FF006E, 4px 4px 0 #000;
    }
}

/* --- Option D: Neon Breather Style --- */
.badge-c.neon-breather {
    background: #FF006E;
    /* Magenta Background */
    color: #fff;
    /* White Text */
    border: 3px solid #fff;
    /* White Border */
    animation: neon-breath 2s ease-in-out infinite;
    transform: rotate(0deg);
    /* Reset rotation if any */
}

.badge-c.neon-breather:hover {
    transform: translate(-2px, -2px) scale(1.05);
    /* Keep the neon-breath animation running, just add transform */
}

/* Ensure icon color matches text */
.badge-c.neon-breather .badge-icon {
    filter: grayscale(100%) brightness(200%);
    /* Make emoji/icon white-ish if possible, or just leave as is */
}

/* ==========================================
   📱 TEACHER CARD RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 900px) {
    .v3-top-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .v3-image-wrapper {
        width: 100%;
        flex: none;
    }

    .v3-image {
        height: 300px;
    }

    .v3-name {
        font-size: 3rem;
    }

    .instructor-card-v3 {
        padding: 2rem;
    }

    .v3-bg-deco {
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .instructor-card-v3 {
        padding: 1.5rem;
        border-width: 4px;
    }

    .v3-bg-deco {
        top: 15px;
        left: 15px;
        right: -12px;
        bottom: -12px;
        border-width: 4px;
    }

    .v3-image {
        height: 280px;
        box-shadow: 6px 6px 0px #000;
    }

    .v3-name {
        font-size: 2.5rem;
    }

    .v3-role-badge {
        font-size: 1rem;
        padding: 0.15rem 0.8rem;
    }

    .v3-desc {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .info-badges-c {
        gap: 0.8rem;
    }

    .badge-c {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        box-shadow: 3px 3px 0 #000;
    }
}

@media (max-width: 576px) {
    .instructor-card-v3 {
        padding: 1.2rem;
    }

    .v3-bg-deco {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

    .v3-top-container {
        gap: 1.5rem;
    }

    .v3-image {
        height: 250px;
        box-shadow: 5px 5px 0px #000;
    }

    .v3-label {
        font-size: 0.9rem;
    }

    .v3-label::before {
        width: 30px;
        height: 3px;
    }

    .v3-name {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .v3-role-badge {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .v3-desc {
        font-size: 0.95rem;
        padding-left: 0.8rem;
        border-left-width: 3px;
        margin-bottom: 1.5rem;
    }

    .v3-bottom-container {
        padding-top: 10px;
    }

    .info-badges-c {
        gap: 0.6rem;
    }

    .badge-c {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        border-width: 2px;
    }

    .badge-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instructor-card-v3 {
        padding: 1rem;
    }

    .v3-bg-deco {
        top: 8px;
        left: 8px;
        right: -8px;
        bottom: -8px;
        border-width: 3px;
    }

    .v3-image-wrapper:hover .v3-image {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0px var(--color-primary);
    }

    .v3-image {
        height: 220px;
        box-shadow: 4px 4px 0px #000;
        border-width: 3px;
    }

    .v3-name {
        font-size: 1.7rem;
    }

    .v3-name span {
        top: 2px;
        left: 2px;
    }

    .v3-role-badge {
        font-size: 0.9rem;
        padding: 0.1rem 0.6rem;
        border-width: 2px;
    }

    .v3-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .badge-c {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
        box-shadow: 2px 2px 0 #000;
    }

    .badge-c:hover {
        transform: translate(-1px, -1px) scale(1.03);
        box-shadow: 4px 4px 0 #000;
    }
}

/* 
   📍 Location Button (Added via Task: Design Location Button Interactions)
*/
.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: #000;
    background: #fff;
    border: 2px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 0 0 #000;
    /* Start flat */
    transition: all 0.2s ease;
    font-weight: 700;
    margin-top: 0.5rem;
    width: 100%;
    /* Make it fill the container width if needed, or use min-width */
    max-width: 100%;
}

.location-btn:hover {
    transform: translate(-4px, -4px);
    /* Float up */
    box-shadow: 4px 4px 0 #000;
    /* Shadow appears */
    background-color: #fff;
}

.location-btn:active {
    transform: translate(0, 0);
    box-shadow: none;
}

.location-btn-arrow {
    background: var(--color-emphasis);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid #000;
    transition: all 0.2s ease;
    flex-shrink: 0;
    /* Prevent arrow from shrinking */
}

.location-btn:hover .location-btn-arrow {
    background: var(--color-accent);
    color: #000;
}

/*
   ⏱️ Sticky Timeline (Option 2: Bold Badge)
   Added via Task: Implementing Sticky Timeline
   Updated: Web Component wrapper styles
*/
timeline-container {
    display: block;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.time-col {
    position: relative;
    height: 100%;
}



.sticky-time-bold {
    position: sticky;
    top: 100px;
    /* Adjusted for navbar (80px) + gap */
    background: #000;
    color: var(--color-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    padding: 1rem 0.5rem;
    text-align: center;
    border: 4px solid #000;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    z-index: 10;
    border-radius: 4px;
}

.event-card-bold {
    background: #fff;
    border: 4px solid #000;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 8px 8px 0 #000;
    transition: transform 0.2s;
}

.event-card-bold:hover {
    transform: translate(2px, 2px);
    box-shadow: 6px 6px 0 #000;
}

.event-card-bold h3 {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--color-primary);
    padding: 0.2rem 0.8rem;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
}

/* Sub-card styles for teaching content */
.sub-card {
    background: #f9f9f9;
    border: 2px solid #000;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
}

.sub-card h4 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--color-emphasis);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tag {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    padding: 0.2rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 0.5rem;
    border: 2px solid #000;
}

/* ==========================================
   📱 TIMELINE RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    timeline-container {
        margin: 3rem auto;
        padding: 0 1.5rem;
    }

    .timeline-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .sticky-time-bold {
        position: static;
        text-align: left;
        border-right: none;
        border-bottom: 4px solid #000;
        margin-bottom: 1rem;
        transform: none;
        width: fit-content;
        display: inline-block;
        font-size: 1.3rem;
        padding: 0.8rem 1rem;
    }

    .event-card-bold {
        padding: 1.5rem;
        box-shadow: 6px 6px 0 #000;
    }

    .event-card-bold h3 {
        font-size: 1.5rem;
        padding: 0.15rem 0.6rem;
    }

    .sub-card {
        padding: 1.2rem;
        margin-top: 0.8rem;
    }

    .section-title-box {
        font-size: 2rem;
        padding: 0.4rem 1.5rem;
        box-shadow: 6px 6px 0 #000;
        transform: rotate(3deg);
    }

    /* Lottery Card */
    .lottery-card-golden {
        padding: 1.5rem;
        box-shadow: 8px 8px 0 #000000;
    }

    .lottery-title {
        font-size: 1.6rem;
    }

    .lottery-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lottery-prize {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    timeline-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .timeline-row {
        margin-bottom: 2rem;
    }

    .sticky-time-bold {
        font-size: 1.2rem;
        padding: 0.6rem 0.8rem;
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    }

    .event-card-bold {
        padding: 1.2rem;
        box-shadow: 5px 5px 0 #000;
        border-radius: 10px;
    }

    .event-card-bold h3 {
        font-size: 1.3rem;
        box-shadow: 3px 3px 0 #000;
    }

    .event-desc p {
        font-size: 0.95rem;
    }

    .sub-card {
        padding: 1rem;
    }

    .sub-card h4 {
        font-size: 1.1rem;
    }

    .section-title-box {
        font-size: 1.6rem;
        padding: 0.3rem 1rem;
        margin-bottom: 2.5rem;
    }

    .lottery-card-golden {
        padding: 1.2rem;
        box-shadow: 6px 6px 0 #000000;
    }

    .lottery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 0.8rem;
    }

    .lottery-title {
        font-size: 1.4rem;
    }

    .lottery-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .lottery-inner {
        padding: 1rem;
    }

    .lottery-prize {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .timeline-row {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }

    .sticky-time-bold {
        font-size: 1.1rem;
        padding: 0.5rem 0.7rem;
    }

    .event-card-bold {
        padding: 1rem;
        box-shadow: 4px 4px 0 #000;
    }

    .event-card-bold h3 {
        font-size: 1.1rem;
        padding: 0.1rem 0.5rem;
        margin-bottom: 0.8rem;
    }

    .event-desc p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .sub-card {
        padding: 0.8rem;
        border-radius: 6px;
    }

    .sub-card h4 {
        font-size: 1rem;
        padding: 1px 6px;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.15rem 0.5rem;
    }

    .section-title-box {
        font-size: 1.4rem;
        padding: 0.25rem 0.8rem;
        box-shadow: 5px 5px 0 #000;
        margin-bottom: 2rem;
    }

    .lottery-card-golden {
        padding: 1rem;
        box-shadow: 5px 5px 0 #000000;
    }

    .lottery-title {
        font-size: 1.2rem;
    }

    .lottery-inner {
        padding: 0.8rem;
    }

    .lottery-inner::before {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
        top: -12px;
        right: 10px;
    }

    .lottery-prize {
        font-size: 1.1rem;
    }

    .lottery-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
}

/* 
   📦 Section Title - Box Style (Option 1)
   Added via Task: Implementing Timeline Section Title
*/
.section-title-box {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    background: var(--color-accent);
    padding: 0.5rem 2rem;
    border: 4px solid #000;
    box-shadow: 8px 8px 0 #000;
    margin-bottom: 4rem;

    /* Centering handled by parent flex container */
    transform: rotate(5deg);
}

/* 
   📝 Mission Briefing (The Ritual)
   Replaces the old Info Card for "Important Notes"
*/
.mission-card {
    background: #FFFFFF;
    border: 4px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 8px 8px 0 var(--shadow-color);
    overflow: hidden;
    margin: 0 auto;
    /* Center it if container allows */
    max-width: 1000px;
    /* Match other cards */
}

.mission-header {
    background: var(--color-primary);
    /* Yellow */
    padding: 1.5rem 2rem;
    border-bottom: 4px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-header h2 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.mission-header .sub-text {
    font-size: 1rem;
    margin-left: auto;
    font-family: var(--font-body);
    font-weight: 700;
}

.mission-body {
    padding: 2rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.check-box {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-color);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: background 0.2s;
}

.check-box:hover {
    background: #e0e0e0;
}

.check-box.checked::after {
    content: '✓';
    position: absolute;
    top: -6px;
    left: 2px;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-emphasis);
}

.item-content strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.item-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
}

/* ==========================================
   📱 MISSION CARD RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .mission-card {
        box-shadow: 6px 6px 0 var(--shadow-color);
    }

    .mission-header {
        padding: 1rem;
    }

    .mission-header h2 {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .mission-header .sub-text {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .mission-body {
        padding: 1.5rem;
    }

    .checklist-item {
        font-size: 1rem;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .check-box {
        width: 22px;
        height: 22px;
    }

    .item-content strong {
        font-size: 1.1rem;
    }

    .item-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .mission-card {
        box-shadow: 5px 5px 0 var(--shadow-color);
        border-radius: 10px;
    }

    .mission-header {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .mission-header h2 {
        font-size: 1.2rem;
        gap: 3px;
    }

    .mission-header .sub-text {
        font-size: 0.8rem;
    }

    .mission-body {
        padding: 1.2rem;
    }

    .checklist-item {
        font-size: 0.95rem;
        gap: 0.7rem;
        margin-bottom: 1rem;
    }

    .check-box {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .check-box.checked::after {
        font-size: 1.2rem;
        top: -5px;
        left: 1px;
    }

    .item-content strong {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .item-desc {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .mission-card {
        box-shadow: 4px 4px 0 var(--shadow-color);
    }

    .mission-header {
        padding: 0.7rem;
    }

    .mission-header h2 {
        font-size: 1.1rem;
    }

    .mission-body {
        padding: 1rem;
    }

    .checklist-item {
        font-size: 0.9rem;
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .check-box {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }

    .check-box.checked::after {
        font-size: 1.1rem;
        top: -5px;
        left: 0;
    }

    .item-content strong {
        font-size: 0.95rem;
    }

    .item-desc {
        font-size: 0.85rem;
    }
}

/*
   🌊 Timeline Flow (The Dashed Line)
   Note: Now handled inside timeline-container Web Component
*/

/*
   🎨 Colorful Sub-cards (Pop the Bonus)
   Added via Task: Event Details UI Improvements
*/
.sub-card.yellow {
    border-color: #000;
    box-shadow: 6px 6px 0 var(--color-primary);
    background: #fff;
}

.sub-card.yellow:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--color-primary);
}

.sub-card.yellow h4 {
    color: #000;
    background: var(--color-primary);
    display: inline-block;
    padding: 2px 8px;
    border: 2px solid #000;
}

.sub-card.cyan {
    border-color: #000;
    box-shadow: 6px 6px 0 var(--color-accent);
    background: #fff;
}

.sub-card.cyan:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--color-accent);
}

.sub-card.cyan h4 {
    color: #000;
    background: var(--color-accent);
    display: inline-block;
    padding: 2px 8px;
    border: 2px solid #000;
}

.sub-card.magenta {
    border-color: #000;
    box-shadow: 6px 6px 0 var(--color-emphasis);
    background: #fff;
}

.sub-card.magenta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--color-emphasis);
}

.sub-card.magenta h4 {
    color: #fff;
    background: var(--color-emphasis);
    display: inline-block;
    padding: 2px 8px;
    border: 2px solid #000;
}

/* Make map-link look like a button in these colorful cards */
.sub-card .map-link {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    border-bottom: 2px solid #000;
    color: #000;
    transition: all 0.2s;
}

.sub-card .map-link:hover {
    background: #000;
    color: #fff;
    padding: 0 5px;
}

/* 
   🗣️ Speaker Grid Layout (Option 3)
*/
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.speaker-card {
    background: #fff;
    border: 4px solid #000;
    padding: 1.5rem;
    box-shadow: 8px 8px 0 #000;
    margin-bottom: 2rem;
    transition: transform 0.2s;
}

.speaker-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--color-accent);
}

.speaker-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.speaker-avatar {
    width: 50px;
    height: 50px;
    background: #ddd;
    border: 2px solid #000;
    border-radius: 50%;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mini-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    background: #eee;
    border: 2px solid #000;
    border-radius: 4px;
}

/* --- Golden Ticket Lottery Section --- */
.lottery-card-golden {
    background-color: var(--color-primary);
    /* Polka dot pattern */
    background-image: radial-gradient(#F0DC00 20%, transparent 20%);
    background-size: 20px 20px;
    border: 4px solid #000;
    box-shadow: 12px 12px 0 #000;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin-bottom: 2rem;
    transition: transform 0.2s;
}

.lottery-card-golden:hover {
    transform: translate(-2px, -2px);
    box-shadow: 14px 14px 0 #000000;
}

.lottery-header {
    background: #000;
    padding: 1.2rem 2rem;
    border-bottom: 4px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.lottery-title {
    color: var(--color-primary);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 900;
}

.event-desc {
    padding: 2rem;
}

.lottery-inner {
    background: #FFF;
    border: 4px solid #000;
    border-radius: 8px;
    transform: rotate(-1deg);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Ribbon style tag */
.lottery-inner::before {
    content: 'GOLDEN TICKET';
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--color-emphasis);
    transform: rotate(5deg);
    box-shadow: 2px 2px 0 #000;
    border: 2px solid #000;
    color: #FFF;
    padding: 0.2rem 0.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
}

.lottery-prize {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    background: linear-gradient(120deg, transparent 0%, transparent 40%, var(--color-primary) 40%, var(--color-primary) 100%);
    display: inline-block;
    padding-right: 10px;
    margin: 0.5rem 0;
    font-family: var(--font-heading);
}

.lottery-tag {
    background: #000;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: var(--font-body);
    display: inline-block;
}




/* --- Speaker Section: Option 1 (Brutalist Stack) --- */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.speaker-card {
    border: 4px solid #000;
    border-radius: 12px;
    background: #fff;
    box-shadow: 8px 8px 0 #000;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.speaker-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #000;
}

.speaker-header {
    padding: 1.5rem;
    border-bottom: 4px solid #000;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9f9f9;
}

.speaker-avatar {
    width: 60px;
    height: 60px;
    border: 3px solid #000;
    border-radius: 50%;
    background-color: #ddd;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.speaker-info h4 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-weight: 900;
}

.speaker-info small {
    font-family: var(--font-body);
    font-weight: 700;
    color: #666;
    font-size: 0.9rem;
}

.speaker-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.speaker-topic {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
    font-family: var(--font-body);
}

.speaker-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.speaker-tag {
    background: #000;
    color: #fff;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    font-family: var(--font-body);
}

/* 
   🎟️ Ticket Variation B: The "System Alert" (Boxed Layout)
   Used for Git Version Control Session
*/
.ticket-alert {
    display: flex;
    background: #FFED4E;
    border: 4px solid #000;
    box-shadow: 8px 8px 0 #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 1.5rem;
    /* Match other cards spacing */
}

.ticket-alert:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 #000;
}

.ticket-alert .main-part {
    flex: 1;
    padding: 1.5rem;
    border-right: 4px dashed #000;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ticket-alert .stub-part {
    width: 60px;
    /* Slightly narrower for mobile optimization */
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    background: #000;
    color: #FFED4E;
}

/* Notches */
.ticket-alert .main-part::after,
.ticket-alert .main-part::before {
    content: '';
    position: absolute;
    right: -10px;
    width: 16px;
    height: 16px;
    background: var(--color-bg);
    /* Match body bg */
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 2;
}

.ticket-alert .main-part::before {
    top: -10px;
}

.ticket-alert .main-part::after {
    bottom: -10px;
}

/* Inner Alert Box */
.ticket-alert .alert-box {
    border: 2px solid #000;
    background: #FFF;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.ticket-alert .alert-icon {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 2rem;
    background: #FFED4E;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
}

.ticket-alert h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.ticket-alert .desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-text);
}

.ticket-alert .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
}

.ticket-alert .tag {
    background: #000;
    color: #FFED4E;
    padding: 2px 6px;
    font-size: 0.8rem;
}

/* ==========================================
   📱 TICKET ALERT & SPEAKER GRID RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .ticket-alert .stub-part {
        width: 45px;
        font-size: 1rem;
    }

    .ticket-alert .main-part {
        padding: 1.2rem;
    }

    .ticket-alert h3 {
        font-size: 1.2rem;
    }

    .ticket-alert .desc {
        font-size: 0.9rem;
    }

    .ticket-alert {
        box-shadow: 6px 6px 0 #000;
    }

    /* Speaker Grid */
    .speaker-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .speaker-card {
        box-shadow: 6px 6px 0 #000;
    }

    .speaker-header {
        padding: 1.2rem;
    }

    .speaker-avatar {
        width: 55px;
        height: 55px;
    }

    .speaker-info h4 {
        font-size: 1.1rem;
    }

    .speaker-body {
        padding: 1.2rem;
    }

    .speaker-topic {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ticket-alert .stub-part {
        width: 40px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .ticket-alert .main-part {
        padding: 1rem;
    }

    .ticket-alert .alert-box {
        padding: 0.8rem;
    }

    .ticket-alert .alert-icon {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        top: -12px;
        right: -8px;
    }

    .ticket-alert h3 {
        font-size: 1.1rem;
    }

    .ticket-alert .desc {
        font-size: 0.85rem;
    }

    .ticket-alert .footer-row {
        font-size: 0.8rem;
    }

    .ticket-alert .tag {
        font-size: 0.7rem;
        padding: 1px 5px;
    }

    .ticket-alert {
        box-shadow: 5px 5px 0 #000;
        border-radius: 10px;
    }

    /* Speaker Grid */
    .speaker-card {
        box-shadow: 5px 5px 0 #000;
        border-radius: 10px;
    }

    .speaker-header {
        padding: 1rem;
    }

    .speaker-avatar {
        width: 50px;
        height: 50px;
    }

    .speaker-info h4 {
        font-size: 1rem;
    }

    .speaker-info small {
        font-size: 0.8rem;
    }

    .speaker-body {
        padding: 1rem;
    }

    .speaker-topic {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .speaker-tag {
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .ticket-alert .stub-part {
        width: 35px;
        font-size: 0.8rem;
    }

    .ticket-alert .main-part::after,
    .ticket-alert .main-part::before {
        width: 12px;
        height: 12px;
        right: -8px;
    }

    .ticket-alert .main-part::before {
        top: -8px;
    }

    .ticket-alert .main-part::after {
        bottom: -8px;
    }

    .ticket-alert {
        box-shadow: 4px 4px 0 #000;
    }

    .ticket-alert h3 {
        font-size: 1rem;
    }

    .ticket-alert .desc {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Speaker Grid */
    .speaker-card {
        box-shadow: 4px 4px 0 #000;
    }

    .speaker-card:hover {
        transform: translate(-2px, -2px);
        box-shadow: 6px 6px 0 var(--color-accent);
    }

    .speaker-header {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .speaker-avatar {
        width: 45px;
        height: 45px;
    }

    .speaker-body {
        padding: 0.8rem;
    }

    .speaker-topic {
        font-size: 0.9rem;
    }

    .speaker-tags {
        gap: 0.4rem;
    }

    .speaker-tag {
        font-size: 0.7rem;
    }
}

/* ==========================================
   HERO CAROUSEL STYLES
   ========================================== */

.hero-carousel {
    position: relative;
    min-height: calc(100vh - 80px);
    border-bottom: 4px solid var(--border-color);
    overflow: hidden;
}

/* Slides Container */
.carousel-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

/* Individual Slide */
.carousel-slide {
    min-width: 100%;
    display: flex;
    min-height: calc(100vh - 80px);
    /* Ensure it matches hero-split height logic */
    overflow: hidden;
    position: relative;
}

/* Responsive adjustments for the carousel version of hero */
@media (max-width: 968px) {
    .carousel-slide {
        flex-direction: column;
        min-height: auto;
    }
}

/* ==========================================
   CAROUSEL CONTROLS
   ========================================== */



/* 
 * 方案 A v2: Controls Wrapper & Progress Bar
 */
.carousel-controls-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.carousel-controls {
    position: static;
    /* Removed absolute positioning as it's now wrapped */
    transform: none;
    margin-bottom: 0;
    /* Re-apply shared styles here just in case, but they usually cascade if class matches */
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.5rem;
    border: 4px solid #000;
    border-radius: 50px;
    box-shadow: 6px 6px 0 #000;
}

/* 進度條容器 */
.progress-container {
    width: 200px;
    height: 12px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
    position: relative;
}

/* 進度條填充 */
.progress-bar {
    height: 100%;
    background: var(--color-emphasis);
    /* Magenta */
    width: 0%;
}


.carousel-btn {
    width: 40px;
    height: 40px;
    border: 3px solid #000;
    background: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
    border-radius: 50%;
}

.carousel-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border: 3px solid #000;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: var(--color-emphasis);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--color-accent);
}

/* 手機版隱藏左右切換按鈕，改為觸控滑動 + 極簡進度條 (Plan 3) */
@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }

    /* 1. 重置 Wrapper 定位：貼齊黑色區塊頂部 (導覽列下方) */
    .carousel-controls-wrapper {
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        transform: none;
        padding: 0;
        gap: 0;
        align-items: stretch;
        /* 讓內容充滿寬度 */
        z-index: 200;
        /* 確保在最上層 */
    }

    /* 2. 隱藏標準控制項 (按鈕、圓點) */
    .carousel-controls {
        display: none !important;
    }

    /* 3. 進度條改為全寬、細條、貼底 */
    .progress-container {
        width: 100%;
        height: 6px;
        /* 手機版高度 */
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.2);
        /* 軌道顏色微透 */
        box-shadow: none;
        margin: 0;
    }

    /* 調整進度條顏色以適應深色背景 */
    .progress-bar {
        background: var(--color-emphasis);
    }
}

/* 
   📅 All Events Page Styles 
*/
.page-header {
    padding: 4rem 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    color: var(--color-text);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    right: -10px;
    height: 15px;
    background: var(--color-accent);
    z-index: -1;
    opacity: 0.6;
    transform: rotate(-1deg);
}

/* Section Styling */
.events-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text);
}

.section-label::after {
    content: '';
    flex: 1;
    height: 4px;
    background-color: #000;
}

/* GRID SYSTEM */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Desktop: 3 columns */
    gap: 2rem;
}

/* ==========================================
   📱 EVENTS GRID RESPONSIVE DESIGN
   ========================================== */

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

    .page-header {
        padding: 3rem 1.5rem 1.5rem;
    }

    .events-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-header {
        padding: 2.5rem 1rem 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-title::after {
        height: 12px;
    }

    .events-section {
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .section-label {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .event-card {
        box-shadow: 6px 6px 0px #000000;
    }

    .event-card:hover {
        transform: translate(-3px, -3px);
        box-shadow: 9px 9px 0px #000000;
    }

    .card-thumbnail {
        height: 180px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-cta {
        padding: 0.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 2rem 0.8rem 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .events-section {
        padding: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .section-label {
        font-size: 1.2rem;
        gap: 0.8rem;
    }

    .section-label::after {
        height: 3px;
    }

    .event-card {
        box-shadow: 5px 5px 0px #000000;
        border-radius: 10px;
    }

    .card-thumbnail {
        height: 160px;
        border-radius: 6px 6px 0 0;
    }

    .status-badge-card {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .card-content {
        padding: 1.2rem;
    }

    .card-date {
        font-size: 0.9rem;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .card-location {
        font-size: 0.85rem;
    }

    .card-cta {
        padding: 0.5rem;
        font-size: 0.9rem;
        box-shadow: 3px 3px 0 #000;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem 0.6rem 0.8rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-title::after {
        height: 10px;
        bottom: 3px;
    }

    .events-section {
        padding: 0.6rem;
    }

    .section-label {
        font-size: 1.1rem;
    }

    .event-card {
        box-shadow: 4px 4px 0px #000000;
    }

    .card-thumbnail {
        height: 140px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-date {
        font-size: 0.85rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-meta {
        gap: 0.8rem;
    }

    .card-cta {
        border-radius: 6px;
    }
}

/* CARD COMPONENT */
.event-card {
    background: #FFFFFF;
    border: 4px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 8px 8px 0px #000000;
    height: 100%;
    /* Equal height */
}

.event-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000000;
}

/* Card Thumbnail Area */
.card-thumbnail {
    height: 200px;
    background-color: #000;
    border-bottom: 4px solid #000;
    position: relative;
    overflow: hidden;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    /* Default color */
    transition: filter 0.2s;
}

.event-card:hover .card-thumbnail img {
    filter: grayscale(0%);
    /* Ensure color on hover */
}

/* Status Badge */
.status-badge-card {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border: 2px solid #000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 2px 2px 0 #000;
    transform: rotate(2deg);
    z-index: 2;
}

.status-hot {
    background-color: var(--color-emphasis);
    color: #fff;
}

.status-full {
    background-color: #FF0000;
    color: #fff;
}

.status-soon {
    background-color: #00F0FF;
    color: #000;
}

.status-past {
    background-color: #e0e0e0;
    color: #555;
    box-shadow: none;
    border-color: #555;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-date {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-emphasis);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--color-text);
}

.card-meta {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-location {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Button inside Card */
.card-cta {
    display: block;
    text-align: center;
    background: var(--color-primary);
    border: 3px solid #000;
    padding: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 900;
    text-decoration: none;
    color: #000;
    border-radius: 8px;
    box-shadow: 4px 4px 0 #000;
    transition: all 0.1s;
}

.card-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000;
    background: #fff;
}

.card-cta:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

/* Past Events Specific Styles */
.past-events-grid .event-card {
    box-shadow: 4px 4px 0px #000000;
    /* Smaller shadow */
    border-color: #333;
}

.past-events-grid .card-thumbnail img {
    filter: grayscale(100%);
}

.past-events-grid .event-card:hover .card-thumbnail img {
    filter: grayscale(0%);
}

.past-events-grid .card-title {
    color: #333;
}

.past-btn {
    background: #fff;
    color: #333;
    box-shadow: 2px 2px 0 #333;
    border-color: #333;
}

/* ==========================
   Speakers Page Styles
   ========================== */

/* Speakers Hero Section */
.speakers-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-bottom: var(--border-width) solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.speakers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 50px,
            rgba(0, 0, 0, 0.05) 50px,
            rgba(0, 0, 0, 0.05) 51px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 50px,
            rgba(0, 0, 0, 0.05) 50px,
            rgba(0, 0, 0, 0.05) 51px);
    pointer-events: none;
}

.speakers-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.speakers-hero .h1-huge {
    margin-bottom: 1.5rem;
}

.speakers-hero .hero-description {
    font-size: 1.25rem;
    font-family: var(--font-body);
    color: var(--color-text);
    margin-top: 1rem;
    line-height: 1.8;
}

/* Responsive Adjustments for Speakers Hero */
@media (max-width: 768px) {
    .speakers-hero {
        min-height: 300px;
        padding: 3rem 1.5rem;
    }

    .speakers-hero .h1-huge {
        font-size: 2.5rem;
    }

    .speakers-hero .hero-description {
        font-size: 1rem;
    }
}

/* --- Neo-Brutalism Form Styles (Appended) --- */

/* Form Input - The Hard Box */
.form-input {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    background-color: #FFFFFF;
    border: 4px solid var(--border-color);
    /* 4px solid black */
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

/* Focus State - High Contrast */
.form-input:focus {
    background-color: var(--color-primary);
    /* Yellow background on focus */
    box-shadow: 6px 6px 0 var(--border-color);
    /* Deep shadow */
    transform: translate(-2px, -2px);
    /* Pop up effect */
}

/* Form Label */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    /* Space Grotesk */
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--color-text);
}

/* Error Message */
.error-msg {
    display: block;
    color: var(--color-emphasis);
    /* Magenta */
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.5rem;
    min-height: 1.4em;
    /* Reserve space to prevent layout jump */
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 1.5rem;
}

/* Checkbox Styling (Custom-ish) */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: background 0.2s;
}

.checkbox-item:hover {
    background: #f0f0f0;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-emphasis);
    /* Magenta checkbox */
    border: 2px solid black;
}

/* Large Primary Button for Forms */
.btn-primary-large {
    width: 100%;
    max-width: 400px;
    padding: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    background-color: var(--color-primary);
    /* Yellow */
    color: var(--color-text);
    border: 4px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 6px 6px 0 var(--border-color);
    cursor: pointer;
    transition: all 0.1s ease;
}

.btn-primary-large:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--border-color);
    filter: brightness(1.1);
}

.btn-primary-large:active {
    transform: translate(6px, 6px);
    box-shadow: none;
}

/* ==========================================
   📱 FORM STYLES RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .desktop-only-grid {
        grid-template-columns: 1fr !important;
    }

    .page-container {
        padding: 0 1rem !important;
    }

    .form-input {
        font-size: 1rem;
        padding: 0.9rem;
    }

    .form-label {
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .btn-primary-large {
        font-size: 1.3rem;
        padding: 1rem;
        max-width: 100%;
    }

    .checkbox-item {
        font-size: 1rem;
        padding: 0.4rem;
    }
}

@media (max-width: 576px) {
    .page-container {
        padding: 0 0.8rem !important;
    }

    .form-input {
        font-size: 0.95rem;
        padding: 0.8rem;
        border-width: 3px;
        border-radius: 10px;
    }

    .form-input:focus {
        box-shadow: 4px 4px 0 var(--border-color);
        transform: translate(-1px, -1px);
    }

    .form-label {
        font-size: 0.95rem;
    }

    .error-msg {
        font-size: 0.85rem;
    }

    .btn-primary-large {
        font-size: 1.2rem;
        padding: 0.9rem;
        box-shadow: 5px 5px 0 var(--border-color);
        border-radius: 10px;
    }

    .btn-primary-large:hover {
        transform: translate(2px, 2px);
        box-shadow: 3px 3px 0 var(--border-color);
    }

    .checkbox-item {
        font-size: 0.95rem;
        padding: 0.3rem;
        gap: 8px;
    }

    .checkbox-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .form-input {
        font-size: 0.9rem;
        padding: 0.7rem;
        box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .btn-primary-large {
        font-size: 1.1rem;
        padding: 0.8rem;
        box-shadow: 4px 4px 0 var(--border-color);
        border-width: 3px;
    }

    .checkbox-item {
        font-size: 0.9rem;
        border-radius: 6px;
    }
}

/* ========================================
   🎯 Final CTA Section (Bottom of Page)
   ======================================== */

.final-cta-section {
    position: relative;
    padding: 4rem 2rem;
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--color-emphasis) 0%, var(--color-accent) 100%);
    border-top: 8px solid var(--border-color);
    border-bottom: 8px solid var(--border-color);
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    pointer-events: none;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content {
    background: #FFFFFF;
    padding: 3rem 2.5rem;
    border: 6px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 12px 12px 0 var(--border-color);
    text-align: center;
    position: relative;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.final-cta-description {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-bg);
    border: 4px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 4px 4px 0 var(--border-color);
    transition: all 0.2s ease;
    width: auto;
}

.cta-benefit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--border-color);
}

.benefit-icon {
    font-size: 1.8rem;
}

.benefit-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.cta-final-button {
    margin: 1rem auto 1.5rem;
    font-size: 1.8rem !important;
    padding: 1.5rem 2.5rem !important;
    box-shadow: 10px 10px 0 var(--border-color) !important;
    animation: pulse-glow 2s ease-in-out infinite;
    width: auto !important;
    display: inline-block !important;
}

.cta-final-button:hover {
    transform: translate(5px, 5px);
    box-shadow: 5px 5px 0 var(--border-color) !important;
    animation: none;
}

.cta-final-button:active {
    transform: translate(10px, 10px);
    box-shadow: none !important;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 10px 10px 0 var(--border-color), 0 0 0 0 rgba(255, 215, 0, 0);
    }

    50% {
        box-shadow: 10px 10px 0 var(--border-color), 0 0 20px 5px rgba(255, 215, 0, 0.4);
    }
}

.final-cta-note {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-emphasis);
    margin-top: 1rem;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }

    .final-cta-content {
        padding: 2.5rem 2rem;
        box-shadow: 8px 8px 0 var(--border-color);
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .final-cta-benefits {
        gap: 1.5rem;
    }

    .cta-benefit {
        padding: 0.8rem 1.2rem;
        box-shadow: 3px 3px 0 var(--border-color);
    }

    .benefit-text {
        font-size: 1rem;
    }

    .cta-final-button {
        font-size: 1.5rem !important;
        padding: 1.2rem 3rem !important;
        box-shadow: 8px 8px 0 var(--border-color) !important;
    }

    .final-cta-note {
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .final-cta-section {
        padding: 2.5rem 1rem;
        margin-top: 2rem;
    }

    .final-cta-content {
        padding: 2rem 1.5rem;
        box-shadow: 6px 6px 0 var(--border-color);
        border-radius: 15px;
    }

    .final-cta-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .final-cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .final-cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cta-benefit {
        width: auto;
        justify-content: center;
        padding: 0.7rem 1rem;
        box-shadow: 3px 3px 0 var(--border-color);
    }

    .benefit-icon {
        font-size: 1.5rem;
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    .cta-final-button {
        font-size: 1.3rem !important;
        padding: 1rem 1.5rem !important;
        box-shadow: 6px 6px 0 var(--border-color) !important;
        width: auto !important;
        max-width: none;
    }

    .cta-final-button:hover {
        transform: translate(3px, 3px);
        box-shadow: 3px 3px 0 var(--border-color) !important;
    }

    .cta-final-button:active {
        transform: translate(6px, 6px);
    }

    .final-cta-note {
        font-size: 0.95rem;
    }

    @keyframes pulse-glow {

        0%,
        100% {
            box-shadow: 6px 6px 0 var(--border-color), 0 0 0 0 rgba(255, 215, 0, 0);
        }

        50% {
            box-shadow: 6px 6px 0 var(--border-color), 0 0 15px 3px rgba(255, 215, 0, 0.4);
        }
    }
}

/* CTA Section Spacing */
.cta-section {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 4rem;
}

.cta-section .section-title {
    left: auto;
    transform: none;
}