/* ===================================
   CSS Custom Properties (Design Tokens)
   =================================== */
:root {
    /* Colors */
    --color-primary: #FF6B35;
    --color-primary-dark: #E55A2B;
    --color-secondary: #FFD23F;
    --color-secondary-dark: #E5BC38;

    /* Morning section - warm */
    --color-morning-bg: #FFF5EB;
    --color-morning-accent: #FFE4CC;

    /* Afternoon section - cool */
    --color-afternoon-bg: #E8F6F8;
    --color-afternoon-accent: #B8E4EA;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-light: #F8F9FA;
    --color-gray-100: #F1F3F4;
    --color-gray-200: #E8EAED;
    --color-gray-300: #DADCE0;
    --color-gray-500: #9AA0A6;
    --color-gray-700: #5F6368;
    --color-dark: #202124;

    /* Typography */
    --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: var(--color-dark);
    box-shadow: 0 4px 14px rgba(255, 210, 63, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 63, 0.5);
}

.btn-secondary.btn-alt {
    background: linear-gradient(135deg, #5AC8E0 0%, #3DB8D3 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(90, 200, 224, 0.4);
}

.btn-secondary.btn-alt:hover {
    box-shadow: 0 6px 20px rgba(90, 200, 224, 0.5);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-lg);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #4B2D7F 0%, #6B3FA0 50%, #FF6B35 100%);
    text-align: center;
    padding: var(--space-8);
    padding-top: 280px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260px;
    background: url('assets/hero_background.png') center top / contain no-repeat;
    background-color: white;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-date {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.hero-info {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info-label {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #FFFFFF !important;
}

.hero-info-value {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: #FFFFFF !important;
}

.hero-info-sub {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85) !important;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.btn-hero-morning,
.btn-hero-afternoon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-xl);
    font-family: var(--font-family);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    min-width: 200px;
}

.btn-hero-morning {
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF8C5A 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.5);
}

.btn-hero-morning:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-hero-afternoon {
    background: linear-gradient(135deg, #5AC8E0 0%, #3DB8D3 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(90, 200, 224, 0.5);
}

.btn-hero-afternoon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(90, 200, 224, 0.6);
}

/* ===================================
   Event Poster Section
   =================================== */
.poster-section {
    background: var(--color-white);
    padding: var(--space-8) 0;
    text-align: center;
}

.event-poster {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.btn-label {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.btn-sublabel {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-top: var(--space-1);
}

/* ===================================
   Section Base Styles
   =================================== */
section {
    padding: var(--space-16) 0;
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-8);
    color: var(--color-dark);
}

.section-lead {
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--color-gray-700);
    margin-bottom: var(--space-8);
}

/* ===================================
   Emotional Proof Section
   =================================== */
.emotion-section {
    background: var(--color-light);
    text-align: center;
}

.emotion-heading {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    margin-bottom: var(--space-10);
    color: var(--color-dark);
}

.emotion-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.emotion-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.emotion-image:hover {
    transform: scale(1.02);
}

.emotion-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ===================================
   Morning Section (Warm Colors)
   =================================== */
.morning-section {
    background: linear-gradient(180deg, var(--color-morning-bg) 0%, var(--color-morning-accent) 100%);
    text-align: center;
    position: relative;
}

.morning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.morning-section .section-title {
    color: var(--color-primary-dark);
}

/* ===================================
   Afternoon Section (Cool Colors)
   =================================== */
.afternoon-section {
    background: linear-gradient(180deg, var(--color-afternoon-bg) 0%, var(--color-afternoon-accent) 100%);
    text-align: center;
    position: relative;
}

.afternoon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5AC8E0, #3DB8D3);
}

.afternoon-section .section-title {
    color: #2A9BB5;
}

/* ===================================
   Event List
   =================================== */
.event-list {
    max-width: 500px;
    margin: 0 auto var(--space-8);
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
}

.event-item:hover {
    transform: translateX(4px);
}

.event-icon {
    font-size: var(--font-size-2xl);
}

.event-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

/* ===================================
   Reassurance Note
   =================================== */
.reassurance-note {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.reassurance-note-alt {
    background: linear-gradient(135deg, #5AC8E0 0%, #3DB8D3 100%);
}

.note-icon {
    font-size: var(--font-size-lg);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: var(--color-white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-4);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: var(--color-light);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.faq-question:hover {
    background: var(--color-gray-100);
    transform: translateX(4px);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    padding-left: calc(var(--space-6) + 32px + var(--space-4));
    color: var(--color-gray-700);
    line-height: 1.8;
}

.faq-icon-a {
    background: #4CAF50;
    width: 28px;
    height: 28px;
    font-size: var(--font-size-xs);
}

/* ===================================
   Event Details Section
   =================================== */
.details-section {
    background: var(--color-light);
}

.details-list {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.details-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-gray-200);
}

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

.details-item dt {
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--font-size-sm);
}

.details-item dd {
    color: var(--color-dark);
}

.details-address {
    font-size: var(--font-size-sm);
    color: var(--color-gray-700);
}

.details-notice-inline {
    display: inline-block;
    margin-top: var(--space-2);
    font-size: var(--font-size-sm);
    color: #8B4513;
    font-weight: 600;
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.map-container iframe {
    display: block;
    border-radius: var(--radius-lg);
}

.map-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: opacity var(--transition-fast);
}

.map-link:hover {
    opacity: 0.8;
}

/* ===================================
   Timetable (Inline in Details)
   =================================== */
.details-item-full {
    grid-template-columns: 1fr !important;
}

.details-item-full dt {
    margin-bottom: var(--space-3);
}

.timetable-inline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--space-3);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.timetable-row {
    display: flex;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    transition: background var(--transition-fast);
}

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

.timetable-row:hover {
    background: var(--color-gray-100);
}

.timetable-time {
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--color-dark);
    min-width: 110px;
    flex-shrink: 0;
    font-feature-settings: "tnum";
}

.timetable-event {
    font-weight: 500;
    font-size: var(--font-size-base);
    color: var(--color-dark);
}

/* Morning events - text color only */
.timetable-morning .timetable-event {
    color: var(--color-primary);
    font-weight: 600;
}

/* Afternoon events - text color only */
.timetable-afternoon .timetable-event {
    color: #3DB8D3;
    font-weight: 600;
}

/* Break time */
.timetable-break .timetable-event {
    color: var(--color-gray-700);
}

/* Special event (lottery) */
.timetable-special .timetable-event {
    color: var(--color-dark);
    font-weight: 700;
}

/* Details Notice & Organizer Info */
.details-notice {
    color: #8B4513;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--space-6);
    text-align: center;
}

.organizer-info {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gray-200);
    font-size: var(--font-size-sm);
    color: var(--color-gray-700);
    line-height: 2;
}

.organizer-info strong {
    color: #8B4513;
}

/* ===================================
   Prizes Section
   =================================== */
.prizes-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFECB3 100%);
    text-align: center;
}

.prizes-lead {
    font-size: var(--font-size-lg);
    color: var(--color-gray-700);
    margin-bottom: var(--space-10);
}

.prizes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 600px;
    margin: 0 auto;
}

.prize-card {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: transform var(--transition-base);
}

.prize-card:hover {
    transform: translateY(-4px);
}

.prize-card-featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: var(--color-white);
}

.prize-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
}

.prize-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.prize-name {
    font-size: var(--font-size-xl);
    font-weight: 900;
    margin-bottom: var(--space-2);
}

.prize-desc {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* ===================================
   Vision Section
   =================================== */
.vision-section {
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}

.vision-section .section-title {
    color: var(--color-white);
}

.vision-headline {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
    color: var(--color-secondary);
}

.vision-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
}

.vision-content p {
    margin-bottom: var(--space-4);
}

.vision-message {
    font-size: var(--font-size-xl);
    font-weight: 900;
    color: var(--color-primary);
    margin-top: var(--space-8);
}

/* ===================================
   Sponsors Section
   =================================== */
.sponsors-section {
    background: var(--color-white);
    text-align: center;
}

.sponsors-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-6);
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.sponsor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    color: var(--color-gray-500);
    font-size: var(--font-size-sm);
    border: 2px dashed var(--color-gray-300);
}

.sponsors-support {
    color: var(--color-gray-700);
    font-size: var(--font-size-sm);
}

/* ===================================
   Footer CTA
   =================================== */
.footer-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
    padding: var(--space-20) 0;
}

.footer-cta-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.btn-footer-morning,
.btn-footer-afternoon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-xl);
    font-family: var(--font-family);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    min-width: 200px;
    background: var(--color-white);
}

.btn-footer-morning {
    color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-footer-morning:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-footer-afternoon {
    color: #3DB8D3;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-footer-afternoon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Appeal Section
   =================================== */
.appeal-section {
    background: var(--color-white);
    text-align: center;
}

.appeal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.appeal-card {
    background: var(--color-light);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.appeal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.appeal-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-4);
}

.appeal-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-dark);
}

.appeal-card p {
    color: var(--color-gray-700);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

/* ===================================
   Past Event Photos Section
   =================================== */
.past-event-section {
    background: var(--color-light);
    text-align: center;
}

.past-event-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.past-event-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.past-event-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Competition Cards
   =================================== */
.competition-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto var(--space-8);
}

.competition-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.competition-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.competition-icon {
    font-size: var(--font-size-2xl);
}

.competition-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-dark);
}

.competition-desc {
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-3);
}

.competition-tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.afternoon-section .competition-tag {
    background: #3DB8D3;
}

.competition-highlight {
    background: var(--color-light);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    color: var(--color-dark);
    margin-top: var(--space-3);
}

/* ===================================
   Guest Wrestlers Section
   =================================== */
.wrestlers-section {
    background: linear-gradient(135deg, #2D1B4E 0%, #4B2D7F 100%);
    color: var(--color-white);
    text-align: center;
}

.wrestlers-section .section-title {
    color: var(--color-white);
}

.wrestlers-section .section-lead {
    color: rgba(255, 255, 255, 0.9);
}

.wrestlers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 600px;
    margin: 0 auto var(--space-6);
}

.wrestler-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wrestler-photo {
    width: 100%;
    max-width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto var(--space-4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.wrestler-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.wrestler-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.wrestler-rank {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.wrestler-shikona {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-3);
}

.wrestler-stats {
    margin-bottom: var(--space-4);
}

.wrestler-stats p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.wrestler-link {
    display: inline-block;
    color: var(--color-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.wrestler-link:hover {
    opacity: 0.8;
}

.wrestlers-note {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: var(--font-size-lg);
}

/* ===================================
   Mission Section
   =================================== */
.mission-section {
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-16) 0;
}

.mission-title {
    color: var(--color-white) !important;
}

.mission-content {
    max-width: 700px;
    margin: 0 auto;
}

.mission-line {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    margin-bottom: var(--space-4);
}

.mission-catchcopy {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-white);
    margin-top: var(--space-8);
}

.mission-catchcopy .highlight {
    color: var(--color-primary);
    font-size: var(--font-size-3xl);
}

/* Purpose Accordion */
.purpose-accordion {
    margin: var(--space-10) auto 0;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
}

.purpose-summary {
    padding: var(--space-4) var(--space-6);
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.purpose-summary::-webkit-details-marker {
    display: none;
}

.purpose-summary::after {
    content: "▼";
    font-size: var(--font-size-sm);
    transition: transform var(--transition-normal);
}

.purpose-accordion[open] .purpose-summary::after {
    transform: rotate(180deg);
}

.purpose-content {
    padding: 0 var(--space-6) var(--space-6);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.purpose-content h4 {
    color: var(--color-secondary);
    font-size: var(--font-size-lg);
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
}

.purpose-content h4:first-child {
    margin-top: 0;
}

.purpose-indent {
    text-indent: 1em;
}

.purpose-content ol,
.purpose-content ul {
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}

.purpose-mission {
    list-style: none;
    padding-left: 0;
}

.purpose-mission li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: var(--space-2);
}

.purpose-mission li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.purpose-content li {
    margin-bottom: var(--space-2);
}

/* CTA Note */
.cta-note {
    margin-top: var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--color-white);
    opacity: 0.85;
}

.cta-note-footer {
    color: var(--color-white);
    opacity: 0.9;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-gray-500);
    text-align: center;
    padding: var(--space-10) 0 var(--space-6);
    font-size: var(--font-size-sm);
}

.footer-organizer {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 2;
    text-align: left;
}

.footer-organizer strong {
    color: var(--color-white);
}

.footer-copyright {
    color: var(--color-gray-500);
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet and up */
@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-date {
        font-size: var(--font-size-2xl);
    }

    .hero-buttons {
        flex-direction: row;
        gap: var(--space-6);
        justify-content: center;
    }

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

    .emotion-image img {
        height: 350px;
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .details-item {
        grid-template-columns: 150px 1fr;
        gap: var(--space-4);
    }

    .prizes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .appeal-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .mission-catchcopy {
        font-size: var(--font-size-3xl);
    }

    .mission-catchcopy .highlight {
        font-size: var(--font-size-4xl);
    }

    .footer-cta-buttons {
        flex-direction: row;
        gap: var(--space-6);
        justify-content: center;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }

    .container {
        padding: 0 var(--space-8);
    }

    section {
        padding: var(--space-20) 0;
    }

    .btn-large {
        padding: var(--space-6) var(--space-12);
        font-size: var(--font-size-xl);
    }
}