
    :root {
      --primary-color: #FFD700; /* Yellow */
      --secondary-color: #FFFFFF; /* White */
      --background-color: #000000; /* Black */
      --text-color: #FFFFFF;
      --accent-color: #FFD700;
      --button-bg: #FFD700;
      --button-text: #000000;
      --card-bg: #1a1a1a;
      --border-color: #333333;
    }

    .page-sbobet {
      font-family: 'Arial', sans-serif;
      background-color: var(--background-color);
      color: var(--text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-sbobet__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-sbobet__section-title {
      color: var(--primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-sbobet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--primary-color);
    }

    .page-sbobet__text-content {
      margin-bottom: 20px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-sbobet__button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-sbobet__button:hover {
      background-color: #FFC107;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-sbobet__hero-section {
      position: relative;
      text-align: center;
      color: var(--text-color);
      padding-top: 10px; /* Safe zone for fixed header on desktop */
      padding-bottom: 40px;
      background-color: var(--background-color);
      overflow: hidden;
    }
    .page-sbobet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }
    .page-sbobet__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
      margin: 20px auto 0 auto;
    }
    .page-sbobet__hero-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    .page-sbobet__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 25px;
      color: var(--secondary-color);
    }

    /* Game Categories */
    .page-sbobet__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-sbobet__game-card {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-sbobet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-sbobet__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .page-sbobet__game-card-image {
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .page-sbobet__game-card-title {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-sbobet__game-card-description {
      color: var(--secondary-color);
      font-size: 0.95em;
      flex-grow: 1;
      margin-bottom: 15px;
    }

    /* Game Providers */
    .page-sbobet__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-sbobet__provider-logo-wrapper {
      background-color: var(--card-bg);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Consistent height for logos */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-sbobet__provider-logo-wrapper:hover {
      transform: translateY(-3px);
    }

    .page-sbobet__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Ensure logos fit */
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Promotions */
    .page-sbobet__promotion-card {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 30px;
      margin: 30px auto;
      max-width: 700px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
    }

    .page-sbobet__promotion-title {
      color: var(--primary-color);
      font-size: 2em;
      margin-bottom: 15px;
    }

    .page-sbobet__promotion-description {
      color: var(--secondary-color);
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    /* Guides Section */
    .page-sbobet__guide-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
    }

    .page-sbobet__guide-item {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      flex: 1 1 calc(33% - 25px); /* Three items per row */
      min-width: 280px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
    }

    .page-sbobet__guide-item-title {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-sbobet__guide-item-text {
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-size: 0.95em;
    }

    /* Floating Login Button */
    .page-sbobet__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-sbobet__pulse 2s infinite;
    }

    .page-sbobet__floating-button {
      background-color: #FF4500; /* Orange-red for urgency */
      color: var(--button-text);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-sbobet__floating-button:hover {
      background-color: #FF6347;
      transform: scale(1.05);
    }

    @keyframes page-sbobet__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* FAQ Section */
    .page-sbobet__faq-list {
      max-width: 800px;
      margin: 30px auto;
      text-align: left;
    }

    .page-sbobet__faq-item {
      background-color: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-sbobet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-sbobet__faq-question:hover {
      background-color: #333333;
    }

    .page-sbobet__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-sbobet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: var(--secondary-color);
    }

    .page-sbobet__faq-item.active .page-sbobet__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
      color: var(--primary-color);
    }

    .page-sbobet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
      background-color: var(--card-bg);
    }

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

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

      .page-sbobet__hero-section {
        padding-top: 10px; /* Safe zone for fixed header on mobile */
        padding-bottom: 30px;
      }
      .page-sbobet__hero-title {
        font-size: 2em;
      }
      .page-sbobet__hero-subtitle {
        font-size: 1.1em;
      }

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

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

      .page-sbobet__game-card-image-wrapper {
        height: 180px;
      }

      .page-sbobet__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-sbobet__guide-item {
        flex: 1 1 100%;
      }

      .page-sbobet__floating-button-wrapper {
        bottom: 15px;
        right: 15px;
      }

      .page-sbobet__floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-sbobet__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-sbobet__faq-answer {
        padding: 0 15px;
      }
      .page-sbobet__faq-item.active .page-sbobet__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive optimization for mobile */
      .page-sbobet__hero-image,
      .page-sbobet__game-card-image,
      .page-sbobet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sbobet__game-card-image-wrapper,
      .page-sbobet__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  