
    :root {
      --page-789betcom-bg-dark: #1a1a1a;
      --page-789betcom-text-white: #ffffff;
      --page-789betcom-text-yellow: #ffcc00;
      --page-789betcom-accent-yellow: #ffcc00;
      --page-789betcom-border-grey: #333333;
      --page-789betcom-hover-yellow: #ffdb4d;
      --page-789betcom-shadow-dark: rgba(0, 0, 0, 0.5);
    }

    .page-789betcom {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--page-789betcom-bg-dark);
      color: var(--page-789betcom-text-white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-789betcom__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-789betcom__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-789betcom__section-title {
      color: var(--page-789betcom-accent-yellow);
      font-size: 2.5em;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-789betcom__section-subtitle {
      font-size: 1.2em;
      color: var(--page-789betcom-text-white);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-789betcom__hero-section {
      padding-top: 140px; /* Safety zone for fixed header */
      position: relative;
      overflow: hidden;
      background-color: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .page-789betcom__hero-image {
      width: 100%;
      max-width: 1200px; /* Ensure image doesn't stretch too wide */
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Maintain aspect ratio */
      box-shadow: 0 10px 30px var(--page-789betcom-shadow-dark);
      border-radius: 8px;
    }

    .page-789betcom__hero-content {
      position: relative;
      z-index: 2;
      padding: 40px 20px;
      text-align: center;
      max-width: 900px;
      margin-top: 20px;
    }

    .page-789betcom__hero-title {
      font-size: 3em;
      color: var(--page-789betcom-accent-yellow);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-789betcom__hero-description {
      font-size: 1.3em;
      color: var(--page-789betcom-text-white);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789betcom__button {
      display: inline-block;
      background-color: var(--page-789betcom-accent-yellow);
      color: var(--page-789betcom-bg-dark);
      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;
      border: none;
      cursor: pointer;
    }

    .page-789betcom__button:hover {
      background-color: var(--page-789betcom-hover-yellow);
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-789betcom__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-789betcom-accent-yellow);
      color: var(--page-789betcom-bg-dark);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px var(--page-789betcom-shadow-dark);
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-789betcom__bounce 2s infinite;
    }

    .page-789betcom__floating-login-button:hover {
      background-color: var(--page-789betcom-hover-yellow);
      transform: scale(1.05);
      animation: none;
    }

    @keyframes page-789betcom__bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

    /* Game Categories */
    .page-789betcom__game-categories {
      background-color: #0d0d0d;
    }

    .page-789betcom__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-789betcom__category-item {
      background-color: #222;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-789betcom-shadow-dark);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-789betcom-text-white);
    }

    .page-789betcom__category-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    }

    .page-789betcom__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid var(--page-789betcom-accent-yellow);
    }

    .page-789betcom__category-title {
      font-size: 1.4em;
      padding: 15px;
      color: var(--page-789betcom-accent-yellow);
      margin: 0;
    }

    /* Game Providers */
    .page-789betcom__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-789betcom__provider-item {
      background-color: #222;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px;
      box-shadow: 0 3px 10px var(--page-789betcom-shadow-dark);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-789betcom__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    }

    .page-789betcom__provider-logo {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
      display: block;
      /* Ensure no color filters are applied */
      filter: none;
    }

    /* Why Choose Us Section */
    .page-789betcom__why-choose-us {
      background-color: var(--page-789betcom-bg-dark);
    }

    .page-789betcom__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-789betcom__feature-item {
      background-color: #222;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px var(--page-789betcom-shadow-dark);
      text-align: left;
      border-left: 5px solid var(--page-789betcom-accent-yellow);
      transition: background-color 0.3s ease;
    }

    .page-789betcom__feature-item:hover {
      background-color: #2a2a2a;
    }

    .page-789betcom__feature-icon {
      font-size: 2.5em;
      color: var(--page-789betcom-accent-yellow);
      margin-bottom: 15px;
      display: block;
    }

    .page-789betcom__feature-title {
      font-size: 1.5em;
      color: var(--page-789betcom-text-white);
      margin-bottom: 10px;
    }

    .page-789betcom__feature-description {
      font-size: 1em;
      color: #ccc;
    }

    /* FAQ Section */
    .page-789betcom__faq-section {
      background-color: #0d0d0d;
      text-align: left;
    }

    .page-789betcom__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px var(--page-789betcom-shadow-dark);
    }

    .page-789betcom__faq-item {
      border-bottom: 1px solid var(--page-789betcom-border-grey);
      background-color: #222;
    }

    .page-789betcom__faq-item:last-child {
      border-bottom: none;
    }

    .page-789betcom__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      font-weight: bold;
      color: var(--page-789betcom-text-white);
      transition: background-color 0.3s ease;
    }

    .page-789betcom__faq-question:hover {
      background-color: #333;
    }
    
    .page-789betcom__faq-question h3 {
      margin: 0;
      color: var(--page-789betcom-text-white);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-789betcom__faq-toggle {
      font-size: 1.8em;
      color: var(--page-789betcom-accent-yellow);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

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

    .page-789betcom__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #ccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-789betcom__faq-item.active .page-789betcom__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-789betcom__hero-title {
        font-size: 2.5em;
      }
      .page-789betcom__hero-description {
        font-size: 1.1em;
      }
      .page-789betcom__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-789betcom__hero-section {
        padding-top: 100px; /* Adjust safety zone for mobile */
        min-height: 400px;
      }
      .page-789betcom__container {
        padding: 15px;
      }
      .page-789betcom__hero-title {
        font-size: 2em;
      }
      .page-789betcom__hero-description {
        font-size: 1em;
      }
      .page-789betcom__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-789betcom__floating-login-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-789betcom__section {
        padding: 40px 0;
      }
      .page-789betcom__section-title {
        font-size: 1.8em;
      }
      .page-789betcom__category-grid,
      .page-789betcom__providers-grid,
      .page-789betcom__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-789betcom__category-image {
        height: 180px;
      }
      .page-789betcom__provider-logo {
        max-height: 60px;
      }
      .page-789betcom__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-789betcom__faq-toggle {
        font-size: 1.5em;
      }
      .page-789betcom__faq-answer {
        padding: 15px !important; /* Apply !important for mobile responsiveness */
      }
      /* Image responsive optimization for mobile */
      .page-789betcom img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789betcom__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789betcom__category-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789betcom__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  