/* src/main/resources/templates/landing.html */

    html {
      background: #05070a;
    }

    .rj-club-landing-title,
    .rj-club-landing-team span,
    .rj-club-landing-copy,
    .rj-club-landing-stats div div:nth-child(2),
    .rj-club-landing-stats div div:nth-child(3) {
      text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.95);
    }

    .rj-club-landing-stats .material-symbols-rounded {
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
    }

    @media (max-width: 768px) {
      body.rj-club-landing {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 18px 0 96px;
      }

      .rj-club-landing-card {
        width: calc(100% - 36px) !important;
        margin: 0 auto !important;
        padding: 46px 28px 34px !important;
        border-radius: 28px !important;
        max-width: 520px !important;
      }

      .rj-club-landing-logos {
        gap: 16px !important;
        margin-bottom: 28px !important;
      }

      .rj-club-landing-logos img:first-child {
        width: 76px !important;
        height: 76px !important;
      }

      .rj-club-landing-logos img:last-child {
        width: 58px !important;
        height: 58px !important;
      }

      .rj-club-landing-title {
        font-size: 3.4rem !important;
        letter-spacing: 0 !important;
        line-height: 0.95 !important;
      }

      .rj-club-landing-team {
        margin-bottom: 28px !important;
      }

      .rj-club-landing-team span {
        font-size: 1.05rem !important;
        letter-spacing: 4px !important;
      }

      .rj-club-landing-copy {
        font-size: 1.08rem !important;
        line-height: 1.55 !important;
        margin-bottom: 40px !important;
      }

      .rj-club-landing-actions {
        flex-direction: column !important;
        gap: 16px !important;
        margin-bottom: 40px !important;
      }

      .rj-club-landing-actions a {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 8px !important;
        padding: 16px 20px !important;
        font-size: 1rem !important;
      }

      .rj-club-landing-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 12px !important;
        padding-top: 30px !important;
      }

      .rj-club-landing-stats > div {
        min-width: 0;
      }

      .rj-club-landing-stats span {
        font-size: 32px !important;
      }

      .rj-club-landing-stats div div:nth-child(2) {
        font-size: 0.76rem !important;
        letter-spacing: 0.8px !important;
        overflow-wrap: anywhere;
      }

      .rj-club-landing-stats div div:nth-child(3) {
        font-size: 0.68rem !important;
        line-height: 1.35 !important;
      }
    }

    @media (max-width: 420px) {
      .rj-club-landing-card {
        width: calc(100% - 28px) !important;
        padding: 42px 24px 30px !important;
      }

      .rj-club-landing-title {
        font-size: 2.75rem !important;
      }

      .rj-club-landing-copy {
        font-size: 1rem !important;
      }

      .rj-club-landing-stats {
        gap: 10px !important;
      }
    }
  
