
    /* Tổng quan */
    .page-bettingodds {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
      padding: 20px 0;
    }

    /* Vùng chứa chính */
    .page-bettingodds-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Tiêu đề chính */
    .page-bettingodds-hero {
      background: linear-gradient(135deg, #004d40, #00796b);
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-bettingodds-hero h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-bettingodds-hero p {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
      color: #e0e0e0;
    }

    .page-bettingodds-cta-button {
      display: inline-block;
      background-color: #ffb300;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-bettingodds-cta-button:hover {
      background-color: #ffa000;
      transform: translateY(-2px);
      color: #000; /* Ensure good contrast on hover */
    }

    /* Các phần nội dung */
    .page-bettingodds-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-bettingodds-section h2 {
      font-size: 2.2em;
      color: #004d40;
      margin-bottom: 25px;
      border-bottom: 3px solid #ffb300;
      padding-bottom: 10px;
      text-align: center;
    }

    .page-bettingodds-section h3 {
      font-size: 1.8em;
      color: #00796b;
      margin-top: 30px;
      margin-bottom: 15px;
      border-left: 5px solid #ffb300;
      padding-left: 10px;
    }

    .page-bettingodds-section p {
      margin-bottom: 15px;
      color: #444;
    }

    .page-bettingodds-list {
      list-style-type: none;
      padding-left: 0;
      margin-bottom: 20px;
    }

    .page-bettingodds-list li {
      background-color: #e8f5e9;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-left: 4px solid #00796b;
      border-radius: 4px;
      color: #333;
      font-weight: 500;
    }

    .page-bettingodds-list li strong {
      color: #004d40;
    }

    .page-bettingodds-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-bettingodds-card {
      background-color: #f0fdfa;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-bettingodds-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-bettingodds-card img {
      max-width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .page-bettingodds-card h4 {
      font-size: 1.5em;
      color: #004d40;
      margin-bottom: 10px;
    }

    .page-bettingodds-card p {
      font-size: 0.95em;
      color: #555;
    }

    .page-bettingodds-card a {
      display: inline-block;
      margin-top: 15px;
      color: #00796b;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-bettingodds-card a:hover {
      color: #004d40;
      text-decoration: underline;
    }

    /* FAQ */
    .page-bettingodds-faq-item {
      margin-bottom: 20px;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
    }

    .page-bettingodds-faq-question {
      font-weight: bold;
      color: #004d40;
      cursor: pointer;
      padding: 10px 0;
      position: relative;
      font-size: 1.1em;
    }

    .page-bettingodds-faq-question::after {
      content: '+';
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }

    .page-bettingodds-faq-question.active::after {
      content: '-';
      transform: translateY(-50%) rotate(180deg);
    }

    .page-bettingodds-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
      color: #555;
      padding: 0 10px;
    }

    .page-bettingodds-faq-answer p {
      margin-top: 10px;
    }

    /* Nút quay lại đầu trang */
    .page-bettingodds-scroll-top {
      display: none; /* Ẩn theo mặc định */
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #00796b;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 1.5em;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-bettingodds-scroll-top:hover {
      background-color: #004d40;
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-bettingodds-hero {
        padding: 40px 15px;
      }

      .page-bettingodds-hero h1 {
        font-size: 2em;
      }

      .page-bettingodds-hero p {
        font-size: 1em;
      }

      .page-bettingodds-section {
        padding: 25px;
      }

      .page-bettingodds-section h2 {
        font-size: 1.8em;
      }

      .page-bettingodds-section h3 {
        font-size: 1.5em;
      }

      .page-bettingodds-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .page-bettingodds-hero h1 {
        font-size: 1.8em;
      }

      .page-bettingodds-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-bettingodds-section h2 {
        font-size: 1.6em;
      }
    }
  