
    @import url('inline-font1_1');
    body {
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      font-family: 'Open Sans', Arial, sans-serif;
      color: #fff;
      min-height: 100vh;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 8vw 12px 8vw;
      background: rgba(30,60,114,0.95);
      border-bottom: 4px solid #ffbe00;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 60px;
      margin-right: 18px;
    }
    .logo-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      background: linear-gradient(90deg, #ffbe00, #ff2d55, #00e3ae, #ffbe00);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      letter-spacing: 2px;
    }
    nav {
      font-family: 'Roboto', sans-serif;
      font-size: 1.1rem;
    }
    nav a {
      color: #ffbe00;
      text-decoration: none;
      margin-left: 22px;
      font-weight: bold;
      transition: color 0.2s;
    }
    nav a:hover {
      color: #00e3ae;
    }
    main {
      padding: 0 8vw 40px 8vw;
      max-width: 1200px;
      margin: 0 auto;
    }
    .hero-image {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto 20px auto;
      display: block;
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(30,60,114,0.35);
      border: 4px solid #ffbe00;
    }
    .center-btn {
      display: flex;
      justify-content: center;
      margin: 18px 0 32px 0;
    }
    .cta-btn {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.3rem;
      background: linear-gradient(90deg, #ffbe00, #ff2d55);
      color: #fff;
      border: none;
      border-radius: 40px;
      padding: 16px 48px;
      cursor: pointer;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(255,46,85,0.15);
      transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .cta-btn:hover {
      background: linear-gradient(90deg, #ff2d55, #ffbe00, #00e3ae);
      color: #1e3c72;
    }
    h1, h2, h3 {
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(90deg, #ffbe00, #00e3ae, #ff2d55, #ffbe00);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }
    h1 {
      font-size: 2.6rem;
      margin-top: 20px;
      margin-bottom: 18px;
    }
    h2 {
      font-size: 2rem;
      margin-top: 36px;
      margin-bottom: 16px;
    }
    h3 {
      font-size: 1.5rem;
      margin-top: 30px;
      margin-bottom: 14px;
    }
    .highlight {
      color: #ffbe00;
      font-weight: bold;
    }
    .sport-theme {
      background: linear-gradient(135deg, #00e3ae 0%, #2a5298 100%);
      padding: 12px 32px;
      border-radius: 20px;
      color: #fff;
      margin-bottom: 30px;
      box-shadow: 0 4px 24px rgba(0,227,174,0.13);
    }
    .feature-table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      background: rgba(255,255,255,0.07);
      border-radius: 12px;
      overflow: hidden;
    }
    .feature-table th, .feature-table td {
      border: 1px solid #00e3ae;
      padding: 14px 10px;
      text-align: center;
      font-size: 1.1rem;
      color: #fff;
    }
    .feature-table th {
      background: #00e3ae;
      color: #1e3c72;
      font-weight: bold;
    }
    .quote {
      font-style: italic;
      color: #ffbe00;
      margin: 18px 0;
      padding-left: 16px;
      border-left: 4px solid #ffbe00;
    }
    footer {
      background: #1e3c72;
      color: #fff;
      padding: 32px 8vw 24px 8vw;
      text-align: center;
      border-top: 4px solid #ffbe00;
      font-size: 1.1rem;
      margin-top: 40px;
    }
    @media (max-width: 800px) {
      header, main, footer { padding-left: 3vw; padding-right: 3vw;}
      .hero-image { max-width: 100%; }
    }
    @media (max-width: 600px) {
      h1 { font-size: 1.5rem; }
      h2 { font-size: 1.2rem; }
      .logo img { height: 40px; }
      .logo-title { font-size: 1.1rem; }
      .cta-btn { font-size: 1rem; padding: 10px 20px; }
    }
  