
    /* ===== GLOBAL RESET ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    html, body {
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      line-height: 1.6;
      color: #111;
      background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    /* ===== HEADER ===== */
    .fv-header {
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(11, 61, 28, 0.1);
      backdrop-filter: blur(10px);
      animation: slideDown 0.5s ease;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* TOP BAR */
    .fv-topbar {
      background: linear-gradient(135deg, #0b3d1c 0%, #0f7a3a 50%, #13a350 100%);
      padding: 16px 0;
      position: relative;
      overflow: hidden;
    }

    .fv-topbar::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      to {
        left: 100%;
      }
    }

    .fv-container {
      max-width: 1300px;
      margin: auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    /* LOGO */
    .fv-logo a {
      font-size: 28px;
      font-weight: 900;
      color: #ffffff;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .fv-logo a:hover {
      transform: scale(1.05);
    }

    .fv-logo span {
      color: #ffd700;
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    /* DESKTOP MENU */
    .fv-top-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .fv-top-menu a {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      position: relative;
      padding: 8px 0;
    }

    .fv-top-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #ffd700;
      transition: width 0.3s ease;
    }

    .fv-top-menu a:hover::after,
    .fv-top-menu a.active::after {
      width: 100%;
    }

    .fv-top-menu a:hover,
    .fv-top-menu a.active {
      color: #ffd700;
    }

    /* VIP BUTTON */
    .vip-btn {
      background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      color: #0b3d1c !important;
      padding: 10px 24px;
      border-radius: 30px;
      font-weight: 800;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      position: relative;
      overflow: hidden;
    }

    .vip-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .vip-btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .vip-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    }

    /* CATEGORY BAR */
    .fv-bottombar {
      background: linear-gradient(135deg, #062c14 0%, #094d23 100%);
      padding: 12px 0;
      border-top: 1px solid rgba(255, 215, 0, 0.1);
    }

    .fv-bottom-menu {
      max-width: 1300px;
      margin: auto;
      padding: 0 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .fv-bottom-menu a {
      font-size: 14px;
      font-weight: 600;
      color: #e6f5eb;
      padding: 6px 14px;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .fv-bottom-menu a:hover {
      color: #ffd700;
      background: rgba(255, 215, 0, 0.1);
      transform: translateY(-2px);
    }

    /* MOBILE MENU */
    .fv-menu-toggle {
      display: none;
      font-size: 28px;
      color: #ffffff;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .fv-menu-toggle:hover {
      transform: rotate(90deg);
    }

    .fv-mobile-menu {
      display: none;
      flex-direction: column;
      background: linear-gradient(135deg, #062c14 0%, #094d23 100%);
      padding: 20px;
      animation: slideDown 0.3s ease;
    }

    .fv-mobile-menu.active {
      display: flex;
    }

    .fv-mobile-menu a {
      padding: 14px 0;
      font-weight: 600;
      color: #ffffff;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s ease;
    }

    .fv-mobile-menu a:hover {
      color: #ffd700;
      padding-left: 10px;
    }

    /* ===== MAIN CONTENT ===== */
    .container {
      max-width: 1000px;
      margin: auto;
      padding: 25px 20px;
    }

    /* HERO SECTION */
    .hero {
      background: linear-gradient(135deg, #0b3d1c 0%, #0f7a3a 100%);
      color: white;
      padding: 60px 40px;
      border-radius: 30px;
      margin-bottom: 50px;
      box-shadow: 0 20px 60px rgba(11, 61, 28, 0.3);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 900;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 15px;
      opacity: 0.95;
      position: relative;
    }

    .date {
      font-size: 16px;
      font-weight: 600;
      margin-top: 25px;
      padding: 12px 24px;
      background: rgba(255, 215, 0, 0.2);
      border-radius: 25px;
      display: inline-block;
      border: 2px solid rgba(255, 215, 0, 0.3);
    }

    /* TIPS SECTION */
    .tips-wrapper {
      background: white;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
      margin-bottom: 35px;
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .tips-title {
      font-size: 24px;
      font-weight: 800;
      color: #0b3d1c;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      text-align: center;
      width: 100%;
    }

    .tips-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 4px;
      background: linear-gradient(90deg, transparent, #13a350, transparent);
      border-radius: 2px;
    }

    /* TABS - Exact match to image */
    .tips-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-bottom: 18px;
      border-radius: 40px;
      overflow: hidden;
      background: #5a8b6a;
      padding: 0;
    }

    .tab {
      padding: 10px 14px;
      border: none;
      background: #5a8b6a;
      border-radius: 0;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.3s ease;
      color: white;
      text-align: center;
      white-space: nowrap;
    }

    .tab:first-child {
      border-radius: 40px 0 0 40px;
    }

    .tab:last-child {
      border-radius: 0 40px 40px 0;
    }

    .tab:hover {
      background: #4a7a5a;
    }

    .tab.active {
      background: #2d5740;
      color: white;
    }

    /* TIPS TABLE - Exact desktop layout from image */
    .tips-box {
      border: 1px solid #e0e0e0;
      border-radius: 16px;
      overflow: hidden;
      background: white;
    }

    .tips-header {
      background: #2d5740;
      color: white;
      padding: 12px 14px;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.5px;
      text-align: center;
    }

    .tips-table {
      width: 100%;
    }

    .tips-row {
      display: grid;
      grid-template-columns: 55px 170px 1fr 100px 40px;
      gap: 16px;
      padding: 11px 14px;
      border-bottom: 1px solid #f0f0f0;
      align-items: center;
      transition: all 0.2s ease;
      background: white;
    }

    .tips-row:hover {
      background: #fafafa;
    }

    .tips-row:last-child {
      border-bottom: none;
    }

    .time {
      font-weight: 600;
      color: #555;
      font-size: 12.5px;
      text-align: left;
    }

    .league-cell {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: #666;
      font-weight: 500;
    }

    .league-icon {
      width: 15px;
      height: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
    }

    /* Match teams container - centered score between teams */
    .match-teams {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items: center;
    }

    .team {
      font-weight: 600;
      color: #222;
      font-size: 13px;
    }

    .team:first-child {
      text-align: right;
    }

    .team:last-child {
      text-align: left;
    }

    .score {
      font-weight: 700;
      color: #333;
      font-size: 13px;
      text-align: center;
      padding: 0 12px;
      white-space: nowrap;
    }

    .pick {
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: 700;
      text-align: center;
      font-size: 12.5px;
      white-space: nowrap;
      display: inline-block;
    }

    /* Pick color variations */
    .pick.neutral {
      background: #e8e8e8;
      color: #333;
    }

    .pick.won {
      background: #4CAF50;
      color: white;
    }

    .pick.lost {
      background: #d94b38;
      color: white;
    }

    /* Status indicator */
    .status {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .status.won {
      color: #4CAF50;
    }

    .status.lost {
      color: #d94b38;
    }

    .status-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 13px;
    }

    .status.won .status-icon {
      background: #4CAF50;
      color: white;
    }

    .status.lost .status-icon {
      background: #d94b38;
      color: white;
    }

    /* SECTION */
    .section {
      background: white;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      margin-bottom: 50px;
      animation: fadeInUp 0.8s ease 0.4s backwards;
    }

    .section h2 {
      font-size: 28px;
      font-weight: 800;
      color: #0b3d1c;
      margin-bottom: 20px;
    }

    .section p {
      font-size: 17px;
      line-height: 1.8;
      color: #555;
    }

    /* UPCOMING PREDICTIONS */
    .upcoming-predictions {
      background: white;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      margin-bottom: 50px;
      animation: fadeInUp 0.8s ease 0.5s backwards;
    }

    .section-title {
      font-size: 28px;
      font-weight: 800;
      color: #0b3d1c;
      margin-bottom: 30px;
      text-align: center;
    }

    .upcoming-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .upcoming-card {
      background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
      border: 1px solid #e8f5ed;
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s ease;
    }

    .upcoming-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(11, 61, 28, 0.15);
      border-color: #0f7a3a;
    }

    .upcoming-league {
      font-size: 12px;
      font-weight: 700;
      color: #0f7a3a;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .upcoming-match {
      font-size: 16px;
      font-weight: 700;
      color: #0b3d1c;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .upcoming-time {
      font-size: 13px;
      color: #666;
      margin-bottom: 12px;
    }

    .upcoming-tip {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, #0f7a3a 0%, #13a350 100%);
      padding: 8px 12px;
      border-radius: 8px;
      text-align: center;
    }

    /* SEO CONTENT ARTICLE */
    .seo-content {
      background: white;
      border-radius: 30px;
      padding: 50px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      margin-bottom: 50px;
      animation: fadeInUp 0.8s ease 0.6s backwards;
    }

    .seo-content h2 {
      font-size: 32px;
      font-weight: 800;
      color: #0b3d1c;
      margin-bottom: 25px;
      line-height: 1.3;
    }

    .seo-content h3 {
      font-size: 24px;
      font-weight: 700;
      color: #0f7a3a;
      margin-top: 35px;
      margin-bottom: 15px;
    }

    .seo-content p {
      font-size: 16px;
      line-height: 1.9;
      color: #444;
      margin-bottom: 20px;
    }

    .seo-content ul {
      margin: 20px 0 20px 25px;
      line-height: 1.9;
    }

    .seo-content ul li {
      font-size: 16px;
      color: #444;
      margin-bottom: 12px;
    }

    .seo-content strong {
      color: #0b3d1c;
      font-weight: 700;
    }

    .cta-box {
      background: linear-gradient(135deg, #0b3d1c 0%, #0f7a3a 100%);
      color: white;
      padding: 30px;
      border-radius: 20px;
      margin: 40px 0;
      text-align: center;
    }

    .cta-box h3 {
      color: #ffd700;
      margin-top: 0;
      margin-bottom: 15px;
    }

    .cta-box p {
      color: white;
      font-size: 17px;
      margin-bottom: 0;
    }

    .disclaimer-text {
      font-size: 14px;
      color: #888;
      font-style: italic;
      padding: 20px;
      background: #f9f9f9;
      border-left: 4px solid #0f7a3a;
      border-radius: 8px;
      margin-top: 30px;
    }

    /* FOOTER */
    .site-footer {
      background: linear-gradient(135deg, #0b3d1c 0%, #062c14 100%);
      color: #ffffff;
      padding: 50px 0 25px;
      margin-top: 80px;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #ffd700, transparent);
    }

    .footer-container {
      max-width: 1300px;
      margin: auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .footer-box h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 20px;
      color: #ffd700;
    }

    .footer-box p {
      line-height: 1.8;
      color: #e6f5eb;
      opacity: 0.9;
    }

    .footer-box ul {
      list-style: none;
    }

    .footer-box ul li {
      margin-bottom: 12px;
    }

    .footer-box ul li a {
      color: #e6f5eb;
      font-size: 15px;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .footer-box ul li a:hover {
      color: #ffd700;
      transform: translateX(5px);
    }

    .footer-bottom {
      margin-top: 40px;
      padding-top: 25px;
      text-align: center;
      font-size: 14px;
      color: #cde5d6;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .fv-top-menu,
      .fv-bottombar {
        display: none;
      }

      .fv-menu-toggle {
        display: block;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .tips-wrapper,
      .section {
        padding: 25px 20px;
      }

      .tips-title {
        font-size: 26px;
      }

      .tips-tabs {
        gap: 0;
      }

      .tab {
        padding: 12px 14px;
        font-size: 13px;
      }

      /* Mobile: Card-based layout matching the exact image structure */
      .tips-box {
        border: none;
        background: transparent;
      }

      .tips-header {
        border-radius: 12px;
        margin-bottom: 16px;
      }

      .tips-table {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .tips-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 0;
        padding: 20px 16px;
        border: 1px solid #e8e8e8;
        border-radius: 16px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        position: relative;
      }

      .tips-row:hover {
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }

      /* Row 1: League at the top spanning both columns with underline */
      .league-cell {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-content: center;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e8e8e8;
      }

      .league-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
      }

      /* Row 2 Left: Time badge */
      .time {
        grid-column: 1;
        grid-row: 2;
        text-align: left;
        background: #f5f5f5;
        padding: 8px 14px;
        border-radius: 10px;
        width: fit-content;
        font-size: 13px;
        margin-bottom: 16px;
        align-self: start;
      }

      /* Row 2 Right: Pick/Bet button */
      .pick {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        align-self: start;
        padding: 8px 20px;
        font-size: 13px;
        border-radius: 10px;
        margin-bottom: 16px;
      }

      /* Add checkmark icon before won picks */
      .pick.won::before {
        content: '✓';
        margin-right: 6px;
        font-weight: 900;
      }

      /* Add X icon before lost picks */
      .pick.lost::before {
        content: '✗';
        margin-right: 6px;
        font-weight: 900;
      }

      /* Row 3: Teams and Score spanning both columns */
      .match-teams {
        grid-column: 1 / -1;
        grid-row: 3;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 12px;
        align-items: center;
        margin-top: 0;
      }

      .team {
        font-size: 15px;
        font-weight: 600;
      }

      .team:first-child {
        text-align: right;
      }

      .team:last-child {
        text-align: left;
      }

      .score {
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        padding: 0 12px;
      }

      /* Status icon hidden on mobile */
      .status {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding: 40px 25px;
      }

      .hero h1 {
        font-size: 26px;
      }

      .tips-title {
        font-size: 22px;
      }

      .tips-wrapper {
        padding: 20px 12px;
      }

      .tab {
        padding: 10px 12px;
        font-size: 12px;
      }

      .tips-row {
        padding: 18px 14px;
      }

      .league-cell {
        font-size: 14px;
      }

      .team {
        font-size: 14px;
      }

      .pick {
        font-size: 12px;
        padding: 7px 18px;
      }

      /* Upcoming predictions responsive */
      .upcoming-predictions {
        padding: 25px 16px;
      }

      .section-title {
        font-size: 22px;
      }

      .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      /* SEO content responsive */
      .seo-content {
        padding: 30px 20px;
      }

      .seo-content h2 {
        font-size: 24px;
      }

      .seo-content h3 {
        font-size: 20px;
        margin-top: 25px;
      }

      .seo-content p,
      .seo-content ul li {
        font-size: 15px;
      }

      .cta-box {
        padding: 25px 20px;
      }
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }
  