.elementor-297 .elementor-element.elementor-element-2572f9a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6d07609 *//* ============================================
       Liquid Glass Design System - Sports Theme
       ============================================ */
    :root {
      --lg-bg: rgba(255, 255, 255, 0.06);
      --lg-bg-strong: rgba(255, 255, 255, 0.1);
      --lg-border: rgba(255, 255, 255, 0.14);
      --lg-border-accent: rgba(28, 237, 112, 0.35);
      --lg-blur: 28px;
      --lg-radius: 22px;
      --liquid-ease: cubic-bezier(0.34, 1.2, 0.64, 1);
      --accent: #1ced70;
      --accent-orange: #ff6b35; /* Sports energy accent */
      --accent-dim: rgba(28, 237, 112, 0.12);
      --specular: rgba(255, 255, 255, 0.18);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Outfit', 'Varela Round', sans-serif;
      background: #0d0d0d;
      color: white;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      direction: ltr;
      line-height: 1.6;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: 
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(28, 237, 112, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    /* ============================================
       Navigation
       ============================================ */
    .review-breadcrumb {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 40px 0;
      font-size: 13px;
      position: relative;
      z-index: 1;
    }
    .review-breadcrumb__container { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); }
    .review-breadcrumb__link { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .review-breadcrumb__link:hover { color: var(--accent); }
    .review-breadcrumb__sep { font-size: 10px; opacity: 0.5; }
    .review-breadcrumb__current { color: rgba(255,255,255,0.8); font-weight: 500; }

    /* ============================================
       Page Header
       ============================================ */
    .page-hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 40px 60px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .page-hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(255, 107, 53, 0.1);
      border: 1px solid rgba(255, 107, 53, 0.3);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent-orange);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .page-hero__title {
      font-size: 56px;
      font-weight: 700;
      margin-bottom: 24px;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .page-hero__desc {
      font-size: 19px;
      color: rgba(255, 255, 255, 0.65);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* ============================================
       Content Sections
       ============================================ */
    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 60px;
      position: relative;
      z-index: 1;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 32px;
      text-align: center;
    }
    
    .section-subtitle {
      text-align: center;
      color: rgba(255,255,255,0.5);
      margin-top: -20px;
      margin-bottom: 40px;
      font-size: 15px;
    }

    /* ============================================
       Sport Cards Grid - Innovative Design
       ============================================ */
    .sports-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .sport-card {
      position: relative;
      border-radius: var(--lg-radius);
      background: var(--lg-bg);
      backdrop-filter: blur(var(--lg-blur));
      border: 1px solid var(--lg-border);
      transition: all 0.45s var(--liquid-ease);
      overflow: hidden;
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
      display: flex;
      flex-direction: column;
    }

    .sport-card:hover {
      transform: translateY(-8px);
      border-color: var(--lg-border-accent);
      background: var(--lg-bg-strong);
      box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
    }

    /* Card Header with Icon Background */
    .sport-card__header {
      position: relative;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .sport-card__header::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 150px;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(28, 237, 112, 0.05));
      pointer-events: none;
    }

    .sport-card__icon-box {
      width: 64px;
      height: 64px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--lg-border-accent);
      border-radius: 16px;
    }

    .sport-card__icon-box svg {
      width: 32px;
      height: 32px;
      stroke: var(--accent);
    }

    .sport-card__title-group {
      flex: 1;
    }

    .sport-card__name {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .sport-card__markets {
      font-size: 13px;
      color: var(--accent);
      font-weight: 500;
    }

    /* Card Body */
    .sport-card__body {
      padding: 24px 28px;
      flex-grow: 1;
    }

    .sport-card__desc {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
      margin-bottom: 20px;
    }

    /* Betting Types Tags */
    .sport-card__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }

    .sport-card__tag {
      padding: 6px 12px;
      background: rgba(255,255,255,0.05);
      border-radius: 8px;
      font-size: 12px;
      color: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.08);
    }

    /* Innovation: Popularity Bar */
    .sport-card__stats {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .stat-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }

    .progress-bar {
      width: 100%;
      height: 6px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .progress-bar__fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent), #00ff88);
      border-radius: 10px;
      transition: width 1s ease-out;
    }

    /* ============================================
       Bottom CTA Section
       ============================================ */
    .cta-section {
      max-width: 1200px;
      margin: 60px auto 0;
      padding: 0 40px 80px;
      position: relative;
      z-index: 1;
    }

    .cta-card {
      padding: 48px;
      border-radius: var(--lg-radius);
      background: linear-gradient(135deg, rgba(28, 237, 112, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      border: 1px solid var(--lg-border-accent);
      backdrop-filter: blur(var(--lg-blur));
      text-align: center;
    }

    .cta-card__title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .cta-card__desc {
      color: rgba(255,255,255,0.6);
      max-width: 600px;
      margin: 0 auto 32px;
      font-size: 16px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: var(--accent);
      color: #000;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 14px;
      transition: all 0.35s var(--liquid-ease);
      box-shadow: 0 8px 28px rgba(28, 237, 112, 0.3);
    }

    .cta-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 36px rgba(28, 237, 112, 0.45);
      background: #1ef575;
    }

    .cta-btn svg {
      width: 20px;
      height: 20px;
    }

    /* ============================================
       Responsive
       ============================================ */
    @media (max-width: 900px) {
      .sports-grid { grid-template-columns: 1fr; }
      .page-hero__title { font-size: 40px; }
    }

    @media (max-width: 768px) {
      .review-breadcrumb { padding: 20px; }
      .page-hero { padding: 30px 20px 40px; }
      .content-wrapper { padding: 0 20px 40px; }
      .cta-section { padding: 0 20px 60px; }
      .cta-card { padding: 32px 24px; }
    }/* End custom CSS */