/* ============================================
   NIKE Style LP - Universal Youth Cup 2026
   ============================================ */

/* ============================================
   1. CSS Variables - NIKE Color Palette
   ============================================ */
:root {
    /* Primary Colors - Dark & Gold */
    --color-black: #000000;
    --color-dark-gray: #111111;
    --color-darker-gray: #1a1a1a;
    
    /* Premium Colors */
    --color-gold: #D4AF37;
    --color-gold-light: #F4D03F;
    --color-platinum: #E5E4E2;
    
    /* Accent Colors */
    --color-white: #FFFFFF;
    --color-red: #DC143C;
    
    /* Shadows */
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
    --shadow-gold-hover: 0 12px 48px rgba(212, 175, 55, 0.5);
    --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-platinum);
    line-height: 1.6;
    overflow-x: hidden;
    /* Mobile touch optimization */
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    /* Mobile image optimization */
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    /* Touch-friendly link optimization */
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    touch-action: manipulation;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    /* Touch-friendly button optimization */
    min-height: 44px;
    min-width: 44px;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    touch-action: manipulation;
}

/* ============================================
   3. Utility Classes
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-gold {
    color: var(--color-gold);
}

.bold {
    font-weight: 700;
}

.required {
    color: var(--color-red);
}

/* ============================================
   4. Typography
   ============================================ */
.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 60px;
}

/* ============================================
   5. Buttons
   ============================================ */
.btn-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-black);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
    will-change: transform, box-shadow, letter-spacing;
    transform: translateZ(0);
    backface-visibility: hidden;
}

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

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

.btn-gold:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 
        var(--shadow-gold-hover),
        0 0 30px rgba(212,175,55,0.5),
        0 0 60px rgba(212,175,55,0.2);
    letter-spacing: 0.1em;
}

.btn-gold:hover i {
    transform: translateX(5px);
}

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

.btn-gold:active {
    transform: scale(1.02) translateY(0);
}

.btn-large {
    padding: 24px 64px;
    font-size: 20px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   6. Progress Bar
   ============================================ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
    .progress-bar {
        height: 3px;
    }
}

/* ============================================
   7. Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
}

.nav-brand i {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-platinum);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 2px;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-normal);
}

/* ============================================
   8. Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.5) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23111" width="1920" height="1080"/></svg>') center/cover;
    animation: zoomIn 20s ease-in-out infinite alternate, bgShift 30s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes bgShift {
    0%, 100% { filter: brightness(0.8) contrast(1.1); }
    50% { filter: brightness(1) contrast(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212,175,55,0.05) 0%, transparent 50%),
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.85) 100%);
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
    margin-top: 150px; /* 位置を下げる調整 */
}

.hero-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    text-shadow: 
        0 4px 20px rgba(0,0,0,0.5),
        0 0 40px rgba(212,175,55,0.2),
        0 0 80px rgba(212,175,55,0.1);
    animation: titleGlow 4s ease-in-out infinite;
    background: linear-gradient(180deg, #FFFFFF 0%, #E5E4E2 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 200%;
}

@keyframes titleGlow {
    0%, 100% { 
        background-position: 0% 0%;
        text-shadow: 
            0 4px 20px rgba(0,0,0,0.5),
            0 0 40px rgba(212,175,55,0.2),
            0 0 80px rgba(212,175,55,0.1);
    }
    50% { 
        background-position: 0% 100%;
        text-shadow: 
            0 4px 20px rgba(0,0,0,0.5),
            0 0 60px rgba(212,175,55,0.3),
            0 0 100px rgba(212,175,55,0.15);
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    background: linear-gradient(90deg, #D4AF37, #F4D03F, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-description {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-platinum);
    line-height: 1.8;
    margin-bottom: 50px;
}

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    display: none; /* Hide SCROLL text */
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ============================================
   9. Manifest Section
   ============================================ */
.manifest {
    padding: 150px 0;
    background: var(--color-black);
}

.manifest-content {
    max-width: 1000px;
    margin: 0 auto;
}

.manifest-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.manifest-quote {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-white);
}

.manifest-body {
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.8;
    color: var(--color-platinum);
}

/* ============================================
   10. Stats Section
   ============================================ */
.stats {
    padding: 100px 0;
    background: var(--color-dark-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.2em;
    color: var(--color-white);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 16px;
    color: var(--color-platinum);
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(212,175,55,0.2);
    border-radius: 2px;
    margin: 20px 0;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212,175,55,0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212,175,55,0.8);
    }
}

/* ============================================
   11. Elite Clubs Section
   ============================================ */
.elite-clubs {
    padding: 150px 0;
    background: var(--color-darker-gray);
}

.elite-clubs .section-title-large {
    text-align: center;
}

.elite-clubs .section-subtitle {
    text-align: center;
}

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

.club-card {
    position: relative;
    background: rgba(17, 17, 17, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.club-card:hover {
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.5),
        0 0 40px rgba(212,175,55,0.3),
        inset 0 0 40px rgba(212,175,55,0.1);
    transform: translateY(-12px) rotateX(5deg) scale(1.02);
}

.club-card:hover::before {
    opacity: 1;
}

.club-logo-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.club-logo {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.club-logo-color {
    filter: none !important;
    opacity: 0.85;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.club-card:hover .club-logo-color {
    opacity: 1;
    transform: scale(1.2) translateZ(30px) rotateY(5deg);
    filter: 
        drop-shadow(0 0 30px rgba(212, 175, 55, 0.6))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4)) !important;
}

.club-emblem {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    font-size: 48px;
    border-radius: 50%;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.club-card:hover .club-emblem {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
}

.club-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.club-card:hover .club-badge {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
}

.club-name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 8px;
    text-shadow: 0 2px 8px rgba(212,175,55,0.3);
}

.club-country {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--color-platinum);
    margin-top: 8px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ============================================
   12. Value Proposition Section
   ============================================ */
.value-proposition {
    padding: 150px 0;
    background: var(--color-black);
}

.value-proposition .section-title-large {
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.value-card {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 40px;
    transition: var(--transition-normal);
}

.value-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    font-size: 36px;
    margin-bottom: 30px;
}

.value-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.value-divider {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin-bottom: 20px;
}

.value-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-platinum);
}

/* ============================================
   13. Tournament Details Section
   ============================================ */
.tournament-details {
    padding: 150px 0;
    background: var(--color-dark-gray);
}

.tournament-details .section-title-large {
    text-align: center;
}

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

.detail-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 40px;
    transition: var(--transition-normal);
}

.detail-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.detail-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 28px;
    margin-bottom: 24px;
}

.detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-platinum);
}

.detail-content strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
}

/* ============================================
   14. Timeline Section
   ============================================ */
.timeline {
    padding: 150px 0;
    background: var(--color-darker-gray);
}

.timeline .section-title-large {
    text-align: center;
}

.timeline-wrapper {
    max-width: 900px;
    margin: 80px auto 0;
    position: relative;
}

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

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.timeline-highlight::before {
    width: 20px;
    height: 20px;
    left: -9px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 1); }
}

.timeline-day {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.timeline-date {
    font-size: 14px;
    color: var(--color-platinum);
    margin-bottom: 16px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-platinum);
}

/* ============================================
   15. Testimonials Section
   ============================================ */
.testimonials {
    padding: 150px 0;
    background: var(--color-black);
}

.testimonials .section-title-large {
    text-align: center;
}

.testimonials .section-subtitle {
    text-align: center;
}

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

.testimonial-card {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 40px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.testimonial-icon {
    font-size: 36px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-platinum);
    margin-bottom: 30px;
}

.testimonial-rating {
    display: flex;
    gap: 8px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    font-size: 32px;
    border-radius: 50%;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--color-platinum);
}

/* ============================================
   16. Pricing Section
   ============================================ */
.pricing {
    padding: 150px 0;
    background: var(--color-dark-gray);
}

.pricing .section-title-large {
    text-align: center;
}

.pricing .section-subtitle {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 80px auto 0;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--color-gold);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-8px);
}

.pricing-badge {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.1em;
    color: var(--color-black);
    background: var(--color-gold);
    padding: 10px 30px;
    display: inline-block;
    margin-bottom: 30px;
}

.pricing-original {
    font-size: 24px;
    color: var(--color-platinum);
    text-decoration: line-through;
    margin-bottom: 8px;
    display: none; /* Hidden - no discount */
}

.pricing-discount {
    font-size: 18px;
    color: var(--color-red);
    font-weight: 700;
    margin-bottom: 24px;
    display: none; /* Hidden - no discount */
}

.pricing-price {
    margin-bottom: 40px;
    margin-top: 20px; /* Added spacing when no discount */
}

.price-currency {
    font-size: 36px;
    color: var(--color-gold);
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: var(--color-white);
}

.price-tax {
    font-size: 18px;
    color: var(--color-platinum);
    margin-left: 8px;
}

.pricing-includes {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-includes h4 {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.pricing-includes ul {
    list-style: none;
}

.pricing-includes li {
    font-size: 16px;
    color: var(--color-platinum);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-includes i {
    color: var(--color-gold);
}

.pricing-notes {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-notes h4 {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.pricing-notes ul {
    list-style: none;
}

.pricing-notes li {
    font-size: 16px;
    color: var(--color-platinum);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.pricing-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* ============================================
   17. Urgency Section
   ============================================ */
.urgency {
    padding: 120px 0;
    background: var(--color-black);
}

.urgency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 72px;
    color: var(--color-red);
    margin-bottom: 30px;
    animation: fire 1.5s ease-in-out infinite;
}

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

.urgency-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Remaining Slots Display */
.remaining-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px 40px;
    background: rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.slots-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-platinum);
    letter-spacing: 0.05em;
}

.slots-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

.slots-total {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-platinum);
    opacity: 0.8;
}

.urgency-subtitle {
    font-size: 24px;
    color: var(--color-platinum);
    margin-bottom: 60px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--color-platinum);
    text-transform: uppercase;
}

/* ============================================
   17.5 Director Section
   ============================================ */
.director {
    padding: 150px 0;
    background: var(--color-black);
}

.director .section-title-large {
    text-align: center;
}

.director .section-subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.director-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.98));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}

.director-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 40px;
}

.director-badge i {
    font-size: 16px;
}

.director-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.director-photo {
    width: 320px;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.director-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.director-name {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.director-title {
    font-size: 18px;
    color: var(--color-platinum);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.director-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.director-description p {
    font-size: 16px;
    color: var(--color-platinum);
    line-height: 1.8;
}

.director-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-white);
}

.highlight-item i {
    color: var(--color-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.director-quote {
    padding: 30px;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
    position: relative;
}

.director-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: var(--color-gold);
    opacity: 0.3;
}

.director-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    padding-left: 40px;
    margin-bottom: 16px;
}

.quote-author {
    display: block;
    text-align: right;
    font-size: 16px;
    color: var(--color-gold);
    font-weight: 600;
}

/* ============================================
   18. Organizer Section
   ============================================ */
.organizer {
    padding: 150px 0;
    background: var(--color-darker-gray);
}

.organizer .section-title-large {
    text-align: center;
}

.organizer-main {
    max-width: 1000px;
    margin: 80px auto 0;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 60px;
}

.organizer-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.organizer-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 40px;
}

.organizer-title h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.organizer-tagline {
    font-size: 18px;
    color: var(--color-gold);
}

.organizer-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-platinum);
    margin-bottom: 60px;
}

.organizer-strengths {
    margin-bottom: 60px;
}

.strengths-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 40px;
    text-align: center;
}

.strengths-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strength-item {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--color-gold);
    transition: var(--transition-normal);
}

.strength-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(8px);
}

.strength-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 24px;
}

.strength-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.strength-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-platinum);
}

.organizer-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-platinum);
}

.contact-item i {
    color: var(--color-gold);
    font-size: 20px;
}

.organizer-social {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.social-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-title i {
    font-size: 28px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    min-width: 160px;
}

.social-link i {
    font-size: 48px;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-platinum);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.social-link:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.social-link:hover span {
    color: var(--color-gold);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(253, 29, 29, 0.1), rgba(245, 133, 41, 0.1));
}

.social-link.twitter:hover {
    background: rgba(29, 155, 240, 0.1);
}

.social-link.line:hover {
    background: rgba(0, 195, 0, 0.1);
}

/* Tournament Social Section */
.tournament-social {
    margin-bottom: 40px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.tournament-social .social-title {
    font-size: 28px;
}

.tournament-social .social-link {
    min-width: 200px;
    padding: 35px 45px;
}

.tournament-social .social-link i {
    font-size: 56px;
}

.tournament-social .social-link span {
    font-size: 18px;
}

.social-description {
    font-size: 14px;
    color: var(--color-platinum);
    opacity: 0.8;
}

.organizer-partners {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: rgba(17, 17, 17, 0.6);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.partners-title {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.partner-logo {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition-normal);
}

.partner-logo:hover {
    background: rgba(17, 17, 17, 0.95);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* KDM1 Logo - Keep original colors (gold "1" on black) */
.partner-logo.kdm1-logo {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.partner-logo.kdm1-logo img {
    filter: brightness(1.1) contrast(1.05);
}

.partner-item:hover .partner-logo.kdm1-logo {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(212, 175, 55, 0.7);
}

.partner-item:hover .partner-logo.kdm1-logo img {
    filter: brightness(1.2) contrast(1.1);
}

/* IBAL Logo - Handle white background image */
.partner-logo.ibal-logo {
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.partner-logo.ibal-logo img {
    /* Invert to make white bg black and black text white */
    filter: invert(1);
    /* Use multiply to make inverted black bg (originally white) disappear on dark bg */
    mix-blend-mode: screen;
    opacity: 0.95;
}

.partner-item:hover .partner-logo.ibal-logo {
    background: #000000;
    border-color: rgba(212, 175, 55, 0.6);
}

.partner-item:hover .partner-logo.ibal-logo img {
    filter: invert(1) brightness(1.05);
    mix-blend-mode: screen;
    opacity: 1;
}

/* Smile Football Logo - Black background */
.partner-logo.smile-football-logo {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.partner-logo.smile-football-logo img {
    filter: none;
    max-width: 160%;
    max-height: 160%;
}

.partner-item:hover .partner-logo.smile-football-logo {
    background: rgba(17, 17, 17, 0.95);
    border-color: rgba(212, 175, 55, 0.6);
}

/* GFA Logo - Black background */
.partner-logo.gfa-logo {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.partner-logo.gfa-logo img {
    filter: none;
}

.partner-item:hover .partner-logo.gfa-logo {
    background: rgba(17, 17, 17, 0.95);
    border-color: rgba(212, 175, 55, 0.6);
}

.partner-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.partners-description {
    font-size: 14px;
    color: var(--color-platinum);
    line-height: 1.8;
    opacity: 0.9;
}

/* Sponsors Section */
.organizer-sponsors {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 40px;
    background: rgba(17, 17, 17, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
}

.sponsors-title {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.sponsor-item:hover {
    transform: translateY(-6px);
}

.sponsor-logo {
    width: 200px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 16px;
    transition: var(--transition-normal);
}

.sponsor-item:hover .sponsor-logo {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.95);
}

.sponsor-item:hover .sponsor-logo img {
    filter: brightness(1);
}

/* BACKLASH Logo Styles */
.sponsor-logo.backlash-logo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    flex-direction: column;
    gap: 4px;
    padding: 20px;
}

.backlash-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.backlash-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.sponsor-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-platinum);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.sponsor-item:hover .sponsor-name {
    color: var(--color-gold);
}

.sponsors-description {
    font-size: 13px;
    color: var(--color-platinum);
    line-height: 1.8;
    opacity: 0.8;
}

/* Sponsor Recruitment Section */
.sponsor-recruitment {
    margin-top: 60px;
    padding: 0 20px;
}

.recruitment-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(26, 26, 26, 0.95));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.recruitment-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.recruitment-icon {
    font-size: 64px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.recruitment-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recruitment-description {
    font-size: 16px;
    color: var(--color-platinum);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recruitment-benefits {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 700px;
    text-align: left;
}

.recruitment-benefits h5 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-align: center;
}

.recruitment-benefits h5 i {
    margin-right: 10px;
}

.recruitment-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruitment-benefits li {
    font-size: 15px;
    color: var(--color-platinum);
    line-height: 2;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.recruitment-benefits li i {
    color: var(--color-gold);
    font-size: 14px;
    flex-shrink: 0;
}

.recruitment-contact {
    margin-top: 40px;
}

.recruitment-contact-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.recruitment-contact-text i {
    color: var(--color-gold);
    margin-right: 10px;
}

.recruitment-contact .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    margin-bottom: 20px;
}

.recruitment-contact-detail {
    font-size: 14px;
    color: var(--color-platinum);
    line-height: 1.8;
    opacity: 0.9;
}

/* ============================================
   19. FAQ Section
   ============================================ */
.faq {
    padding: 150px 0;
    background: var(--color-black);
}

.faq .section-title-large {
    text-align: center;
}

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

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.faq-question i {
    color: var(--color-gold);
    font-size: 24px;
    transition: var(--transition-normal);
}

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

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

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

.faq-answer p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-platinum);
    padding-bottom: 30px;
}

/* ============================================
   20. Application Section
   ============================================ */
.application {
    padding: 150px 0;
    background: var(--color-dark-gray);
}

.application-content {
    max-width: 1400px;
    margin: 0 auto;
}

.application .section-title-large {
    text-align: center;
}

.application .section-subtitle {
    text-align: center;
    margin-bottom: 20px;
}

.application .section-description {
    text-align: center;
    font-size: 18px;
    color: var(--color-platinum);
    margin-bottom: 60px;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(26, 26, 26, 0.95));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.info-card-icon {
    font-size: 48px;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-align: center;
}

.info-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card-content {
    color: var(--color-platinum);
    line-height: 1.8;
}

.info-card-content p {
    margin-bottom: 12px;
    font-size: 15px;
}

.info-card-content strong {
    color: var(--color-white);
    font-weight: 600;
}

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

.clubs-list li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clubs-list i {
    color: var(--color-gold);
    font-size: 14px;
}

.price-includes {
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 16px;
}

.includes-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.includes-list li {
    padding: 4px 0;
    font-size: 14px;
}

.price-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-platinum);
    opacity: 0.8;
}

.staff-detail {
    font-size: 14px;
    color: var(--color-platinum);
    margin-bottom: 16px;
    padding-left: 20px;
}

.staff-note {
    margin-top: 20px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-gold);
    font-size: 14px;
    color: var(--color-gold);
}

/* CTA Card */
.info-card-cta {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(17, 17, 17, 0.98));
}

.info-card-cta .btn-gold {
    margin: 24px 0;
    width: 100%;
    justify-content: center;
}

/* Application Form Embed */
.application-form-embed {
    margin: 30px 0;
    background: rgba(17, 17, 17, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
}

.application-form-embed:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.15);
}

.application-form-embed iframe {
    width: 100%;
    height: 2230px;
    border: none;
    display: block;
}

.application-contact {
    margin-top: 50px;
    text-align: center;
}

.contact-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.contact-info {
    font-size: 16px;
    color: var(--color-platinum);
    line-height: 2;
}

.contact-info i {
    color: var(--color-gold);
    margin-right: 8px;
}

.application-form {
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gold);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-white);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-normal);
    /* Mobile input optimization */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

/* Legal Consent Styles */
.form-legal-consent {
    margin: 40px 0;
    padding: 30px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.consent-item {
    margin-bottom: 24px;
}

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

.checkbox-label {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    cursor: pointer;
    transition: var(--transition-normal);
}

.checkbox-label:hover {
    opacity: 0.9;
}

.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    cursor: pointer;
    accent-color: var(--color-gold);
    margin-top: 2px;
}

.checkbox-text {
    color: var(--color-platinum);
    font-size: 15px;
    line-height: 1.8;
    flex: 1;
}

.checkbox-text .required-mark {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 16px;
}

.checkbox-text .legal-link {
    color: var(--color-gold-light);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.checkbox-text .legal-link:hover {
    color: var(--color-gold);
    text-decoration: none;
}

.checkbox-text .required {
    color: var(--color-red);
    font-weight: 700;
}

/* Pricing Legal Notice */
.pricing-legal-notice {
    margin-top: 60px;
}

.legal-notice-box {
    background: rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 8px;
    padding: 40px;
}

.legal-notice-box h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-notice-box h4 i {
    color: var(--color-red);
    font-size: 28px;
}

.legal-notice-box ul {
    list-style: none;
    padding: 0;
}

.legal-notice-box li {
    color: var(--color-platinum);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

.legal-notice-box li:last-child {
    margin-bottom: 0;
}

.legal-notice-box li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 14px;
}

.legal-notice-box li strong {
    color: var(--color-gold-light);
    font-weight: 700;
}

.legal-notice-box li a {
    color: var(--color-gold-light);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.legal-notice-box li a:hover {
    color: var(--color-gold);
    text-decoration: none;
}

/* Footer Compliance Notice */
.footer-compliance-notice {
    margin-top: 20px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--color-platinum);
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}

.footer-compliance-notice i {
    color: var(--color-gold);
    margin-right: 8px;
}

.footer-legal-links a {
    transition: var(--transition-fast);
}

.footer-legal-links a i {
    margin-right: 6px;
    color: var(--color-gold);
}

.footer-legal-links a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* ============================================
   21. Footer
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--color-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-gold);
}

.footer-brand i {
    font-size: 24px;
}

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

.footer-links a {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-platinum);
}

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

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-size: 18px;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.footer-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
}

.footer-organizer {
    font-size: 14px;
    color: var(--color-platinum);
    margin-bottom: 8px;
}

.footer-contact {
    font-size: 14px;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-legal-links {
    margin: 15px 0;
    font-size: 14px;
}

.footer-legal-links a {
    color: var(--color-platinum);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-legal-links .separator {
    color: var(--color-platinum);
    margin: 0 10px;
    opacity: 0.5;
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-platinum);
    opacity: 0.7;
}

/* ============================================
   22. Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 9998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   23. Notification
   ============================================ */
.notification {
    position: fixed;
    top: 100px;
    right: 40px;
    max-width: 400px;
    padding: 20px 30px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-dark);
    transform: translateX(500px);
    transition: var(--transition-normal);
    z-index: 10001;
}

.notification.show {
    transform: translateX(0);
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    border-top: 3px solid var(--color-gold);
    padding: 30px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-text-wrapper {
    flex: 1;
}

.cookie-text {
    color: var(--color-platinum);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-text i {
    font-size: 28px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text span {
    flex: 1;
}

.cookie-text strong {
    color: var(--color-gold-light);
    font-weight: 700;
}

.cookie-details {
    color: var(--color-platinum);
    font-size: 13px;
    margin: 0;
    padding-left: 43px;
}

.cookie-details a {
    color: var(--color-gold-light);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.cookie-details a:hover {
    color: var(--color-gold);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-platinum);
    border: 2px solid rgba(229, 228, 226, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-platinum);
    transform: translateY(-2px);
}

/* ============================================
   24. Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* Mobile Navigation Enhancement */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        transition: var(--transition-normal);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--color-gold);
        transform: translateX(8px);
    }
    
    .nav-toggle {
        display: flex;
        padding: 12px;
        cursor: pointer;
        z-index: 10000;
    }
    
    .nav-toggle:hover span {
        background: var(--color-gold-light);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .clubs-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content {
        margin-top: 120px; /* タブレット: 位置を下げる */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
        margin-top: 100px; /* モバイル: 位置を下げる */
    }
    
    /* Hero Mobile Typography */
    .hero-title {
        font-size: clamp(40px, 9vw, 64px);
        line-height: 1.2;
        margin-bottom: 20px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(20px, 4.5vw, 32px);
        margin-bottom: 20px;
    }
    
    .hero-label {
        font-size: clamp(12px, 2.8vw, 16px);
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: clamp(14px, 3.2vw, 18px);
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .manifest,
    .elite-clubs,
    .value-proposition,
    .tournament-details,
    .timeline,
    .testimonials,
    .pricing,
    .organizer,
    .faq,
    .application {
        padding: 80px 0;
    }
    
    .stats {
        padding: 60px 0;
    }
    
    .urgency {
        padding: 80px 0;
    }
    
    /* Remaining Slots Mobile */
    .remaining-slots {
        flex-wrap: wrap;
        padding: 16px 24px;
        max-width: 320px;
    }
    
    .slots-label {
        font-size: 16px;
    }
    
    .slots-number {
        font-size: 48px;
    }
    
    .slots-total {
        font-size: 16px;
    }
    
    /* Section Titles Mobile */
    .section-title-large {
        font-size: clamp(48px, 10vw, 80px);
    }
    
    .section-title {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .section-subtitle {
        font-size: clamp(16px, 4vw, 22px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clubs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Club Cards Mobile Touch Optimization */
    .club-card {
        padding: 30px 20px;
        min-height: 200px;
        /* Disable hover effects on mobile for better performance */
        transition: none;
    }
    
    .club-card:hover {
        transform: none;
    }
    
    .club-logo-wrapper {
        height: 100px;
    }
    
    .club-logo {
        max-width: 100px;
        max-height: 100px;
    }
    
    .club-logo-color {
        opacity: 1;
    }
    
    .club-card:hover .club-logo-color {
        transform: none;
    }
    
    .club-name {
        font-size: 16px;
    }
    
    .club-country {
        font-size: 13px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonial Cards Mobile */
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .countdown {
        gap: 20px;
    }
    
    .countdown-number {
        font-size: 48px;
    }
    
    /* Timeline Mobile */
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-date {
        font-size: 16px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-description {
        font-size: 14px;
    }
    
    /* Director Mobile */
    .director-card {
        padding: 40px 20px;
    }
    
    .director-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .director-photo {
        width: 280px;
        height: 350px;
        margin: 0 auto;
    }
    
    .director-name {
        font-size: 36px;
        text-align: center;
    }
    
    .director-title {
        font-size: 16px;
        text-align: center;
    }
    
    .director-description p {
        font-size: 15px;
    }
    
    .director-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-item {
        font-size: 14px;
    }
    
    /* Application Form Embed Mobile */
    .application-form-embed iframe {
        height: 2400px;
    }
    
    .director-quote {
        padding: 20px;
    }
    
    .director-quote p {
        font-size: 16px;
        padding-left: 30px;
    }
    
    .director-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    /* Organizer Mobile */
    .organizer-main {
        padding: 40px 30px;
    }
    
    .organizer-header {
        flex-direction: column;
        text-align: center;
    }
    
    .organizer-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-title {
        font-size: 24px;
    }
    
    .social-title i {
        font-size: 22px;
    }
    
    .tournament-social .social-title {
        font-size: 22px;
    }
    
    .tournament-social {
        margin-bottom: 30px;
    }
    
    .tournament-social .social-link {
        min-width: 100%;
        padding: 20px 24px;
    }
    
    .tournament-social .social-link i {
        font-size: 48px;
    }
    
    .tournament-social .social-link span {
        font-size: 16px;
    }
    
    .social-link {
        min-width: 100%;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    /* Partners Grid Mobile */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-logo {
        width: 200px;
        height: 110px;
    }
    
    .partner-logo.smile-football-logo img {
        max-width: 160%;
        max-height: 160%;
    }
    
    .organizer-partners {
        padding: 30px 20px;
    }
    
    .partners-title {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .partners-description {
        font-size: 13px;
    }
    
    /* Sponsors Grid Mobile */
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sponsor-logo {
        width: 220px;
        height: 100px;
    }
    
    .sponsor-logo.backlash-logo {
        padding: 24px;
    }
    
    .backlash-text {
        font-size: 32px;
    }
    
    .backlash-subtitle {
        font-size: 12px;
    }
    
    .organizer-sponsors {
        padding: 30px 20px;
    }
    
    .sponsors-title {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .sponsors-description {
        font-size: 12px;
    }
    
    /* Sponsor Recruitment Mobile */
    .sponsor-recruitment {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .recruitment-card {
        padding: 40px 25px;
        border-radius: 12px;
    }
    
    .recruitment-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .recruitment-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .recruitment-description {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .recruitment-benefits {
        padding: 25px 20px;
        margin: 30px auto;
    }
    
    .recruitment-benefits h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .recruitment-benefits li {
        font-size: 14px;
        gap: 10px;
    }
    
    .recruitment-contact {
        margin-top: 30px;
    }
    
    .recruitment-contact-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .recruitment-contact .btn-gold {
        padding: 16px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .recruitment-contact-detail {
        font-size: 13px;
    }
    
    /* FAQ Mobile Touch Optimization */
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    /* Google Form Mobile */
    .google-form-container {
        margin-top: 40px;
        border-radius: 6px;
    }
    
    .google-form-container iframe {
        height: 3400px;
    }
    
    .application-note {
        margin-top: 20px;
        padding: 16px;
    }
    
    .application-note p {
        font-size: 13px;
    }
    
    .application .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    /* Application Form Mobile */
    .application-form {
        padding: 40px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Button Mobile Touch Optimization */
    .btn-gold,
    .btn-large {
        padding: 16px 32px;
        font-size: 15px;
        min-height: 48px;
        width: 100%;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .notification {
        right: 16px;
        left: 16px;
        max-width: none;
        font-size: 14px;
        padding: 14px 16px;
    }
    
    /* Section Titles Small Mobile */
    .section-title-large {
        font-size: clamp(36px, 9vw, 64px);
        margin-bottom: 16px;
    }
    
    .section-title {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: clamp(14px, 3.5vw, 20px);
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    /* Container adjustment for small screens */
    .container {
        padding: 0 16px;
    }
    
    /* Hero adjustments */
    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(18px, 4vw, 28px);
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Remaining Slots Extra Small Mobile */
    .remaining-slots {
        padding: 12px 20px;
        gap: 8px;
        max-width: 280px;
    }
    
    .slots-label {
        font-size: 14px;
    }
    
    .slots-number {
        font-size: 40px;
    }
    
    .slots-total {
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .application-form {
        padding: 24px 16px;
    }
    
    .application-form-embed iframe {
        height: 2400px;
    }
    
    /* Legal Consent Mobile Optimization */
    .form-legal-consent {
        padding: 16px;
        margin: 24px 0;
    }
    
    .checkbox-label {
        gap: 12px;
    }
    
    .checkbox-label {
        gap: 12px;
        align-items: flex-start;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-top: 2px;
    }
    
    .checkbox-text {
        font-size: 13px;
        line-height: 1.65;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .checkbox-text .required-mark {
        font-size: 14px;
        display: block;
        margin-bottom: 4px;
    }
    
    /* Pricing Legal Notice Mobile */
    .pricing-legal-notice {
        margin-top: 32px;
    }
    
    .legal-notice-box {
        padding: 20px 16px;
    }
    
    .legal-notice-box h4 {
        font-size: 18px;
        margin-bottom: 16px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .legal-notice-box h4 i {
        font-size: 20px;
    }
    
    .legal-notice-box li {
        font-size: 13px;
        line-height: 1.65;
        padding-left: 20px;
        margin-bottom: 14px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    /* Footer Compliance Notice Mobile */
    .footer-compliance-notice {
        font-size: 12px;
        padding: 12px;
        margin-top: 12px;
        line-height: 1.6;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-legal-links .separator {
        display: none;
    }
    
    .footer-legal-links a {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-organizer,
    .footer-contact,
    .footer-copyright {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    /* Cookie Consent Mobile Enhancement */
    .cookie-consent {
        padding: 20px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        padding: 0 20px;
        text-align: left;
        gap: 20px;
    }
    
    .cookie-text-wrapper {
        width: 100%;
    }
    
    .cookie-text {
        flex-direction: row;
        gap: 12px;
        font-size: 14px;
        align-items: flex-start;
    }
    
    .cookie-text i {
        font-size: 24px;
        margin-top: 0;
    }
    
    .cookie-details {
        font-size: 12px;
        padding-left: 36px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
        font-weight: 700;
    }
    
    /* WHY WE COMPETE Section Mobile */
    .manifest-body {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 4px;
    }
    
    /* Stats Mobile */
    .stat-number {
        font-size: clamp(48px, 12vw, 72px);
    }
    
    .stat-label {
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    /* Pricing Notes Mobile */
    .pricing-notes {
        padding: 0 4px;
    }
    
    .pricing-notes h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .pricing-notes ul {
        padding-left: 20px;
    }
    
    .pricing-notes li {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 10px;
    }
}
