
    .page-66-bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-66-bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-66-bet__hero-section {
      position: relative;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient inspired by typical betting sites */
      color: #fff;
      padding: 10px 0 60px; /* Small top padding for fixed header, larger bottom */
      text-align: center;
      overflow: hidden;
    }

    .page-66-bet__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]'); /* Abstract pattern */
      background-size: cover;
      background-position: center;
      opacity: 0.1;
      z-index: 0;
    }

    .page-66-bet__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 0;
    }

    .page-66-bet__logo-text {
      font-size: 3.5em; /* Larger for brand keyword */
      font-weight: bold;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      letter-spacing: 2px;
    }

    .page-66-bet__hero-slogan {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 300;
    }

    .page-66-bet__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-66-bet__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffc107; /* Bright yellow/gold */
      color: #1a2a6c;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-66-bet__button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-66-bet__button--secondary {
      background-color: #28a745; /* Green for login or other action */
      color: #fff;
    }

    .page-66-bet__button--secondary:hover {
      background-color: #218838;
    }

    /* Floating Buttons */
    .page-66-bet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 15px;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-66-bet__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      max-width: 48%; /* To ensure two buttons fit well */
    }

    .page-66-bet__floating-button--register {
      background-color: #ffc107;
      color: #1a2a6c;
    }

    .page-66-bet__floating-button--register:hover {
      background-color: #e0a800;
    }

    .page-66-bet__floating-button--login {
      background-color: #28a745;
    }

    .page-66-bet__floating-button--login:hover {
      background-color: #218838;
    }

    /* Section Styling */
    .page-66-bet__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-66-bet__section--dark {
      background-color: #2c3e50; /* Darker background */
      color: #fff;
    }

    .page-66-bet__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #1a2a6c;
      position: relative;
      padding-bottom: 10px;
    }

    .page-66-bet__section-title--dark {
      color: #ffc107;
    }

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

    .page-66-bet__section--dark .page-66-bet__section-title::after {
      background-color: #fff;
    }

    .page-66-bet__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Product Grid */
    .page-66-bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-66-bet__product-card {
      background-color: #f0f0f0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-66-bet__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-66-bet__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e9ecef;
    }

    .page-66-bet__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      min-height: 200px; /* Ensure images fill the wrapper */
    }

    .page-66-bet__product-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-66-bet__product-title {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #1a2a6c;
    }

    .page-66-bet__product-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions */
    .page-66-bet__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-66-bet__promotion-item {
      background-color: #fefefe;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease;
      border-left: 5px solid #ffc107;
    }

    .page-66-bet__promotion-item:hover {
      transform: translateY(-3px);
    }

    .page-66-bet__promotion-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-66-bet__promotion-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-66-bet__promotion-date {
      font-size: 0.9em;
      color: #888;
      text-align: right;
    }

    /* Providers and Payments */
    .page-66-bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-66-bet__logo-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Uniform height for logos */
      width: 100%;
      box-sizing: border-box;
    }

    .page-66-bet__logo-image {
      max-width: 100%;
      max-height: 70px; /* Max height for logos */
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-66-bet__faq-section {
      background-color: #f0f0f0;
      padding: 60px 0;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-66-bet__faq-list {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-66-bet__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

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

    .page-66-bet__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-66-bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click handling */
      color: #1a2a6c;
    }

    .page-66-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
      color: #ffc107;
    }

    .page-66-bet__faq-item.active .page-66-bet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-66-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding to match question */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1em;
      box-sizing: border-box; /* Ensure padding is included in max-height */
    }

    .page-66-bet__faq-item.active .page-66-bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Adjust padding for content */
      opacity: 1;
    }

    /* Call to Action Section */
    .page-66-bet__cta-section {
      text-align: center;
      padding: 60px 0;
      background-color: #1a2a6c;
      color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-66-bet__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #ffc107;
    }

    .page-66-bet__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-66-bet__hero-section {
        padding-bottom: 80px; /* More space for buttons */
      }
      .page-66-bet__logo-text {
        font-size: 2.5em;
      }
      .page-66-bet__hero-slogan {
        font-size: 1.2em;
      }
      .page-66-bet__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-66-bet__button {
        width: 80%;
        margin: 0 auto;
      }

      .page-66-bet__section {
        padding: 40px 0;
      }
      .page-66-bet__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-66-bet__product-grid {
        grid-template-columns: 1fr;
      }
      .page-66-bet__promotion-list {
        grid-template-columns: 1fr;
      }
      .page-66-bet__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-66-bet__logo-item {
        height: 80px;
      }
      .page-66-bet__cta-title {
        font-size: 2em;
      }
      .page-66-bet__cta-description {
        font-size: 1em;
      }

      /* Floating buttons for mobile */
      .page-66-bet__floating-buttons {
        padding: 8px;
      }
      .page-66-bet__floating-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 3px;
      }

      /* List item responsive for FAQ */
      .page-66-bet__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust overall list padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-66-bet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-66-bet__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-66-bet__faq-answer {
        padding: 15px 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-66-bet__faq-item.active .page-66-bet__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-66-bet__logo-text {
        font-size: 2em;
      }
      .page-66-bet__hero-slogan {
        font-size: 1em;
      }
      .page-66-bet__button {
        width: 90%;
        padding: 12px 25px;
      }
      .page-66-bet__section-title {
        font-size: 1.8em;
      }
      .page-66-bet__product-card {
        padding: 15px;
      }
      .page-66-bet__product-title {
        font-size: 1.3em;
      }
      .page-66-bet__promotion-item {
        padding: 20px;
      }
      .page-66-bet__promotion-title {
        font-size: 1.2em;
      }
      .page-66-bet__cta-title {
        font-size: 1.8em;
      }
    }
  