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

    body {
      font-family: 'Inter', sans-serif;
      background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 36px, transparent 36px, transparent 72px),
        linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
      min-height: 100vh;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    .header {
      text-align: center;
      color: white;
      margin-bottom: 2.5rem;
      animation: slideDown 0.8s ease-out;
    }

    .header h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 56px;
      letter-spacing: 3px;
      margin-bottom: 0.5rem;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      background: linear-gradient(135deg, #FFF 0%, #FFD700 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .header .subtitle {
      font-size: 16px;
      color: #B8D4F4;
      font-weight: 400;
      letter-spacing: 0.5px;
    }

    .clubs-carousel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 900px) {
      .clubs-carousel {
        grid-template-columns: repeat(2, 1fr);
      }

      .header h1 {
        font-size: 38px;
      }

      .data-grid {
        grid-template-columns: 1fr;
      }

      .detail-body {
        grid-template-columns: 1fr;
      }

      .stats-banner {
        flex-direction: column;
      }

      .intro-screen h1 {
        font-size: 48px;
      }

      .intro-screen .tagline {
        font-size: 18px;
      }
    }

    @media (max-width: 560px) {
      .clubs-carousel {
        grid-template-columns: 1fr;
      }

      .container {
        padding: 1rem;
      }

      .header h1 {
        font-size: 30px;
      }

      .detail-panel-body {
        padding: 1.25rem;
      }

      .nav-buttons {
        flex-direction: column;
      }

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

      .intro-screen h1 {
        font-size: 36px;
      }

      .detail-header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    .club-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 1.75rem 1.5rem 1.5rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.6s ease-out backwards;
      text-align: center;
    }

    .club-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .club-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .club-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    .club-card:nth-child(4) {
      animation-delay: 0.4s;
    }

    .club-card:nth-child(5) {
      animation-delay: 0.5s;
    }

    .club-card:nth-child(6) {
      animation-delay: 0.6s;
    }

    .club-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .club-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: #FFD700;
      box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    }

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

    .club-card.active {
      border: 2px solid #FFD700;
      background: rgba(255, 215, 0, 0.15);
      transform: scale(1.05);
    }

    .card-accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      border-radius: 16px 16px 0 0;
    }

    .club-badge {
      display: block;
      margin: 0 auto 0.85rem;
      filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
    }

    .club-name {
      font-weight: 700;
      font-size: 18px;
      color: white;
      margin-bottom: 0.3rem;
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1px;
    }

    .club-ligue {
      font-size: 13px;
      color: #B8D4F4;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
    }

    .club-budget {
      font-size: 12px;
      color: #FFD700;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
    }

    .detail-panel {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      animation: slideUp 0.5s ease-out;
    }

    .detail-accent {
      height: 7px;
    }

    .detail-panel-body {
      padding: 2rem;
    }

    .detail-header {
      border-bottom: 1px solid #E4E9F0;
      padding-bottom: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .detail-header-top {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
    }

    .detail-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 34px;
      color: #1F4E79;
      letter-spacing: 1.5px;
      margin-bottom: 0.35rem;
    }

    .pill-row {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 12px;
      font-weight: 600;
      padding: 0.32rem 0.75rem;
      border-radius: 20px;
      background: #EEF4FB;
      color: #1F4E79;
    }

    .pill-europe {
      background: #FFF6DC;
      color: #8A6400;
    }

    .budget-line {
      margin-top: 0.9rem;
      font-size: 14px;
      font-weight: 700;
      color: #1F4E79;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .detail-body {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 2rem;
      align-items: start;
    }

    .context-section h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 21px;
      color: #2E74B5;
      margin-bottom: 0.85rem;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .context-list {
      list-style: none;
    }

    .context-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      padding: 0.5rem 0;
      color: #333;
      line-height: 1.6;
      font-size: 14px;
    }

    .context-list li i {
      color: #2E74B5;
      font-size: 14px;
      margin-top: 0.25rem;
      flex: 0 0 auto;
    }

    .data-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-top: 0.25rem;
    }

    .data-item {
      background: linear-gradient(135deg, #F0F7FF 0%, #E6F1FB 100%);
      border-left: 3px solid #2E74B5;
      padding: 0.7rem 0.9rem;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
    }

    .data-icon {
      flex: 0 0 auto;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: #1F4E79;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .data-text {
      min-width: 0;
    }

    .data-label {
      font-size: 11.5px;
      color: #666;
      margin-bottom: 0.2rem;
      line-height: 1.3;
    }

    .data-value {
      font-size: 15px;
      font-weight: 700;
      color: #1F4E79;
    }

    .nav-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      justify-content: center;
    }

    .btn {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, #1F4E79 0%, #2E74B5 100%);
      color: white;
      box-shadow: 0 4px 12px rgba(31, 78, 121, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(31, 78, 121, 0.4);
    }

    .btn-secondary {
      background: white;
      color: #1F4E79;
      border: 2px solid #1F4E79;
    }

    .btn-secondary:hover {
      background: #1F4E79;
      color: white;
    }

    .intro-screen {
      text-align: center;
      color: white;
      padding: 4rem 2rem;
    }

    .intro-screen h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      letter-spacing: 4px;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #FFF 0%, #FFD700 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: glow 2s ease-in-out infinite;
    }

    .intro-screen .tagline {
      font-size: 22px;
      color: #B8D4F4;
      margin-bottom: 3rem;
      font-weight: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
    }

    .intro-screen .start-btn {
      background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      color: #1F4E79;
      padding: 1.1rem 2.75rem;
      font-size: 18px;
      font-weight: 700;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
      transition: all 0.3s;
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 2px;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }

    .intro-screen .start-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
    }

    .stats-banner {
      display: flex;
      justify-content: space-around;
      margin: 3rem 0;
      gap: 1rem;
    }

    .stat-box {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 1.5rem;
      flex: 1;
    }

    .stat-box i {
      font-size: 26px;
      color: #FFD700;
      display: block;
      margin-bottom: 0.5rem;
    }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 44px;
      color: #FFD700;
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 13px;
      color: #B8D4F4;
      letter-spacing: 0.5px;
    }

    .btn-switch-page {
      position: fixed;
      top: 1.25rem;
      right: 1.5rem;
      z-index: 100;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.6rem 1.1rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: white;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-switch-page:hover {
      border-color: #FFD700;
      background: rgba(255, 215, 0, 0.15);
    }

    footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      text-align: center;
      color: rgba(255, 255, 255, 0.35);
      font-size: 12px;
      letter-spacing: 1px;
      pointer-events: none;
      padding-bottom: 0.5rem;
    }

    .screen {
      display: none;
    }

    .screen.active {
      display: block;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes glow {

      0%,
      100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
      }

      50% {
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
      }
    }
