    /* ===== Reset & Base ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
      color: #374151;
      background: var(--bg-alt);
      line-height: 1.7;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ===== CSS Variables ===== */
    :root {
      --primary: #ff6b00;
      --primary-light: #ff8c00;
      --accent: #e65c00;
      --accent-light: #ffaa00;
      --dark: #ffffff;
      --light: #1a1a1a;
      --gray: #6b7280;
      --gray-light: #f3f4f6;
      --bg-alt: #f8f8f8;
      --shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
      --shadow-hover: 0 4px 16px rgba(0,0,0,0.1), 0 16px 48px rgba(0,0,0,0.12);
      --radius: 12px;
      --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ===== Navigation ===== */
    .navbar {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      padding: 18px 0;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: var(--transition);
    }
    .navbar.scrolled {
      padding: 12px 0;
      background: rgba(255,255,255,0.95);
      box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.08);
    }
    .nav-progress {
      position: absolute; bottom: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
      width: 0%; transition: width 0.1s linear;
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .nav-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; font-size: 1.3rem; color: var(--light);
      letter-spacing: 1.5px; text-transform: uppercase;
    }
    .nav-logo span { color: var(--primary); font-weight: 800; }
    .nav-right { display: flex; align-items: center; gap: 0; }
    .nav-links { display: flex; gap: 28px; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 500; color: var(--gray);
      position: relative; transition: var(--transition);
      letter-spacing: 0.8px; text-transform: uppercase;
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -6px; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span {
      width: 24px; height: 2px; background: var(--light);
      transition: var(--transition);
    }
    .lang-switch {
      display: flex; margin-left: 16px; border-radius: 6px; overflow: hidden;
      border: 1.5px solid var(--primary);
    }
    .lang-switch button {
      width: 36px; padding: 4px 0; border: none; cursor: pointer;
      font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.5px; transition: var(--transition);
      background: transparent; color: var(--primary);
    }
    .lang-switch button.active {
      background: var(--primary); color: #ffffff;
    }
    .lang-switch button:not(.active):hover {
      background: rgba(255,107,0,0.15);
    }

    /* ===== Hero ===== */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero-bg-left,
    .hero-bg-right {
      position: absolute; top: 0; bottom: 0; width: 50%;
      background-size: cover; background-repeat: no-repeat;
    }
    .hero-bg-left {
      left: 0;
      background-image: url('../images/hero2.jpg');
      background-position: center center;
    }
    .hero-bg-right {
      right: 0;
      background-image: url('../images/hero1.jpeg');
      background-position: center center;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 1;
    }
    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.04; z-index: 2;
      background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.1) 35px, rgba(255,255,255,0.1) 36px);
    }
    .hero-content {
      max-width: 900px; margin: 0 auto; padding: 140px 24px 100px;
      position: relative; z-index: 2; text-align: center;
    }
    .hero-text { color: #ffffff; }
    .hero-tag {
      display: inline-block; padding: 6px 20px; border-radius: 50px;
      background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
      font-size: 0.75rem; font-weight: 600; margin-bottom: 24px;
      border: 1px solid rgba(255,255,255,0.3);
      letter-spacing: 2.5px; text-transform: uppercase;
      animation: tagPulse 3s ease-in-out infinite;
    }
    .hero-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 5rem; font-weight: 900; line-height: 1.05;
      margin-bottom: 28px; letter-spacing: 4px;
      position: relative;
      text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    }
    .hero-name-stroke {
      -webkit-text-stroke: 2px rgba(255,255,255,0.9);
      color: rgba(255,255,255,0.15);
    }
    .hero-name-fill {
      color: #ffffff;
    }
    .hero-name.glitch-active::before,
    .hero-name.glitch-active::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      font-family: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
      letter-spacing: inherit;
    }
    .hero-name.glitch-active::before {
      color: rgba(255,255,255,0.6);
      animation: glitchColor1 0.6s ease-out forwards;
      transform: translate(-2px, 0);
    }
    .hero-name.glitch-active::after {
      color: rgba(255,255,255,0.4);
      animation: glitchColor2 0.6s ease-out forwards;
      transform: translate(2px, 0);
    }
    .hero-name.glitch-active {
      animation: glitch 0.6s ease-out forwards;
      opacity: 1;
    }
    .hero-desc {
      font-size: 1.05rem; line-height: 2; opacity: 0.75; margin-bottom: 40px;
      max-width: 560px; margin-left: auto; margin-right: auto; font-weight: 300;
    }
    .hero-motto {
      font-size: 1.2rem; font-weight: 500; letter-spacing: 3px;
      opacity: 0.85; margin-bottom: 28px;
    }
    .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 36px; border-radius: 50px; font-weight: 600;
      font-size: 0.85rem; transition: var(--transition); cursor: pointer; border: none;
      min-width: 200px; letter-spacing: 0.5px; position: relative; overflow: hidden;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #ffffff;
      box-shadow: 0 4px 24px rgba(255,107,0,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(255,107,0,0.4);
    }
    .btn-outline {
      background: rgba(255,255,255,0.2); color: #ffffff;
      border: 1.5px solid rgba(255,255,255,0.4);
      backdrop-filter: blur(4px);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.6);
      transform: translateY(-3px);
    }
    .btn .ripple {
      position: absolute; border-radius: 50%;
      background: rgba(255,255,255,0.35);
      transform: scale(0); animation: rippleEffect 0.6s ease-out forwards;
      pointer-events: none;
    }
    @keyframes rippleEffect {
      to { transform: scale(4); opacity: 0; }
    }
    .hero-stats {
      display: flex; gap: 48px; margin-top: 56px; justify-content: center;
    }
    .hero-stat { text-align: center; }
    .hero-stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.6rem; font-weight: 800; letter-spacing: -1px;
    }
    .hero-stat-label { font-size: 0.72rem; opacity: 0.5; margin-top: 4px; letter-spacing: 0.5px; font-weight: 400; }
    .scroll-indicator {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.5); z-index: 2;
      animation: scrollBounce 2s ease-in-out infinite;
    }

    /* ===== Section Common ===== */
    .section { padding: 120px 24px; position: relative; overflow: hidden; }
    .section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
    .section-header { text-align: center; margin-bottom: 72px; }
    .section-tag {
      display: inline-block; padding: 5px 18px; border-radius: 50px;
      background: transparent; color: var(--primary);
      font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 3px; margin-bottom: 16px;
      border: 1.5px solid rgba(255,107,0,0.3);
    }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.6rem; font-weight: 900; color: var(--light);
      letter-spacing: 2px;
    }
    .section-subtitle {
      font-size: 0.95rem; color: var(--gray); margin-top: 16px;
      max-width: 600px; margin-left: auto; margin-right: auto;
      font-weight: 300;
    }
    .section-watermark {
      position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
      font-family: 'Montserrat', sans-serif; font-size: 8rem; font-weight: 900;
      color: var(--light); opacity: 0.03; pointer-events: none;
      letter-spacing: 20px; text-transform: uppercase; white-space: nowrap;
      user-select: none;
    }

    /* ===== Dark overlay section text ===== */
    .achievements .section-title,
    .schedule .section-title,
    .news .section-title { color: #ffffff; }
    .achievements .section-subtitle,
    .schedule .section-subtitle,
    .news .section-subtitle { color: rgba(255,255,255,0.7); }
    .achievements .section-tag,
    .schedule .section-tag,
    .news .section-tag { color: #ffffff; border-color: rgba(255,255,255,0.4); }
    .achievements .section-watermark,
    .schedule .section-watermark,
    .news .section-watermark { color: #ffffff; }
    .schedule .schedule-card { background: rgba(255,255,255,0.12); border-left-color: rgba(255,255,255,0.4); box-shadow: none; }
    .schedule .schedule-card.active { background: rgba(255,107,0,0.15); border-left-color: var(--accent); }
    .schedule .schedule-card.past { border-left-color: rgba(255,255,255,0.15); }
    .schedule .schedule-event { color: #ffffff; }
    .schedule .schedule-location { color: rgba(255,255,255,0.7); }
    .schedule .schedule-location svg { stroke: rgba(255,255,255,0.7); }
    .schedule .schedule-month { color: rgba(255,255,255,0.8); }
    .schedule .schedule-card.active .schedule-month { color: var(--accent); }
    .news .news-date { color: rgba(255,255,255,0.6); }
    .news .news-title { color: #ffffff; }
    .news .news-excerpt { color: rgba(255,255,255,0.7); }
    .news .news-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
    .news .news-card:hover { background: rgba(255,255,255,0.15); }
    .news .news-toggle { color: rgba(255,255,255,0.7); }
    .news .news-thumb { background: rgba(255,255,255,0.08) !important; color: #ffffff !important; }

    /* Achievement cards on dark overlay */
    .achievements .achievement-card { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
    .achievements .achievement-card:hover { border-color: rgba(255,107,0,0.4); }
    .achievements .achievement-title { color: #ffffff; }
    .achievements .achievement-desc { color: rgba(255,255,255,0.7); }
    .achievements .achievement-year { color: #ffffff; }

    /* ===== About ===== */
    .about { background: #ffffff; }
    .about::before {
      content: ''; position: absolute; top: -30px; left: 0; width: 100%; height: 30px;
      background: #ffffff;
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
      z-index: 2;
    }
    .about-grid {
      display: grid; grid-template-columns: 2fr 3fr; gap: 60px; align-items: center;
    }
    .about-image-area {
      position: relative;
    }
    .about-image-placeholder {
      width: 100%; aspect-ratio: 4/5; border-radius: var(--radius);
      background: linear-gradient(135deg, #f8f8f8, #f3f4f6);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: var(--primary);
    }
    .about-image-placeholder span { font-size: 0.85rem; opacity: 0.7; }
    .about-image-area img {
      width: 100%; aspect-ratio: 4/5; object-fit: cover;
      border-radius: var(--radius);
      clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
      transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .about-image-area:hover img {
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .about-floating-card {
      position: absolute; bottom: -20px; right: -20px;
      background: rgba(255,255,255,0.9); border-radius: 16px; padding: 20px 24px;
      box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px;
      border: 1px solid rgba(0,0,0,0.08); backdrop-filter: blur(8px);
    }
    .about-floating-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      display: flex; align-items: center; justify-content: center; color: #ffffff;
    }
    .about-floating-text strong { display: block; font-size: 0.9rem; color: var(--light); }
    .about-floating-text span { font-size: 0.8rem; color: var(--gray); }
    .about-text h3 {
      font-size: 1.8rem; font-weight: 700; color: var(--light); margin-bottom: 20px;
      line-height: 1.4;
    }
    .about-text h3 span { color: var(--primary); }
    .about-text p { color: #4b5563; margin-bottom: 16px; }
    .about-info {
      display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 32px;
    }
    .about-info-item {
      display: flex; align-items: center; gap: 10px;
      padding: 0; border-radius: 0;
      background: none; border: none; box-shadow: none;
      transition: var(--transition);
    }
    .about-info-item:hover {
      transform: none;
    }
    .about-info-icon {
      width: 32px; height: 32px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: #ffffff;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; flex-shrink: 0;
    }
    .about-info-detail { font-size: 0.85rem; }
    .about-info-detail strong { font-weight: 600; color: var(--light); }
    .about-info-detail small { display: block; color: var(--gray); font-size: 0.7rem; letter-spacing: 0.5px; }

    /* About: Dual Career Highlight */
    .dual-career-banner {
      margin-top: 48px; padding: 32px; border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(255,170,0,0.06));
      border-left: 4px solid var(--accent);
      display: flex; align-items: flex-start; gap: 20px;
    }
    .dual-career-icon {
      width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      display: flex; align-items: center; justify-content: center; color: #ffffff;
    }
    .dual-career-content h4 {
      font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px;
    }
    .dual-career-content p { font-size: 0.9rem; color: #4b5563; margin: 0; }

    /* About: Profile Table */
    .profile-detail-section { margin-top: 60px; }
    .profile-detail-section h3 {
      font-size: 1.4rem; font-weight: 700; color: var(--light); margin-bottom: 24px;
      padding-bottom: 12px; border-bottom: 2px solid var(--gray-light);
    }
    .profile-table {
      width: 100%; border-collapse: collapse;
    }
    .profile-table tr { border-bottom: 1px solid var(--gray-light); }
    .profile-table th {
      text-align: left; padding: 14px 20px; font-size: 0.85rem;
      font-weight: 600; color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      width: 160px; white-space: nowrap; vertical-align: top;
    }
    .profile-table td {
      padding: 14px 20px; font-size: 0.9rem; color: #4b5563;
    }

    /* About: Play Style Card */
    .playstyle-section {
      margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    }
    .playstyle-card {
      padding: 28px; border-radius: var(--radius);
      background: var(--gray-light); transition: var(--transition);
    }
    .playstyle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .playstyle-card-icon {
      width: 44px; height: 44px; border-radius: 10px; margin-bottom: 16px;
      display: flex; align-items: center; justify-content: center; color: #ffffff;
    }
    .playstyle-card:nth-child(1) .playstyle-card-icon { background: var(--primary); }
    .playstyle-card:nth-child(2) .playstyle-card-icon { background: var(--accent); }
    .playstyle-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .playstyle-card p { font-size: 0.85rem; color: var(--gray); margin: 0; }

    /* About: Career Journey */
    .career-journey { margin-top: 48px; }
    .career-journey h3 {
      font-size: 1.4rem; font-weight: 700; color: var(--light); margin-bottom: 28px;
      padding-bottom: 12px; border-bottom: 2px solid var(--gray-light);
    }
    .timeline-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px;
    }
    .timeline-col-label {
      font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
      padding-bottom: 8px; border-bottom: 2px solid var(--gray-light);
      color: var(--gray);
    }
    .timeline-col-label.highlight { color: var(--primary); border-bottom-color: var(--primary); }
    .timeline { position: relative; padding-left: 28px; }
    .timeline::before {
      content: ''; position: absolute; left: 9px; top: 4px; bottom: 4px;
      width: 2px; background: #d1d5db;
      transform-origin: top; transform: scaleY(0);
      transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .timeline.timeline-highlight::before {
      background: linear-gradient(to bottom, var(--primary), var(--accent));
    }
    .timeline.visible::before {
      transform: scaleY(1);
    }
    .timeline-item {
      position: relative; margin-bottom: 20px; padding-left: 20px;
    }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-item::before {
      content: ''; position: absolute; left: -22px; top: 5px;
      width: 10px; height: 10px; border-radius: 50%;
      background: #d1d5db; border: 2px solid #ffffff;
      box-shadow: 0 0 0 2px #d1d5db;
    }
    .timeline-item.highlight::before {
      background: var(--primary);
      box-shadow: 0 0 0 2px var(--primary), 0 0 6px rgba(255,107,0,0.3);
    }
    .timeline-year {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem; font-weight: 700; color: var(--gray);
      margin-bottom: 2px;
    }
    .timeline-item.highlight .timeline-year { color: var(--primary); }
    .timeline-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 0; line-height: 1.4; }
    .timeline-item.highlight .timeline-title { color: var(--primary); }
    .timeline-desc { font-size: 0.8rem; color: var(--gray); margin-top: 2px; line-height: 1.4; }
    }

    /* ===== Results ===== */
    .results { background: #ffffff; }
    .results-heading {
      font-size: 1.1rem; font-weight: 700; margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .results-heading-bar {
      display: inline-block; width: 4px; height: 20px; border-radius: 2px;
    }
    .results-heading-premier {
      color: #9d174d;
    }
    .results-heading-premier .results-heading-bar {
      background: #9d174d;
    }
    .results-heading-fip {
      color: var(--primary);
    }
    .results-heading-fip .results-heading-bar {
      background: var(--primary);
    }
    .results-table {
      width: 100%; border-collapse: collapse; margin-top: 20px;
    }
    .results-table thead {
      background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
      color: var(--light);
    }
    .results-table th {
      padding: 14px 16px; text-align: left; font-size: 0.85rem;
      font-weight: 600; white-space: nowrap;
    }
    .results-table td {
      padding: 14px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--gray-light);
    }
    .results-table tbody tr {
      position: relative; transition: var(--transition);
    }
    .results-table tbody tr:hover {
      background: rgba(255,107,0,0.08);
    }
    .results-table tbody tr::after {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--primary);
      transform: scaleY(0); transition: transform 0.3s ease;
    }
    .results-table tbody tr:hover::after {
      transform: scaleY(1);
    }
    .results-table .year-cell {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; color: var(--primary);
    }
    .results-table .tournament-cell { font-weight: 600; }
    .results-table .result-badge {
      display: inline-block; padding: 4px 12px; border-radius: 50px;
      font-size: 0.75rem; font-weight: 600;
      transition: transform 0.2s ease;
    }
    .results-table .result-badge:hover {
      transform: scale(1.15);
    }
    .results-table .result-badge.qf { background: #dbeafe; color: #1e40af; }
    .results-table .result-badge.sf { background: #fef3c7; color: #92400e; }
    .results-table .result-badge.final { background: #fce7f3; color: #9d174d; }
    .results-table .result-badge.win { background: #d1fae5; color: #065f46; }
    .results-table .result-badge.r16 { background: #e0e7ff; color: #3730a3; }
    .results-table .result-badge.r32 { background: #f3f4f6; color: #4b5563; }
    .results-table .result-badge.q1 { background: #f3f4f6; color: #4b5563; }
    .results-table-premier .result-badge.q1 { background: #fce7f3; color: #9d174d; }
    /* Premier Padel table color scheme */
    .results-table-premier .year-cell { color: #9d174d; }
    .results-table-premier tbody tr:hover { background: rgba(157,23,77,0.08); }
    .results-table-premier tbody tr::after { background: #9d174d; }
    .results-table-premier .tournament-cell a { color: inherit; }
    .results-table-premier .tournament-cell a:hover { color: #9d174d; }

    .results-year-divider {
      background: var(--gray-light); font-weight: 700; color: var(--light);
    }
    .results-year-divider td { padding: 10px 16px; font-size: 0.9rem; }
    /* ===== Schedule ===== */
    .schedule-bg-left, .schedule-bg-right { position: absolute; top: 0; bottom: 0; width: 50%; background-size: cover; background-position: center center; background-repeat: no-repeat; }
    .schedule-bg-left { left: 0; background-image: url('../images/Schedule1.jpg'); }
    .schedule-bg-right { right: 0; background-image: url('../images/Schedule2.jpg'); }
    .schedule::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.55); z-index: 1;
    }
    .schedule-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
    }
    .schedule-card {
      padding: 28px; border-radius: 16px; background: rgba(0,0,0,0.02);
      border-left: 3px solid var(--primary); transition: var(--transition);
      box-shadow: var(--shadow);
    }
    .schedule-card:hover { transform: translateY(-6px); box-shadow: 0 0 16px rgba(255,107,0,0.15), var(--shadow-hover); }
    .schedule-card.past { opacity: 0.6; border-left-color: rgba(0,0,0,0.1); }
    .schedule-card.active { border-left-color: var(--accent); background: rgba(255,107,0,0.06); }
    .schedule-month {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem; font-weight: 700; color: var(--primary);
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
    }
    .schedule-card.active .schedule-month { color: var(--accent); }
    .schedule-card.active .schedule-month::before {
      content: ''; display: inline-block; width: 8px; height: 8px;
      border-radius: 50%; background: var(--accent); margin-right: 8px;
      vertical-align: middle;
      animation: dotPulse 1.5s ease-in-out infinite;
    }
    .schedule-event { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .schedule-location { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
    .schedule-badge {
      display: inline-block; padding: 2px 10px; border-radius: 50px;
      font-size: 0.7rem; font-weight: 600; margin-top: 8px;
    }
    .schedule-badge.intl { background: #dbeafe; color: #1e40af; }
    .schedule-badge.domestic { background: #d1fae5; color: #065f46; }

    /* Sponsor: Named cards */
    .sponsor-card.sponsor-named {
      border: 1.5px solid rgba(0,0,0,0.1); padding: 20px; text-align: center;
      position: relative; overflow: hidden; border-radius: var(--radius);
      transition: var(--transition);
    }
    .sponsor-card.sponsor-named:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
      box-shadow: 0 0 16px rgba(255,107,0,0.15), var(--shadow);
    }
    .sponsor-logo {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.08;
      transition: all 0.4s ease;
      pointer-events: none;
    }
    .sponsor-card.sponsor-named:hover .sponsor-logo {
      opacity: 0.15;
    }
    .sponsor-logo-sm {
      object-fit: contain;
      padding: 24px;
    }
    .sponsor-name { font-size: 0.9rem; font-weight: 700; color: var(--light); margin-bottom: 2px; position: relative; z-index: 1; }
    .sponsor-category { font-size: 0.7rem; color: var(--gray); position: relative; z-index: 1; }

    /* ===== Achievements ===== */
    .achievements-bg-left, .achievements-bg-right { position: absolute; top: 0; bottom: 0; width: 50%; background-size: cover; background-position: center center; background-repeat: no-repeat; }
    .achievements-bg-left { left: 0; background-image: url('../images/Achievements1.jpg'); }
    .achievements-bg-right { right: 0; background-image: url('../images/Achievements2.jpg'); }
    .achievements::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.55); z-index: 1;
    }
    .achievements-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .achievement-card {
      background: rgba(0,0,0,0.02); border-radius: var(--radius); padding: 36px;
      transition: var(--transition); position: relative; overflow: hidden;
      border: 1px solid rgba(0,0,0,0.08);
    }
    .achievement-card:hover {
      transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
      box-shadow: 0 0 20px rgba(255,107,0,0.2), var(--shadow-hover);
      border-color: rgba(255,107,0,0.3);
    }
    .achievement-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
    }
    .achievement-card.gold::before {
      background: linear-gradient(90deg, #f59e0b, #fbbf24);
    }
    .achievement-card.silver::before {
      background: linear-gradient(90deg, #9ca3af, #d1d5db);
    }
    .achievement-card:hover::after {
      content: ''; position: absolute; inset: 0;
      border-radius: var(--radius);
      box-shadow: inset 0 0 0 2px rgba(255,107,0,0.25);
      pointer-events: none;
    }
    .achievement-year {
      font-family: 'Montserrat', sans-serif;
      font-size: 4rem; font-weight: 900; color: var(--light);
      opacity: 0.04; position: absolute; top: 8px; right: 12px;
      line-height: 1; pointer-events: none;
    }
    .achievement-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
    .achievement-result {
      display: inline-block; padding: 4px 12px; border-radius: 50px;
      font-size: 0.8rem; font-weight: 600;
    }
    .achievement-result.gold-badge {
      background: #fef3c7; color: #92400e;
    }
    .achievement-result.silver-badge {
      background: #f3f4f6; color: #4b5563;
    }
    .achievement-result.bronze-badge {
      background: #fce7d6; color: #9a3412;
    }
    .achievement-desc {
      font-size: 0.85rem; color: var(--gray); margin-top: 12px;
    }

    /* ===== Gallery ===== */
    .gallery { background: var(--gray-light); }
    .gallery-tabs {
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
      justify-content: center;
    }
    .gallery-tab {
      padding: 10px 24px; border-radius: 50px; border: 1.5px solid rgba(0,0,0,0.1);
      background: rgba(0,0,0,0.02); color: var(--gray); font-size: 0.82rem;
      font-weight: 600; cursor: pointer; transition: var(--transition);
      font-family: inherit; white-space: nowrap;
    }
    .gallery-tab:hover {
      border-color: var(--primary); color: var(--primary);
    }
    .gallery-tab.active {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: #ffffff; border-color: transparent;
      box-shadow: 0 4px 16px rgba(255,107,0,0.3);
    }
    .gallery-tab-meta {
      font-weight: 400; font-size: 0.72rem; opacity: 0.8; margin-left: 6px;
    }
    .gallery-photos {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
    }
    .gallery-photo-item {
      border-radius: var(--radius); overflow: hidden; cursor: pointer;
      position: relative; aspect-ratio: 4/3;
      box-shadow: var(--shadow); transition: var(--transition);
    }
    .gallery-photo-item:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: var(--shadow-hover);
    }
    .gallery-photo-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-photo-item:hover img { transform: scale(1.08); }
    .gallery-event-header {
      text-align: center; margin-bottom: 24px;
    }
    .gallery-event-header h3 {
      font-size: 1.1rem; font-weight: 700; color: var(--light); margin-bottom: 4px;
    }
    .gallery-event-header p {
      font-size: 0.82rem; color: var(--gray);
    }
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
    }
    .lightbox.active { display: flex; }
    .lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
    .lightbox-close {
      position: absolute; top: 20px; right: 20px;
      background: none; border: none; color: white; font-size: 2rem; cursor: pointer; z-index: 2001;
    }
    .lightbox-prev, .lightbox-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1); border: none; color: white;
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: 0.3s ease;
    }
    .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    /* ===== News ===== */
    .news-bg-left, .news-bg-right { position: absolute; top: 0; bottom: 0; width: 50%; background-size: cover; background-position: center center; background-repeat: no-repeat; }
    .news-bg-left { left: 0; background-image: url('../images/news1.jpg'); }
    .news-bg-right { right: 0; background-image: url('../images/news2.jpg'); }
    .news::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.55); z-index: 1;
    }
    .news-grid {
      display: grid; grid-template-columns: 1fr; gap: 20px;
    }
    .news-card {
      background: rgba(0,0,0,0.02); border-radius: var(--radius); overflow: hidden;
      transition: var(--transition); border: 1px solid rgba(0,0,0,0.08);
      display: grid; grid-template-columns: 200px 1fr; align-items: center;
    }
    .news-card .news-thumb {
      aspect-ratio: 1; height: 100%;
    }
    .news-card:hover {
      transform: translateY(-4px); box-shadow: 0 0 16px rgba(255,107,0,0.15), var(--shadow-hover);
      border-color: rgba(255,107,0,0.2);
    }
    .news-thumb {
      width: 100%; aspect-ratio: 16/9;
      background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,140,0,0.15));
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 0.85rem; opacity: 0.6;
    }
    .news-body { padding: 24px; }
    .news-date { font-size: 0.8rem; color: var(--gray); margin-bottom: 8px; }
    .news-tag {
      display: inline-block; padding: 2px 10px; border-radius: 50px;
      font-size: 0.7rem; font-weight: 600; margin-left: 8px;
    }
    .news-tag.match { background: #dbeafe; color: #1e40af; }
    .news-tag.media { background: #fce7f3; color: #9d174d; }
    .news-tag.event { background: #d1fae5; color: #065f46; }
    .news-title {
      font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.5;
    }
    .news-excerpt { font-size: 0.85rem; color: var(--gray); }

    /* ===== Sponsors ===== */
    .sponsors { background: var(--gray-light); }
    .sponsors-intro {
      text-align: center; max-width: 700px; margin: 0 auto 48px;
      font-size: 1rem; color: #4b5563; line-height: 1.9;
    }
    .sponsors-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      margin-bottom: 48px;
    }
    .sponsor-card {
      aspect-ratio: 5/2; border-radius: 12px; border: 2px dashed rgba(0,0,0,0.1);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 4px; color: var(--gray); transition: var(--transition);
    }
    .sponsor-card:hover { border-color: var(--primary); color: var(--primary); }
    .sponsor-card span { font-size: 0.8rem; }
    .sponsors-cta {
      text-align: center; padding: 56px; border-radius: var(--radius);
      background: linear-gradient(160deg, #ff6b00 0%, #e65c00 100%);
      color: #ffffff; position: relative; overflow: hidden;
    }
    .sponsors-cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 0%, rgba(255,107,0,0.15) 0%, transparent 60%);
    }
    .sponsors-cta h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px; position: relative; }
    .sponsors-cta p {
      font-size: 0.95rem; opacity: 0.8; margin-bottom: 0;
      max-width: 720px; margin-left: auto; margin-right: auto;
    }
    /* ===== Sponsors Stats Bar ===== */
    .sponsors-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      margin: 48px 0;
    }
    .sponsors-stat {
      text-align: center; padding: 32px 16px; border-radius: var(--radius);
      background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.08);
    }
    .sponsors-stat-num {
      font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 800;
      color: var(--primary); line-height: 1;
    }
    .sponsors-stat-num::after { content: '+'; }
    .sponsors-stat-label {
      font-size: 0.85rem; color: var(--gray); margin-top: 8px;
    }

    /* ===== Partnership Background Section ===== */
    .partnership-bg-section {
      position: relative; margin-top: 48px; padding: 56px 40px;
      border-radius: var(--radius); overflow: hidden;
      background: url('../images/partner.jpeg') center center / cover no-repeat;
    }
    .partnership-bg-section::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.6);
    }
    .partnership-bg-section > * { position: relative; z-index: 1; }

    /* ===== Sponsors Benefits Grid ===== */
    .sponsors-benefits-title {
      text-align: center; font-size: 1.4rem; font-weight: 700;
      color: #ffffff; margin: 0 0 24px;
    }
    .sponsors-benefits-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .sponsors-benefit-card {
      padding: 28px 20px; border-radius: var(--radius);
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(4px);
      text-align: center; transition: var(--transition);
    }
    .sponsors-benefit-card:hover {
      border-color: var(--primary);
      box-shadow: 0 0 20px rgba(255,107,0,0.25);
      transform: translateY(-4px);
      background: rgba(255,255,255,0.15);
    }
    .sponsors-benefit-icon {
      width: 48px; height: 48px; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: rgba(255,107,0,0.25); color: var(--primary);
    }
    .sponsors-benefit-card h4 {
      font-size: 0.95rem; font-weight: 600; color: #ffffff; margin-bottom: 8px;
    }
    .sponsors-benefit-card p {
      font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin: 0;
    }

    /* ===== What I Bring (Story Cards) ===== */
    .what-i-bring-title {
      text-align: center; font-size: 1.4rem; font-weight: 700;
      color: var(--light); margin: 48px 0 24px;
    }
    .what-i-bring-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-bottom: 48px;
    }
    .what-i-bring-card {
      padding: 36px 24px; border-radius: var(--radius);
      background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.08);
      text-align: center; transition: var(--transition);
    }
    .what-i-bring-card:hover {
      border-color: var(--primary);
      box-shadow: 0 0 24px rgba(255,107,0,0.18);
      transform: translateY(-4px);
    }
    .what-i-bring-icon {
      width: 56px; height: 56px; margin: 0 auto 20px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,45,0,0.10));
      color: var(--primary);
    }
    .what-i-bring-card h4 {
      font-size: 1.3rem; font-weight: 700; color: var(--light); margin-bottom: 12px;
    }
    .what-i-bring-card p {
      font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin: 0;
    }

    /* ===== Contact ===== */
    .contact {
      background: #ffffff;
    }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    }
    .contact-info h3 {
      font-size: 1.6rem; font-weight: 700; color: var(--light); margin-bottom: 16px;
    }
    .contact-info p { color: #4b5563; margin-bottom: 28px; }
    .contact-methods { display: flex; flex-direction: column; gap: 16px; }
    .contact-method {
      display: flex; align-items: center; gap: 16px; padding: 16px 20px;
      background: rgba(0,0,0,0.02); border-radius: 12px; box-shadow: var(--shadow);
    }
    .contact-method-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--primary); color: #ffffff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-method-text { font-size: 0.9rem; }
    .contact-method-text small { display: block; color: var(--gray); font-size: 0.8rem; }
    .contact-form {
      background: rgba(0,0,0,0.02); border-radius: var(--radius);
      padding: 44px; box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,0.08);
    }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 0.85rem; font-weight: 600;
      margin-bottom: 6px; color: var(--light);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 13px 18px; border-radius: 12px;
      border: 1.5px solid rgba(0,0,0,0.1); font-size: 0.9rem;
      font-family: inherit; transition: var(--transition);
      background: rgba(0,0,0,0.02); color: var(--light);
    }
    .form-group select option {
      background: #ffffff; color: var(--light);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none; border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(255,107,0,0.15);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .btn-submit {
      width: 100%; padding: 15px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #ffffff; border: none; border-radius: var(--radius);
      font-size: 0.9rem; font-weight: 600; cursor: pointer;
      transition: var(--transition); letter-spacing: 1px;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255,107,0,0.3);
    }

    /* ===== Footer ===== */
    .footer {
      background: #e65c00; color: rgba(255,255,255,0.75); padding: 72px 24px 36px;
      position: relative;
    }
    .footer::before {
      content: ''; position: absolute; top: -30px; left: 0; width: 100%; height: 30px;
      background: #e65c00;
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
      padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .footer-brand .nav-logo { color: #ffffff; font-size: 1.3rem; margin-bottom: 12px; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }
    .footer-col h4 {
      color: #ffffff; font-size: 0.9rem; font-weight: 600;
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block; font-size: 0.85rem; margin-bottom: 10px;
      transition: var(--transition);
    }
    .footer-col a:hover { color: var(--primary-light); }
    .footer-social {
      display: flex; gap: 12px; margin-top: 20px;
    }
    .footer-social a {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(255,255,255,0.15); display: flex;
      align-items: center; justify-content: center;
      transition: var(--transition); margin-bottom: 0; color: #ffffff;
    }
    .footer-social a:hover {
      background: rgba(255,255,255,0.3); color: #ffffff;
      transform: translateY(-3px);
    }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 24px; font-size: 0.8rem;
    }

    /* ===== Mobile Menu ===== */
    .mobile-menu {
      position: fixed; top: 0; right: 0; width: 80%; max-width: 360px;
      height: 100vh; z-index: 999;
      background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center; gap: 32px;
      box-shadow: -8px 0 40px rgba(0,0,0,0.1);
      display: flex;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mobile-menu.active {
      transform: translateX(0);
    }
    .mobile-menu a {
      font-size: 1.3rem; font-weight: 600; color: var(--light);
    }
    .mobile-close {
      position: absolute; top: 24px; right: 24px;
      background: none; border: none; font-size: 2rem;
      cursor: pointer; color: var(--light);
    }

    /* ===== Support Plan Cards ===== */
    .support-plans {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      max-width: 900px; margin: 0 auto;
    }
    .support-plan-card {
      background: #ffffff; border: 2px solid var(--gray-light);
      border-radius: var(--radius); padding: 36px 28px;
      text-align: center; position: relative;
      transition: var(--transition);
    }
    .support-plan-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .support-plan-card.featured {
      border-color: var(--primary);
      box-shadow: 0 8px 32px rgba(255,107,0,0.15);
    }
    .support-plan-card.featured::before {
      content: 'おすすめ';
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--primary); color: #ffffff;
      font-size: 0.75rem; font-weight: 700; padding: 4px 16px;
      border-radius: 20px; letter-spacing: 1px;
    }
    .support-plan-name {
      font-size: 1.1rem; font-weight: 700; color: var(--light);
      margin-bottom: 8px; letter-spacing: 0.5px;
    }
    .support-plan-price {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.2rem; font-weight: 800; color: var(--primary);
      margin-bottom: 4px; line-height: 1.2;
    }
    .support-plan-period {
      font-size: 0.8rem; color: var(--gray); margin-bottom: 20px;
    }
    .support-plan-features {
      list-style: none; padding: 0; margin: 0 0 24px;
      text-align: left; font-size: 0.85rem; color: var(--light);
    }
    .support-plan-features li {
      padding: 6px 0; border-bottom: 1px solid var(--gray-light);
    }
    .support-plan-features li::before {
      content: '\2713'; color: var(--primary); font-weight: 700;
      margin-right: 8px;
    }
    .support-plan-btn {
      display: block; width: 100%; padding: 12px 0;
      border: 2px solid var(--primary); border-radius: var(--radius);
      background: transparent; color: var(--primary);
      font-size: 0.9rem; font-weight: 600; cursor: pointer;
      transition: var(--transition); text-decoration: none; text-align: center;
    }
    .support-plan-btn:hover {
      background: var(--primary); color: #ffffff;
    }
    .support-plan-card.featured .support-plan-btn {
      background: var(--primary); color: #ffffff;
    }
    .support-plan-card.featured .support-plan-btn:hover {
      background: #e65c00; border-color: #e65c00;
    }

    /* ===== Fund Usage ===== */
    .fund-usage {
      max-width: 900px; margin: 0 auto;
    }
    .fund-usage-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .fund-usage-card {
      background: #ffffff; border-radius: var(--radius);
      padding: 32px 24px; text-align: center;
      border: 1px solid var(--gray-light);
      transition: var(--transition);
    }
    .fund-usage-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .fund-usage-icon {
      width: 48px; height: 48px; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: rgba(255,107,0,0.12); color: var(--primary);
      font-size: 1.3rem;
    }
    .fund-usage-card h4 {
      font-size: 0.95rem; font-weight: 600; color: var(--light); margin-bottom: 8px;
    }
    .fund-usage-card p {
      font-size: 0.82rem; color: var(--gray); line-height: 1.5; margin: 0;
    }

    /* ===== Detail Page Sections ===== */
    .detail-section {
      max-width: 1200px; margin: 0 auto;
      padding: 64px 24px;
      border-bottom: 1px solid var(--gray-light);
    }
    .detail-section:last-of-type {
      border-bottom: none;
    }
    .detail-section-title {
      font-size: 1.5rem; font-weight: 700; color: var(--light);
      margin-bottom: 8px; letter-spacing: 0.5px;
    }
    .detail-section-subtitle {
      font-size: 0.9rem; color: var(--gray); margin-bottom: 32px;
    }

    /* ===== Partnership Format Cards ===== */
    .partnership-formats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .partnership-format-card {
      background: #ffffff; border-radius: var(--radius);
      padding: 32px 24px; text-align: center;
      border: 1px solid var(--gray-light);
      transition: var(--transition);
    }
    .partnership-format-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .partnership-format-icon {
      width: 48px; height: 48px; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: rgba(255,107,0,0.12); color: var(--primary);
      font-size: 1.3rem;
    }
    .partnership-format-card h4 {
      font-size: 0.95rem; font-weight: 600; color: var(--light); margin-bottom: 8px;
    }
    .partnership-format-card p {
      font-size: 0.82rem; color: var(--gray); line-height: 1.5; margin: 0;
    }

    /* ===== Detail CTA ===== */
    .detail-cta {
      text-align: center; padding: 56px; border-radius: var(--radius);
      background: linear-gradient(160deg, #ff6b00 0%, #e65c00 100%);
      color: #ffffff; position: relative; overflow: hidden;
    }
    .detail-cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 0%, rgba(255,107,0,0.15) 0%, transparent 60%);
    }
    .detail-cta h3 {
      font-size: 1.5rem; font-weight: 700; margin-bottom: 12px;
      letter-spacing: 0.5px; position: relative;
    }
    .detail-cta p {
      font-size: 0.95rem; opacity: 0.8; margin-bottom: 24px;
      max-width: 720px; margin-left: auto; margin-right: auto;
      position: relative;
    }
    .detail-cta .btn {
      position: relative;
    }

    /* ===== Sponsors Buttons Row ===== */
    .sponsors-buttons {
      display: flex; justify-content: center; align-items: center;
      gap: 16px; flex-wrap: wrap;
    }

    /* ===== btn-outline-dark ===== */
    .btn-outline-dark {
      background: transparent; color: var(--light);
      border: 1.5px solid var(--gray-light);
    }
    .btn-outline-dark:hover {
      border-color: var(--primary); color: var(--primary);
      transform: translateY(-3px);
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .hero-name { font-size: 3.5rem; }
      .about-grid { grid-template-columns: 1fr; }
      .about-floating-card { right: 20px; }
      .achievements-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .playstyle-section { grid-template-columns: 1fr 1fr; }
      .section-watermark { font-size: 5rem; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      /* Hero: show only right image full-width */
      .hero-bg-left { display: none; }
      .hero-bg-right { width: 100%; }
      .achievements-bg-left, .schedule-bg-left, .news-bg-left { display: none; }
      .achievements-bg-right, .schedule-bg-right, .news-bg-right { width: 100%; }
      .hero-name { font-size: 2.6rem; }
      .hero-motto { font-size: 1rem; letter-spacing: 2px; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .btn { min-width: 0; width: 100%; max-width: 280px; }
      .hero-stats { gap: 24px; }
      .section { padding: 80px 16px; }
      .section-title { font-size: 2rem; }
      .section-watermark { font-size: 3.5rem; }
      .achievements-grid { grid-template-columns: 1fr; }
      .gallery-photos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .gallery-tabs { gap: 6px; }
      .gallery-tab { padding: 8px 16px; font-size: 0.75rem; }
      .news-card { grid-template-columns: 1fr; }
      .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .sponsors-stats { grid-template-columns: repeat(2, 1fr); }
      .sponsors-benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .timeline-grid { grid-template-columns: 1fr; gap: 32px 0; }
      .partnership-bg-section { padding: 40px 24px; }
      .what-i-bring-grid { grid-template-columns: 1fr; }
      .playstyle-section { grid-template-columns: 1fr; }
      .dual-career-banner { flex-direction: column; }
      .profile-table th { display: block; width: 100%; padding-bottom: 2px; }
      .profile-table td { display: block; padding-top: 2px; padding-bottom: 14px; }
      .about-info { gap: 16px 24px; }
      .lightbox-prev { left: 8px; }
      .lightbox-next { right: 8px; }
      .table-scroll-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .results-table { font-size: 0.8rem; }
      .results-table th, .results-table td { padding: 10px 8px; }
      .results-table .hide-mobile { display: none; }
      .support-plans { grid-template-columns: 1fr; max-width: 400px; }
      .fund-usage-grid { grid-template-columns: 1fr; }
      .partnership-formats { grid-template-columns: 1fr; }
      .sponsors-buttons { flex-direction: column; align-items: center; }
    }

    @media (max-width: 480px) {
      .gallery-photos { grid-template-columns: repeat(2, 1fr); }
      .hero-name { font-size: 2.2rem; }
      .hero-motto { font-size: 0.9rem; letter-spacing: 1.5px; }
      .hero-stat-num { font-size: 2rem; }
      .sponsors-grid { grid-template-columns: 1fr; }
      .sponsors-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .sponsors-stat { padding: 20px 12px; }
      .sponsors-stat-num { font-size: 1.8rem; }
      .sponsors-benefits-grid { grid-template-columns: 1fr; }
      .partnership-bg-section { padding: 32px 16px; }
      .what-i-bring-grid { grid-template-columns: 1fr; }
      .section-watermark { font-size: 2.5rem; }
      .support-plan-price { font-size: 1.8rem; }
      .detail-section { padding: 48px 16px; }
    }

    /* ===== Results Page ===== */
    .page-header {
      background: linear-gradient(160deg, #ff6b00 0%, #ff8c00 35%, #e65c00 55%, #d45500 80%, #c44e00 100%);
      padding: 100px 24px 48px; color: #ffffff;
    }
    .page-header-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .page-header a.back {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.85rem; opacity: 0.8; margin-bottom: 16px;
      transition: var(--transition);
    }
    .page-header a.back:hover { opacity: 1; }
    .page-header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.4rem; font-weight: 800; margin-bottom: 8px;
    }
    .page-header p { font-size: 1rem; opacity: 0.85; }

    /* Main */
    .main { max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px; }

    /* Stats summary */
    .stats-row {
      display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
    }
    .stat-card {
      flex: 1; min-width: 140px; background: rgba(0,0,0,0.02);
      border-radius: 12px; padding: 20px; box-shadow: var(--shadow);
      text-align: center; border: 1px solid rgba(0,0,0,0.08);
    }
    .stat-card-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem; font-weight: 800; color: var(--primary);
    }
    .stat-card-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

    /* Year heading */
    .year-heading {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem; font-weight: 800; color: var(--light);
      margin: 40px 0 16px; padding-bottom: 8px;
      border-bottom: 3px solid var(--primary);
      display: inline-block;
    }
    .year-heading:first-of-type { margin-top: 0; }

    /* Results page table overrides */
    .results-table .date-cell {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600; color: var(--gray); white-space: nowrap;
    }
    .results-table .tournament-cell a {
      color: inherit; text-decoration: underline;
      text-underline-offset: 2px;
    }
    .results-table .tournament-cell a:hover { color: var(--primary); }
    .results-table .category-cell {
      font-size: 0.75rem; font-weight: 600;
    }
    .cat-badge {
      display: inline-block; padding: 2px 10px; border-radius: 50px;
      font-size: 0.7rem; font-weight: 600;
    }
    .cat-finals { background: #fef3c7; color: #92400e; }
    .cat-platinum { background: #e0e7ff; color: #3730a3; }
    .cat-gold { background: #fef3c7; color: #92400e; }
    .cat-silver { background: #f3f4f6; color: #4b5563; }
    .cat-bronze { background: #fce7d6; color: #9a3412; }
    .cat-premier { background: #fce7f3; color: #9d174d; }

    .result-badge {
      display: inline-block; padding: 4px 12px; border-radius: 50px;
      font-size: 0.75rem; font-weight: 600;
    }
    .result-badge.qf { background: #dbeafe; color: #1e40af; }
    .result-badge.sf { background: #fef3c7; color: #92400e; }
    .result-badge.r16 { background: #e0e7ff; color: #3730a3; }
    .result-badge.r32 { background: #f3f4f6; color: #4b5563; }
    .result-badge.q1 { background: #f3f4f6; color: #4b5563; }

    /* Footer link */
    .fip-link {
      text-align: center; margin-top: 40px; padding: 24px;
      background: var(--gray-light); border-radius: 12px;
      font-size: 0.9rem; color: var(--gray);
    }
    .fip-link a { color: var(--primary); text-decoration: underline; }

    /* Results page responsive */
    @media (max-width: 768px) {
      .page-header h1 { font-size: 1.6rem; }
      .stats-row { gap: 12px; }
      .stat-card { padding: 14px; }
      .stat-card-num { font-size: 1.5rem; }
    }
