
    .page-181-bet {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 100px; /* Space for floating buttons */
    }

    .page-181-bet__header-content {
      text-align: center;
      padding: 10px 0;
      background-color: #2c2c2c;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-181-bet__brand-keyword {
      margin: 0;
      font-size: 2.2em;
      color: #ffcc00;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: bold;
      text-shadow: 0 0 8px rgba(255, 204, 0, 0.7);
    }

    .page-181-bet__hero-section {
      position: relative;
      width: 100%;
      padding-top: 10px;
      text-align: center;
      color: #fff;
      overflow: hidden;
      background-color: #000;
    }

    .page-181-bet__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px;
    }

    .page-181-bet__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-181-bet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-181-bet__hero-subtitle {
      font-size: 1.3em;
      max-width: 800px;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-181-bet__promo-link {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-181-bet__promo-link:hover {
      background-color: #0056b3;
    }

    .page-181-bet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1001;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-181-bet__floating-button {
      background-color: #ffcc00;
      color: #1a1a1a;
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: 45%;
      text-align: center;
    }

    .page-181-bet__floating-button--login {
      background-color: #007bff;
      color: #fff;
    }

    .page-181-bet__floating-button:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    .page-181-bet__floating-button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-181-bet__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-181-bet__section-title {
      text-align: center;
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-181-bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #007bff;
      border-radius: 2px;
    }

    .page-181-bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .page-181-bet__product-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 350px;
      box-sizing: border-box;
    }

    .page-181-bet__product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-181-bet__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-181-bet__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-181-bet__product-card:hover .page-181-bet__product-image {
      transform: scale(1.05);
    }

    .page-181-bet__product-content {
      padding: 20px;
    }

    .page-181-bet__product-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-181-bet__product-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
      word-wrap: break-word;
    }

    .page-181-bet__btn-detail {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-181-bet__btn-detail:hover {
      background-color: #0056b3;
    }

    .page-181-bet__text-content {
      font-size: 1.1em;
      color: #e0e0e0;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-181-bet__highlight-text {
      color: #ffcc00;
      font-weight: bold;
    }

    .page-181-bet__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-181-bet__feature-item {
      background-color: #2c2c2c;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-181-bet__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-181-bet__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-181-bet__feature-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-181-bet__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-181-bet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-181-bet__provider-item {
      background-color: #2c2c2c;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      max-width: 200px;
      width: 100%;
    }

    .page-181-bet__provider-item:hover {
      transform: scale(1.05);
    }

    .page-181-bet__provider-logo {
      width: 100%;
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-181-bet__provider-name {
      font-size: 1.1em;
      color: #fff;
      font-weight: bold;
    }

    .page-181-bet__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-181-bet__payment-item {
      background-color: #2c2c2c;
      padding: 10px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-181-bet__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-181-bet__payment-logo {
      width: 80px;
      height: 50px;
      object-fit: contain;
      margin-bottom: 5px;
    }

    .page-181-bet__payment-name {
      font-size: 0.9em;
      color: #fff;
    }

    .page-181-bet__faq-container {
      margin-top: 40px;
    }

    .page-181-bet__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-181-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-181-bet__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-181-bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-181-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-181-bet__faq-item.active .page-181-bet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-181-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #2c2c2c;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-181-bet__faq-item.active .page-181-bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-181-bet__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-181-bet__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #3a3a3a;
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.5em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-181-bet__social-link:hover {
      background-color: #007bff;
    }

    @media (max-width: 768px) {
      .page-181-bet__brand-keyword {
        font-size: 1.8em;
      }

      .page-181-bet__hero-title {
        font-size: 2em;
      }

      .page-181-bet__hero-subtitle {
        font-size: 1em;
      }

      .page-181-bet__section-title {
        font-size: 2em;
      }

      .page-181-bet__section {
        padding: 30px 15px;
      }

      .page-181-bet__product-grid,
      .page-181-bet__features-list,
      .page-181-bet__provider-grid {
        grid-template-columns: 1fr;
      }

      .page-181-bet__product-card,
      .page-181-bet__feature-item,
      .page-181-bet__provider-item,
      .page-181-bet__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-181-bet__product-image-wrapper {
        height: 180px;
      }

      .page-181-bet__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-181-bet__faq-answer {
        padding: 15px !important;
      }

      .page-181-bet__text-content {
        font-size: 1em;
      }
      
      .page-181-bet__floating-button {
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-181-bet__hero-title {
        font-size: 1.6em;
      }

      .page-181-bet__hero-subtitle {
        font-size: 0.9em;
      }

      .page-181-bet__brand-keyword {
        font-size: 1.6em;
      }

      .page-181-bet__promo-link {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-181-bet__floating-button {
        padding: 10px 10px;
        font-size: 0.9em;
      }
    }
  