
    :root {
      --primary-color: #e44d26; /* A vibrant red-orange for action */
      --secondary-color: #333;
      --accent-color: #f7b731; /* A golden yellow for highlights */
      --background-color: #f0f2f5;
      --text-color: #333;
      --light-text-color: #fff;
      --border-color: #ddd;
      --card-background: #fff;
      --shadow-light: rgba(0, 0, 0, 0.1);
      --shadow-medium: rgba(0, 0, 0, 0.2);
    }

    .page-bongdalu-5 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-bongdalu-5__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-bongdalu-5__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-bongdalu-5__section--dark {
      background-color: var(--secondary-color);
      color: var(--light-text-color);
    }

    .page-bongdalu-5__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      font-weight: bold;
    }

    .page-bongdalu-5__section--dark .page-bongdalu-5__section-title {
      color: var(--accent-color);
    }

    .page-bongdalu-5__section-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-bongdalu-5__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:online_betting,casino,background]') no-repeat center center/cover;
      color: var(--light-text-color);
      padding: 10px 0 80px 0; /* Small decorative padding-top, body handles header offset */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      text-align: center;
    }

    .page-bongdalu-5__hero-content {
      max-width: 900px;
      padding: 20px;
    }

    .page-bongdalu-5__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
      color: var(--accent-color);
    }

    .page-bongdalu-5__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-bongdalu-5__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bongdalu-5__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-bongdalu-5__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-bongdalu-5__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text-color);
      border: none;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px var(--shadow-medium);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      text-align: center;
    }

    .page-bongdalu-5__floating-button--login {
      background-color: var(--accent-color);
    }

    .page-bongdalu-5__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-bongdalu-5__floating-button--login:hover {
      background-color: #e6a020;
    }

    /* Product Grid */
    .page-bongdalu-5__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-bongdalu-5__product-item {
      background-color: var(--card-background);
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--shadow-light);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-bongdalu-5__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--shadow-medium);
    }

    .page-bongdalu-5__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-bongdalu-5__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-bongdalu-5__product-name {
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--secondary-color);
    }

    .page-bongdalu-5__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-bongdalu-5__promo-list {
      list-style: none;
      padding: 0;
      margin: 30px auto 0 auto;
      max-width: 900px;
    }

    .page-bongdalu-5__promo-item {
      background-color: var(--card-background);
      border-radius: 10px;
      box-shadow: 0 2px 10px var(--shadow-light);
      padding: 20px;
      margin-bottom: 15px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 20px;
      box-sizing: border-box;
    }

    .page-bongdalu-5__promo-item-icon {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 5px;
    }

    .page-bongdalu-5__promo-title {
      font-size: 1.3em;
      font-weight: bold;
      color: var(--primary-color);
      margin-bottom: 5px;
    }

    .page-bongdalu-5__promo-description {
      font-size: 1em;
      color: #555;
    }

    /* Providers & Payments */
    .page-bongdalu-5__partner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bongdalu-5__partner-item {
      background-color: var(--card-background);
      border-radius: 8px;
      box-shadow: 0 2px 8px var(--shadow-light);
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-bongdalu-5__partner-item:hover {
      transform: translateY(-3px);
    }

    .page-bongdalu-5__partner-logo {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
    }

    /* Why Choose Us */
    .page-bongdalu-5__feature-list {
      list-style: none;
      padding: 0;
      margin: 30px auto 0 auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-bongdalu-5__feature-item {
      background-color: var(--card-background);
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--shadow-light);
      padding: 25px;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-bongdalu-5__feature-title {
      font-size: 1.4em;
      font-weight: bold;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-bongdalu-5__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section */
    .page-bongdalu-5__faq-section {
      text-align: center;
      padding: 40px 0;
    }

    .page-bongdalu-5__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-bongdalu-5__faq-item {
      background-color: var(--card-background);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px var(--shadow-light);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-bongdalu-5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-bongdalu-5__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-bongdalu-5__faq-title {
      font-size: 1.2em;
      font-weight: bold;
      color: var(--secondary-color);
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bongdalu-5__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-bongdalu-5__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
      color: #555;
      font-size: 0.95em;
    }

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

    .page-bongdalu-5__faq-item.active .page-bongdalu-5__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-bongdalu-5__hero-title {
        font-size: 3em;
      }
      .page-bongdalu-5__hero-description {
        font-size: 1.1em;
      }
      .page-bongdalu-5__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-bongdalu-5__hero-section {
        min-height: 50vh;
      }
      .page-bongdalu-5__hero-title {
        font-size: 2.5em;
      }
      .page-bongdalu-5__hero-description {
        font-size: 1em;
      }
      .page-bongdalu-5__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-bongdalu-5__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-bongdalu-5__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
      .page-bongdalu-5__product-grid,
      .page-bongdalu-5__partner-grid,
      .page-bongdalu-5__feature-list {
        grid-template-columns: 1fr;
      }
      .page-bongdalu-5__promo-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
      }
      .page-bongdalu-5__promo-item-icon {
        width: 60px;
        height: 60px;
      }
      .page-bongdalu-5__promo-title {
        font-size: 1.2em;
      }
      .page-bongdalu-5__faq-question {
        padding: 12px 15px;
      }
      .page-bongdalu-5__faq-title {
        font-size: 1.1em;
      }
      .page-bongdalu-5__faq-answer {
        padding: 0 15px;
      }
      .page-bongdalu-5__faq-item.active .page-bongdalu-5__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive for mobile */
      .page-bongdalu-5__product-image,
      .page-bongdalu-5__promo-item-icon,
      .page-bongdalu-5__partner-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-bongdalu-5__product-item,
      .page-bongdalu-5__promo-item,
      .page-bongdalu-5__partner-item,
      .page-bongdalu-5__feature-item,
      .page-bongdalu-5__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-bongdalu-5__product-grid,
      .page-bongdalu-5__promo-list,
      .page-bongdalu-5__partner-grid,
      .page-bongdalu-5__feature-list,
      .page-bongdalu-5__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-bongdalu-5__product-description,
      .page-bongdalu-5__promo-description,
      .page-bongdalu-5__feature-description,
      .page-bongdalu-5__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-bongdalu-5__hero-title {
        font-size: 2em;
      }
      .page-bongdalu-5__hero-description {
        font-size: 0.9em;
      }
      .page-bongdalu-5__section-title {
        font-size: 1.8em;
      }
      .page-bongdalu-5__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        justify-content: space-around;
      }
      .page-bongdalu-5__floating-button {
        flex: 1;
        max-width: 48%;
      }
    }
  