
    /* Base styles for the page */
    .page-gamesx666 {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background-color: #000; /* Black background */
      color: #fff; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the floating button */
    }

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

    .page-gamesx666__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-gamesx666__section--dark {
      background-color: #1a1a1a;
    }

    .page-gamesx666__heading {
      color: #FFD700; /* Yellow for headings */
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-gamesx666__subheading {
      color: #fff;
      margin-bottom: 15px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-gamesx666__text {
      color: #ccc;
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    .page-gamesx666__button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-gamesx666__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-gamesx666__hero-section {
      position: relative;
      background-color: #000;
      padding-top: 10px; /* Desktop safe area for fixed header */
      text-align: center;
      overflow: hidden;
    }

    .page-gamesx666__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-gamesx666__hero-content {
      position: relative; /* Ensure content is above image if needed, though image is not background */
      padding: 20px 0;
    }

    .page-gamesx666__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-gamesx666__hero-subtitle {
      font-size: 1.5em;
      color: #fff;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Game Categories Section */
    .page-gamesx666__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-gamesx666__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-gamesx666__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    }

    .page-gamesx666__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-gamesx666__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

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

    .page-gamesx666__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-gamesx666__game-card-description {
      color: #ccc;
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-gamesx666__game-card-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

    .page-gamesx666__game-card-link:hover {
      background-color: #e6c200;
    }

    /* Promotions Section */
    .page-gamesx666__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      text-align: left;
    }

    .page-gamesx666__promo-card-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-gamesx666__promo-card-text {
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-gamesx666__promo-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
      text-align: left;
    }

    .page-gamesx666__promo-list li {
      color: #fff;
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      font-size: 1.05em;
    }

    .page-gamesx666__promo-list li::before {
      content: '⭐';
      position: absolute;
      left: 0;
      color: #FFD700;
    }

    /* Why Choose Section */
    .page-gamesx666__advantage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-gamesx666__advantage-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      text-align: center;
    }

    .page-gamesx666__advantage-icon {
      color: #FFD700;
      font-size: 3em;
      margin-bottom: 15px;
      display: block; /* Ensure it takes up full width for centering */
    }

    .page-gamesx666__advantage-title {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-gamesx666__advantage-description {
      color: #ccc;
      font-size: 1em;
    }

    /* Guide Section */
    .page-gamesx666__guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-gamesx666__guide-step {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-gamesx666__guide-step-icon {
      width: 80px; /* Ensure images are not too small */
      height: 80px;
      object-fit: contain;
      margin-bottom: 15px;
      display: block; /* Ensure it takes up full width for centering */
      max-width: 100%;
      height: auto;
    }

    .page-gamesx666__guide-step-title {
      color: #FFD700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-gamesx666__guide-step-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-gamesx666__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-gamesx666__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .page-gamesx666__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333;
      color: #fff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid #444;
    }

    .page-gamesx666__faq-question:hover {
      background-color: #444;
    }

    .page-gamesx666__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-gamesx666__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-gamesx666__faq-item.active .page-gamesx666__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-gamesx666__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: #1a1a1a;
      color: #ccc;
    }

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

    .page-gamesx666__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-gamesx666__faq-answer p:last-child {
      padding-bottom: 0;
    }


    /* Floating Login Button */
    .page-gamesx666__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFD700;
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      white-space: nowrap; /* Prevent text wrapping */
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-gamesx666__floating-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-gamesx666__hero-section {
        padding-top: 160px; /* Mobile safe area for fixed header */
      }
      .page-gamesx666__heading {
        font-size: 2em;
      }
      .page-gamesx666__subheading {
        font-size: 1.4em;
      }
      .page-gamesx666__hero-title {
        font-size: 2.2em;
      }
      .page-gamesx666__hero-subtitle {
        font-size: 1.2em;
      }
      .page-gamesx666__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-gamesx666__game-categories {
        grid-template-columns: 1fr;
      }
      .page-gamesx666__game-card-image {
        height: 180px;
      }
      .page-gamesx666__game-card-title {
        font-size: 1.3em;
      }
      .page-gamesx666__promo-card-title {
        font-size: 1.5em;
      }
      .page-gamesx666__advantage-grid {
        grid-template-columns: 1fr;
      }
      .page-gamesx666__guide-grid {
        grid-template-columns: 1fr;
      }
      .page-gamesx666__faq-question h3 {
        font-size: 1em;
      }
      .page-gamesx666__faq-answer p {
        font-size: 0.9em;
      }
      .page-gamesx666__floating-button {
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
        width: auto; /* Allow button to size naturally */
      }

      /* Image responsive optimization with !important */
      .page-gamesx666__hero-image,
      .page-gamesx666__game-card-image,
      .page-gamesx666__guide-step-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-gamesx666__hero-image-wrapper,
      .page-gamesx666__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  