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

    .page-2bog__hero-section {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Small decorative padding, assuming body has main offset */
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    }

    .page-2bog__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6;
    }

    .page-2bog__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 90%;
    }

    .page-2bog__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-2bog__hero-description {
      font-size: 1.1em;
      max-width: 600px;
      margin: 0 auto;
    }

    .page-2bog__section {
      padding: 40px 20px;
      margin: 20px auto;
      max-width: 1200px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-2bog__section-title {
      font-size: 2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-2bog__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #007bff;
      margin: 10px auto 0;
    }

    .page-2bog__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

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

    .page-2bog__game-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-2bog__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-2bog__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-2bog__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-2bog__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-2bog__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
      text-align: justify;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-2bog__promotion-list,
    .page-2bog__news-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-2bog__promotion-item,
    .page-2bog__news-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-2bog__promotion-item h3,
    .page-2bog__news-item h3 {
      color: #007bff;
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-2bog__promotion-item p,
    .page-2bog__news-item p {
      color: #666;
      margin-bottom: 5px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-2bog__news-date {
      font-size: 0.85em;
      color: #999;
      text-align: right;
    }

    .page-2bog__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-2bog__button {
      display: block;
      padding: 12px 25px;
      background-color: #ffc107; /* Yellowish for action */
      color: #333;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-2bog__button--primary {
      background-color: #007bff;
      color: #fff;
    }

    .page-2bog__button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }

    .page-2bog__button--primary:hover {
      background-color: #0056b3;
    }

    /* FAQ Styles */
    .page-2bog__faq-section {
      padding: 40px 20px;
      margin: 20px auto;
      max-width: 1200px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-2bog__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-2bog__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-2bog__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px;
      background-color: #f5f5f5;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .page-2bog__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-2bog__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-2bog__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-2bog__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fafafa;
      border-radius: 0 0 5px 5px;
      color: #555;
    }

    .page-2bog__faq-item.active .page-2bog__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Call to Action */
    .page-2bog__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(to right, #007bff, #0056b3);
      color: #fff;
      border-radius: 8px;
      margin: 20px auto;
      max-width: 1200px;
    }

    .page-2bog__cta-section h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }

    .page-2bog__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-2bog__cta-button {
      display: inline-block;
      padding: 15px 40px;
      background-color: #ffc107;
      color: #333;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-2bog__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-2bog__hero-section {
        height: 250px;
      }

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

      .page-2bog__hero-description {
        font-size: 1em;
      }

      .page-2bog__section {
        padding: 20px 15px;
        margin: 10px auto;
      }

      .page-2bog__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-2bog__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-2bog__game-image-wrapper {
        height: 180px;
      }

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

      .page-2bog__game-description {
        font-size: 0.9em;
      }

      .page-2bog__promotion-item,
      .page-2bog__news-item {
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-2bog__promotion-list,
      .page-2bog__news-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-2bog__promotion-item h3,
      .page-2bog__news-item h3 {
        font-size: 1.1em;
      }

      .page-2bog__faq-question {
        padding: 12px;
      }

      .page-2bog__faq-question h3 {
        font-size: 1em;
      }

      .page-2bog__faq-answer {
        padding: 0 12px;
      }

      .page-2bog__faq-item.active .page-2bog__faq-answer {
        padding: 15px 12px !important;
      }

      .page-2bog__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-2bog__button {
        padding: 10px 15px;
        font-size: 0.9em;
        flex: 1;
        min-width: unset;
      }

      .page-2bog__cta-section h2 {
        font-size: 1.8em;
      }

      .page-2bog__cta-section p {
        font-size: 1em;
      }

      .page-2bog__cta-button {
        padding: 12px 30px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-2bog__hero-section {
        height: 200px;
      }

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

      .page-2bog__hero-description {
        font-size: 0.9em;
      }

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

      .page-2bog__floating-buttons {
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
      }

      .page-2bog__button {
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }
  