
    :root {
      --page-66789-besy-primary-color: #e44d26; /* Vibrant orange/red */
      --page-66789-besy-secondary-color: #f7b500; /* Gold/yellow */
      --page-66789-besy-background-dark: #1a1a1a; /* Dark background */
      --page-66789-besy-background-light: #2c2c2c; /* Slightly lighter dark */
      --page-66789-besy-text-color: #f0f0f0; /* Light text */
      --page-66789-besy-text-dark: #333333; /* Dark text for light elements */
      --page-66789-besy-border-color: #444444; /* Border color */
      --page-66789-besy-button-hover: #ff6f3c; /* Button hover effect */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-66789-besy-text-color);
      background-color: var(--page-66789-besy-background-dark);
      margin: 0;
      padding: 0;
    }

    .page-66789-besy {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 80px 15px; /* Added bottom padding for floating buttons */
      box-sizing: border-box;
    }

    .page-66789-besy__hero-section {
      text-align: center;
      padding: 10px 0 40px 0; /* Adjusted padding-top to 10px */
      background-color: var(--page-66789-besy-background-light);
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }

    .page-66789-besy__hero-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-66789-besy__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-66789-besy__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .page-66789-besy__main-title {
      font-size: 2.8em;
      color: var(--page-66789-besy-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-66789-besy__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-66789-besy-secondary-color);
      margin-bottom: 25px;
    }

    .page-66789-besy__section-title {
      font-size: 2em;
      color: var(--page-66789-besy-primary-color);
      text-align: center;
      margin: 40px 0 30px 0;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-66789-besy__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .page-66789-besy__game-card {
      background-color: var(--page-66789-besy-background-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-66789-besy-border-color);
    }

    .page-66789-besy__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    }

    .page-66789-besy__game-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-66789-besy__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-66789-besy__game-title {
      font-size: 1.4em;
      color: var(--page-66789-besy-secondary-color);
      padding: 15px 10px 10px 10px;
      margin: 0;
    }

    .page-66789-besy__game-description {
      font-size: 0.95em;
      color: var(--page-66789-besy-text-color);
      padding: 0 15px 20px 15px;
    }

    .page-66789-besy__promotion-section {
      background-color: var(--page-66789-besy-background-light);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-66789-besy__promotion-title {
      font-size: 2em;
      color: var(--page-66789-besy-primary-color);
      margin-bottom: 20px;
    }

    .page-66789-besy__promotion-text {
      font-size: 1.1em;
      color: var(--page-66789-besy-text-color);
      margin-bottom: 30px;
    }

    .page-66789-besy__benefits-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .page-66789-besy__benefit-item {
      background-color: var(--page-66789-besy-background-light);
      border: 1px solid var(--page-66789-besy-border-color);
      border-radius: 8px;
      padding: 20px;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
      text-align: center;
    }

    .page-66789-besy__benefit-item:hover {
      transform: translateY(-3px);
    }

    .page-66789-besy__benefit-title {
      font-size: 1.3em;
      color: var(--page-66789-besy-secondary-color);
      margin-bottom: 10px;
    }

    .page-66789-besy__benefit-description {
      font-size: 0.95em;
      color: var(--page-66789-besy-text-color);
    }

    .page-66789-besy__faq-section {
      margin-top: 50px;
      margin-bottom: 40px;
    }

    .page-66789-besy__faq-item {
      background-color: var(--page-66789-besy-background-light);
      border: 1px solid var(--page-66789-besy-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-66789-besy__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-66789-besy__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-66789-besy__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-66789-besy-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-66789-besy__faq-item.active .page-66789-besy__faq-toggle {
      transform: rotate(45deg); /* Rotates the + to an X, visually similar to a minus */
      color: var(--page-66789-besy-secondary-color);
    }

    .page-66789-besy__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;
      color: var(--page-66789-besy-text-color);
      font-size: 0.95em;
    }

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

    .page-66789-besy__cta-section {
      text-align: center;
      padding: 40px 20px;
      background-color: var(--page-66789-besy-primary-color);
      color: #ffffff;
      border-radius: 8px;
      margin-top: 50px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-66789-besy__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
    }

    .page-66789-besy__cta-text {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-66789-besy__button {
      display: inline-block;
      background-color: var(--page-66789-besy-secondary-color);
      color: var(--page-66789-besy-text-dark);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-66789-besy__button:hover {
      background-color: var(--page-66789-besy-button-hover);
      color: #ffffff;
    }

    /* Floating buttons for Register/Login */
    .page-66789-besy__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-66789-besy__floating-button {
      flex: 1;
      text-align: center;
      margin: 0 5px;
      padding: 12px 0;
      background-color: var(--page-66789-besy-primary-color);
      color: #ffffff;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none; /* Ensure it looks like a button but is an anchor */
      display: block; /* Make anchor fill flex item */
    }

    .page-66789-besy__floating-button:hover {
      background-color: var(--page-66789-besy-button-hover);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-66789-besy {
        padding: 10px 10px 80px 10px; /* Adjust padding for smaller screens */
      }

      .page-66789-besy__main-title {
        font-size: 2.2em;
      }

      .page-66789-besy__hero-subtitle {
        font-size: 1.1em;
      }

      .page-66789-besy__section-title {
        font-size: 1.8em;
        margin: 30px 0 20px 0;
      }

      .page-66789-besy__game-grid {
        grid-template-columns: 1fr; /* Single column for games on mobile */
      }

      .page-66789-besy__benefit-item {
        flex: 1 1 100% !important; /* Full width for benefits on mobile */
        max-width: 100% !important; /* Ensure it takes full width */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-66789-besy__benefits-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-66789-besy__game-image,
      .page-66789-besy__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-66789-besy__game-image-container,
      .page-66789-besy__hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }


      .page-66789-besy__faq-question {
        padding: 12px 15px;
      }

      .page-66789-besy__faq-question h3 {
        font-size: 1em;
      }

      .page-66789-besy__faq-answer {
        padding: 15px 15px !important;
      }

      .page-66789-besy__cta-title {
        font-size: 1.8em;
      }

      .page-66789-besy__cta-text {
        font-size: 1em;
      }

      .page-66789-besy__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
      .page-66789-besy__floating-buttons {
        padding: 8px 0;
      }
    }

    @media (max-width: 480px) {
      .page-66789-besy__main-title {
        font-size: 1.8em;
      }
      .page-66789-besy__hero-subtitle {
        font-size: 0.9em;
      }
      .page-66789-besy__floating-buttons {
        flex-direction: column;
        gap: 5px;
        padding: 5px;
      }
      .page-66789-besy__floating-button {
        margin: 0;
        padding: 10px 0;
      }
      .page-66789-besy {
        padding-bottom: 120px; /* More space for stacked buttons */
      }
    }
  