
    .page-123b-123 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-123b-123__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: 700;
    }

    .page-123b-123__section-subtitle {
      font-size: 1.2em;
      text-align: center;
      margin-bottom: 40px;
      color: #555;
    }

    .page-123b-123__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-123b-123__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      text-align: center;
      cursor: pointer;
      box-sizing: border-box;
      white-space: nowrap;
    }

    .page-123b-123__button--primary {
      background-color: #e44d26; /* A vibrant orange */
      color: #fff;
      border: 2px solid #e44d26;
    }

    .page-123b-123__button--primary:hover {
      background-color: #d04320;
      border-color: #d04320;
      transform: translateY(-2px);
    }

    .page-123b-123__button--secondary {
      background-color: transparent;
      color: #e44d26;
      border: 2px solid #e44d26;
    }

    .page-123b-123__button--secondary:hover {
      background-color: #e44d26;
      color: #fff;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-123b-123__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:gaming_background,abstract,lights]') no-repeat center center/cover;
      color: #fff;
      padding: 10px 15px 80px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      position: relative;
      overflow: hidden;
    }

    .page-123b-123__hero-content {
      max-width: 900px;
      margin: 0 auto;
      z-index: 1;
    }

    .page-123b-123__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 800;
      color: #fff;
    }

    .page-123b-123__hero-title strong {
      color: #e44d26;
    }

    .page-123b-123__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .page-123b-123__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-123b-123__hero-image-wrapper {
      margin-top: 40px;
      max-width: 800px;
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .page-123b-123__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Features Section */
    .page-123b-123__features-section {
      padding: 60px 15px;
      background-color: #fff;
    }

    .page-123b-123__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-123b-123__feature-item {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-123b-123__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-123b-123__feature-icon {
      width: 250px;
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      box-sizing: border-box;
      border-radius: 8px;
    }

    .page-123b-123__feature-title {
      font-size: 1.8em;
      color: #e44d26;
      margin-bottom: 15px;
    }

    .page-123b-123__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Game Showcase Section */
    .page-123b-123__game-showcase-section {
      padding: 60px 15px;
      background-color: #f0f0f0;
    }

    .page-123b-123__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-123b-123__game-item {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-123b-123__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-123b-123__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-123b-123__game-title {
      font-size: 1.5em;
      color: #e44d26;
      margin: 20px 15px 10px;
    }

    .page-123b-123__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-123b-123__promotions-section {
      padding: 60px 15px;
      background-color: #fff;
    }

    .page-123b-123__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-123b-123__promotion-item {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-123b-123__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-123b-123__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-123b-123__promotion-title {
      font-size: 1.6em;
      color: #e44d26;
      margin: 20px 15px 10px;
    }

    .page-123b-123__promotion-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 20px;
    }

    /* About Section */
    .page-123b-123__about-section {
      padding: 60px 15px;
      background-color: #f0f0f0;
    }

    .page-123b-123__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-123b-123__about-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      box-sizing: border-box;
      display: block;
    }

    .page-123b-123__about-text {
      flex: 2;
      min-width: 300px;
      color: #444;
    }

    .page-123b-123__about-text p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-123b-123__faq-section {
      padding: 60px 15px;
      background-color: #fff;
    }

    .page-123b-123__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-123b-123__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    .page-123b-123__faq-item.active {
      border-color: #e44d26;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .page-123b-123__faq-question {
      background-color: #fefefe;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #eee;
    }

    .page-123b-123__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-123b-123__faq-question-title {
      font-size: 1.2em;
      color: #333;
      margin: 0;
      pointer-events: none;
    }

    .page-123b-123__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .page-123b-123__faq-item.active .page-123b-123__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect */
      color: #e44d26;
    }

    .page-123b-123__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-123b-123__faq-answer p {
      margin: 0;
      color: #555;
      font-size: 1em;
    }

    /* CTA Section */
    .page-123b-123__cta-section {
      padding: 60px 15px;
      text-align: center;
      background-color: #e44d26;
      color: #fff;
    }

    .page-123b-123__cta-section .page-123b-123__section-title {
      color: #fff;
    }

    .page-123b-123__cta-section .page-123b-123__section-subtitle {
      color: #eee;
    }

    .page-123b-123__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-123b-123__cta-buttons .page-123b-123__button--primary {
      background-color: #fff;
      color: #e44d26;
      border-color: #fff;
    }

    .page-123b-123__cta-buttons .page-123b-123__button--primary:hover {
      background-color: #f0f0f0;
      color: #d04320;
    }

    .page-123b-123__cta-buttons .page-123b-123__button--secondary {
      background-color: transparent;
      color: #fff;
      border-color: #fff;
    }

    .page-123b-123__cta-buttons .page-123b-123__button--secondary:hover {
      background-color: #fff;
      color: #e44d26;
    }

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

    .page-123b-123__floating-button {
      display: block;
      width: 120px;
      padding: 12px 0;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-123b-123__floating-button--register {
      background-color: #28a745; /* Green for register */
    }

    .page-123b-123__floating-button--register:hover {
      background-color: #218838;
    }

    .page-123b-123__floating-button--login {
      background-color: #007bff; /* Blue for login */
    }

    .page-123b-123__floating-button--login:hover {
      background-color: #0056b3;
    }

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

    @media (max-width: 768px) {
      .page-123b-123__hero-section {
        min-height: 50vh;
        padding-top: 10px !important;
      }
      .page-123b-123__hero-title {
        font-size: 2.2em;
      }
      .page-123b-123__hero-description {
        font-size: 1em;
      }
      .page-123b-123__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-123b-123__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-123b-123__features-grid,
      .page-123b-123__game-grid,
      .page-123b-123__promotions-grid {
        grid-template-columns: 1fr;
      }
      .page-123b-123__feature-item,
      .page-123b-123__game-item,
      .page-123b-123__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-123b-123__about-content {
        flex-direction: column;
        gap: 30px;
      }
      .page-123b-123__about-image {
        max-width: 100%;
        min-width: unset;
      }

      .page-123b-123__faq-question {
        padding: 12px 15px;
      }
      .page-123b-123__faq-question-title {
        font-size: 1.1em;
      }
      .page-123b-123__faq-answer {
        padding: 0 15px;
      }
      .page-123b-123__faq-item.active .page-123b-123__faq-answer {
        padding: 15px !important;
      }

      .page-123b-123__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-123b-123__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
        justify-content: space-around;
        background-color: rgba(0, 0, 0, 0.8);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
      }
      .page-123b-123__floating-button {
        width: 45%;
        max-width: 150px;
        padding: 10px 0;
        font-size: 0.9em;
      }

      .page-123b-123__hero-image,
      .page-123b-123__feature-icon,
      .page-123b-123__game-image,
      .page-123b-123__promotion-image,
      .page-123b-123__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-123b-123__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-123b-123__hero-title {
        font-size: 1.8em;
      }
      .page-123b-123__section-title {
        font-size: 1.8em;
      }
      .page-123b-123__section-subtitle {
        font-size: 1em;
      }
      .page-123b-123__floating-button {
        width: 48%;
        padding: 8px 0;
        font-size: 0.8em;
      }
    }
  