
    /* Base styles for the page-yy77711 container */
    .page-yy77711 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: 10px; /* Small top padding for visual separation from header, assuming body padding-top is handled by shared.css */
      word-wrap: break-word;
      overflow-wrap: break-word;
      box-sizing: border-box;
    }

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

    /* Hero Section */
    .page-yy77711__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-yy77711__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-yy77711__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-yy77711__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #f7b731; /* Golden yellow */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-break: break-word;
    }

    .page-yy77711__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
      word-break: break-word;
    }

    .page-yy77711__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-yy77711__button {
      background-color: #f7b731;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
      max-width: 100%; /* Ensure button fits on mobile */
      word-break: break-word;
    }

    .page-yy77711__button:hover {
      background-color: #e6a520;
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-yy77711__section {
      padding: 40px 0;
      margin-bottom: 40px;
      background-color: #222222;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-yy77711__section-title {
      font-size: 2.5em;
      color: #f7b731;
      text-align: center;
      margin-bottom: 30px;
      word-break: break-word;
    }

    .page-yy77711__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: #cccccc;
      word-break: break-word;
    }

    /* Features/Highlights Grid */
    .page-yy77711__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-yy77711__feature-item {
      background-color: #2c2c2c;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      height: 100%; /* Ensure equal height */
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-yy77711__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-yy77711__feature-image {
      width: 100%;
      max-width: 250px; /* Adjusted from 100px to meet min size 200x200 requirement */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      max-height: 200px; /* Ensure images don't get too tall in cards */
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-yy77711__feature-heading {
      font-size: 1.6em;
      color: #f7b731;
      margin-bottom: 15px;
      word-break: break-word;
    }

    .page-yy77711__feature-text {
      font-size: 1em;
      color: #cccccc;
      flex-grow: 1;
      word-break: break-word;
    }

    /* Game Gallery Section */
    .page-yy77711__game-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-yy77711__game-card {
      background-color: #2c2c2c;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      height: 100%; /* Ensure equal height */
      display: flex;
      flex-direction: column;
    }

    .page-yy77711__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-yy77711__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 2px solid #f7b731;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-yy77711__game-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yy77711__game-title {
      font-size: 1.3em;
      color: #f7b731;
      margin-bottom: 10px;
      word-break: break-word;
    }

    .page-yy77711__game-description {
      font-size: 0.95em;
      color: #cccccc;
      flex-grow: 1;
      word-break: break-word;
    }

    /* Promotions Section */
    .page-yy77711__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-yy77711__promo-card {
      background-color: #2c2c2c;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .page-yy77711__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-yy77711__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-yy77711__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-yy77711__promo-title {
      font-size: 1.5em;
      color: #f7b731;
      margin-bottom: 10px;
      word-break: break-word;
    }

    .page-yy77711__promo-description {
      font-size: 1em;
      color: #cccccc;
      flex-grow: 1;
      margin-bottom: 15px;
      word-break: break-word;
    }

    /* Payment Methods Section */
    .page-yy77711__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-yy77711__payment-item {
      background-color: #2c2c2c;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      width: 180px; /* Fixed width for payment logos */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 120px; /* Fixed height for consistency */
    }

    .page-yy77711__payment-logo {
      max-width: 100%;
      max-height: 80px; /* Constrain logo height within the item */
      object-fit: contain;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-yy77711__faq-section {
      padding: 40px 0;
      background-color: #222222;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-yy77711__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-yy77711__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

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

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

    .page-yy77711__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #f7b731;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-break: break-word;
    }

    .page-yy77711__faq-toggle {
      font-size: 1.8em;
      color: #f7b731;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
      line-height: 1; /* Adjust line height to center +/- */
    }

    .page-yy77711__faq-item.active .page-yy77711__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
    }

    .page-yy77711__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      background-color: #2c2c2c;
      box-sizing: border-box;
    }

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

    .page-yy77711__faq-answer p {
      margin-bottom: 10px;
      word-break: break-word;
    }
    .page-yy77711__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Call to Action Section */
    .page-yy77711__cta-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #f7b731, #e6a520);
      color: #1a1a1a;
      border-radius: 10px;
      margin-top: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-yy77711__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #1a1a1a;
      word-break: break-word;
    }

    .page-yy77711__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #333333;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-break: break-word;
    }

    .page-yy77711__cta-button {
      background-color: #1a1a1a;
      color: #f7b731;
      padding: 18px 40px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
      max-width: 100%;
      word-break: break-word;
    }

    .page-yy77711__cta-button:hover {
      background-color: #333333;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-yy77711__hero-title {
        font-size: 2.8em;
      }
      .page-yy77711__hero-description {
        font-size: 1.2em;
      }
      .page-yy77711__section-title {
        font-size: 2.2em;
      }
      .page-yy77711__cta-title {
        font-size: 2.4em;
      }
    }

    @media (max-width: 768px) {
      .page-yy77711__container {
        padding: 15px;
      }
      .page-yy77711__hero-section {
        padding: 60px 15px;
      }
      .page-yy77711__hero-title {
        font-size: 2.2em;
      }
      .page-yy77711__hero-description {
        font-size: 1em;
      }
      .page-yy77711__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-yy77711__button {
        width: 100%;
        padding: 12px 20px;
      }
      .page-yy77711__section {
        padding: 30px 0;
        margin-bottom: 30px;
      }
      .page-yy77711__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-yy77711__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      /* List items responsive styles */
      .page-yy77711__feature-grid,
      .page-yy77711__game-gallery,
      .page-yy77711__promo-grid {
        grid-template-columns: 1fr; /* Single column layout */
        padding: 0 15px;
      }

      .page-yy77711__feature-item,
      .page-yy77711__game-card,
      .page-yy77711__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-yy77711__feature-image,
      .page-yy77711__game-image,
      .page-yy77711__promo-image {
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        object-fit: contain; /* Ensure full image is visible */
      }

      .page-yy77711__feature-heading {
        font-size: 1.4em;
      }
      .page-yy77711__game-title {
        font-size: 1.2em;
      }
      .page-yy77711__promo-title {
        font-size: 1.3em;
      }

      .page-yy77711__payment-grid {
        gap: 20px;
        padding: 0 15px;
      }
      .page-yy77711__payment-item {
        width: calc(50% - 10px); /* Two columns */
        height: auto;
        padding: 15px;
      }
      .page-yy77711__faq-list {
        padding: 0 15px;
      }
      .page-yy77711__faq-question {
        padding: 12px 15px;
      }
      .page-yy77711__faq-question h3 {
        font-size: 1.1em;
      }
      .page-yy77711__faq-toggle {
        font-size: 1.5em;
      }
      .page-yy77711__faq-answer {
        padding: 0 15px;
      }
      .page-yy77711__faq-item.active .page-yy77711__faq-answer {
        padding: 15px !important;
      }

      .page-yy77711__cta-section {
        padding: 40px 15px;
      }
      .page-yy77711__cta-title {
        font-size: 2em;
      }
      .page-yy77711__cta-button {
        padding: 15px 30px;
      }
    }

    @media (max-width: 480px) {
      .page-yy77711__hero-title {
        font-size: 1.8em;
      }
      .page-yy77711__hero-description {
        font-size: 0.9em;
      }
      .page-yy77711__section-title {
        font-size: 1.6em;
      }
      .page-yy77711__feature-item,
      .page-yy77711__game-card,
      .page-yy77711__promo-card {
        padding: 15px;
      }
      .page-yy77711__feature-heading {
        font-size: 1.2em;
      }
      .page-yy77711__game-title {
        font-size: 1.1em;
      }
      .page-yy77711__promo-title {
        font-size: 1.2em;
      }
      .page-yy77711__payment-item {
        width: 100%; /* Single column for payment methods */
      }
      .page-yy77711__cta-title {
        font-size: 1.8em;
      }
      .page-yy77711__cta-description {
        font-size: 1em;
      }
    }
  