
    :root {
      --primary-color: #007bff; /* Blue */
      --secondary-color: #6c757d; /* Grey */
      --accent-color: #ffc107; /* Yellow */
      --background-dark: #1a1a1a;
      --background-light: #f8f9fa;
      --text-color-light: #ffffff;
      --text-color-dark: #333333;
      --border-color: #dee2e6;
      --gradient-start: #3a1c71; /* Dark purple */
      --gradient-end: #d76d77;   /* Light red */
      --button-hover-dark: #0056b3;
      --button-hover-light: #e0a800;
    }

    /* Base styles for the page container */
    .page-566be {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 10px; /* Small offset for hero section */
      box-sizing: border-box;
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-566be__hero-section {
      text-align: center;
      padding: 40px 20px;
      max-width: 1200px;
      width: 100%;
      position: relative;
      box-sizing: border-box;
    }

    .page-566be__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--text-color-light);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.2;
    }

    .page-566be__hero-subtitle {
      font-size: 1.4em;
      color: var(--accent-color);
      margin-bottom: 30px;
      font-weight: bold;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-566be__hero-image-container {
      width: 100%;
      max-width: 800px;
      margin: 0 auto 30px auto;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-566be__hero-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease-in-out;
    }

    .page-566be__hero-image:hover {
      transform: scale(1.03);
    }

    .page-566be__promotion-link {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color-dark);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-566be__promotion-link:hover {
      background-color: var(--button-hover-light);
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-566be__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-566be__floating-button {
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-566be__floating-button--register {
      background-color: #28a745; /* Green for register */
    }

    .page-566be__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    .page-566be__floating-button--login {
      background-color: var(--primary-color);
    }

    .page-566be__floating-button--login:hover {
      background-color: var(--button-hover-dark);
      transform: translateY(-3px);
    }

    /* Game Categories Section */
    .page-566be__game-categories-section {
      padding: 60px 20px;
      max-width: 1200px;
      width: 100%;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-566be__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: var(--accent-color);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-566be__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-566be__game-card {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
      text-align: center;
    }

    .page-566be__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-566be__game-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }

    .page-566be__game-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .page-566be__game-title {
      font-size: 1.5em;
      color: var(--accent-color);
      margin: 0 15px 10px 15px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .page-566be__game-description {
      font-size: 0.95em;
      color: var(--text-color-light);
      padding: 0 15px;
      line-height: 1.6;
    }

    /* Promotions Section */
    .page-566be__promotions-section {
      padding: 60px 20px;
      max-width: 1200px;
      width: 100%;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-566be__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
      box-sizing: border-box;
    }

    .page-566be__promotion-item {
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-566be__promotion-item:hover {
      transform: translateY(-8px);
      background-color: rgba(0, 0, 0, 0.4);
    }

    .page-566be__promotion-item-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .page-566be__promotion-item-description {
      font-size: 1em;
      line-height: 1.7;
      color: var(--text-color-light);
    }

    /* About Section */
    .page-566be__about-section {
      padding: 60px 20px;
      max-width: 1200px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-566be__about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-566be__about-text {
      flex: 1 1 500px;
      min-width: 300px;
      color: var(--text-color-light);
      line-height: 1.8;
      font-size: 1.1em;
    }

    .page-566be__about-image-container {
      flex: 1 1 400px;
      min-width: 250px;
      text-align: center;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-566be__about-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease-in-out;
    }
    
    .page-566be__about-image:hover {
      transform: scale(1.03);
    }

    /* Payment and Providers Section */
    .page-566be__info-section {
      padding: 60px 20px;
      max-width: 1200px;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-566be__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: center;
    }

    .page-566be__info-block {
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-566be__info-block:hover {
      transform: translateY(-8px);
      background-color: rgba(0, 0, 0, 0.4);
    }

    .page-566be__info-block-title {
      font-size: 1.3em;
      color: var(--accent-color);
      margin-bottom: 15px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .page-566be__info-list {
      list-style: none;
      padding: 0;
      color: var(--text-color-light);
      line-height: 1.8;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-566be__info-list li {
      margin-bottom: 8px;
    }

    /* FAQ Section */
    .page-566be__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 15px;
      margin-top: 40px;
      margin-bottom: 60px; /* Space above footer */
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-566be__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      box-sizing: border-box;
    }

    .page-566be__faq-item {
      background-color: rgba(255, 255, 255, 0.1);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-566be__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0.3);
      color: var(--text-color-light);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

    .page-566be__faq-question:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }

    .page-566be__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--text-color-light);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-566be__faq-item.active .page-566be__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }
    .page-566be__faq-item.active .page-566be__faq-toggle::before {
      content: "−"; /* Change + to - */
      transform: rotate(0deg);
    }
    .page-566be__faq-item .page-566be__faq-toggle::before {
      content: "+";
    }

    .page-566be__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: rgba(255, 255, 255, 0.05);
      color: var(--text-color-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      line-height: 1.7;
      font-size: 1em;
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-566be {
        padding-top: 0; /* Adjust for mobile if header is smaller */
      }
      .page-566be__hero-section {
        padding: 30px 15px;
      }

      .page-566be__hero-title {
        font-size: 2.2em;
      }

      .page-566be__hero-subtitle {
        font-size: 1.1em;
      }

      .page-566be__promotion-link {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-566be__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }

      .page-566be__floating-button {
        padding: 10px 20px;
        font-size: 0.95em;
      }

      .page-566be__game-categories-section,
      .page-566be__promotions-section,
      .page-566be__about-section,
      .page-566be__info-section,
      .page-566be__faq-section {
        padding: 40px 15px;
        margin-top: 30px;
      }

      .page-566be__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-566be__game-grid,
      .page-566be__promotion-list,
      .page-566be__info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-566be__game-card,
      .page-566be__promotion-item,
      .page-566be__info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }
      .page-566be__game-image-container {
        height: 180px;
      }

      .page-566be__about-content {
        flex-direction: column;
        gap: 20px;
      }
      .page-566be__about-text,
      .page-566be__about-image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-566be__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-566be__faq-question h3 {
        font-size: 1.1em;
      }

      .page-566be__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

      .page-566be__faq-item.active .page-566be__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness for all images */
      .page-566be__hero-image,
      .page-566be__game-image,
      .page-566be__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-566be__hero-image-container,
      .page-566be__game-image-container,
      .page-566be__about-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* Ensure list items and their containers handle word breaks */
      .page-566be__promotion-list,
      .page-566be__info-list,
      .page-566be__faq-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-566be__promotion-list li,
      .page-566be__info-list li,
      .page-566be__faq-item {
        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;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-566be__hero-title {
        font-size: 1.8em;
      }
      .page-566be__hero-subtitle {
        font-size: 1em;
      }
      .page-566be__section-title {
        font-size: 1.6em;
      }
      .page-566be__game-title {
        font-size: 1.3em;
      }
      .page-566be__promotion-item-title,
      .page-566be__info-block-title,
      .page-566be__faq-question h3 {
        font-size: 1.1em;
      }
    }
  