
    .page-99s {
      font-family: 'Arial', sans-serif;
      color: #eee;
      background-color: #1a1a1a;
      line-height: 1.6;
    }

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

    .page-99s__section-title {
      font-size: 2.5em;
      color: #f7b32b; /* Golden yellow */
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      position: relative;
    }

    .page-99s__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #e53935; /* Red accent */
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-99s__subsection-title {
      font-size: 1.8em;
      color: #f7b32b;
      text-align: center;
      margin-top: 40px;
      margin-bottom: 25px;
    }

    .page-99s__paragraph {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-99s__hero-section {
      position: relative;
      width: 100%;
      height: 500px; /* Adjust height for mobile-first approach */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      box-sizing: border-box;
    }

    .page-99s__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-99s__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
      z-index: 2;
    }

    .page-99s__hero-content {
      position: relative;
      z-index: 3;
      color: #fff;
      padding: 0 20px;
    }

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

    .page-99s__hero-subtitle {
      font-size: 1.5em;
      max-width: 800px;
      margin: 0 auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Buttons */
    .page-99s__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      max-width: 350px; /* Limit width for mobile */
      padding: 0 15px;
      box-sizing: border-box;
      justify-content: center;
    }

    .page-99s__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      flex-grow: 1; /* Allow buttons to grow */
    }

    .page-99s__button--register {
      background-color: #e53935; /* Red */
      color: #fff;
    }

    .page-99s__button--register:hover {
      background-color: #d32f2f;
      transform: translateY(-2px);
    }

    .page-99s__button--login {
      background-color: #f7b32b; /* Golden yellow */
      color: #1a1a1a;
    }

    .page-99s__button--login:hover {
      background-color: #e0a325;
      transform: translateY(-2px);
    }

    /* About Section */
    .page-99s__about-section {
      padding: 40px 0;
      background-color: #222;
    }

    /* Games Section */
    .page-99s__games-section {
      padding: 40px 0;
      background-color: #1a1a1a;
    }

    .page-99s__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-99s__game-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      padding-bottom: 20px; /* Ensure space for text */
    }

    .page-99s__game-item:hover {
      transform: translateY(-5px);
    }

    .page-99s__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #f7b32b;
      max-width: 100%; /* Important for responsiveness */
      height: auto; /* Important for responsiveness */
      box-sizing: border-box;
    }

    .page-99s__game-title {
      font-size: 1.5em;
      color: #f7b32b;
      margin: 20px 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-99s__game-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px;
      margin-bottom: 15px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-99s__promotions-section {
      padding: 40px 0;
      background-color: #222;
    }

    .page-99s__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
      margin: 30px auto 0 auto; /* Centering for list container */
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-99s__promo-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-99s__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-99s__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #e53935;
      max-width: 100%; /* Important for responsiveness */
      height: auto; /* Important for responsiveness */
      box-sizing: border-box;
    }

    .page-99s__promo-title {
      font-size: 1.4em;
      color: #f7b32b;
      margin: 20px 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-99s__promo-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px;
      margin-bottom: 20px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Payment & Providers Section */
    .page-99s__payment-providers-section {
      padding: 40px 0;
      background-color: #1a1a1a;
    }

    .page-99s__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 25px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-99s__logo-item {
      flex: 0 0 auto; /* Prevent growing, allow shrinking */
      width: 150px; /* Fixed width for logos */
      height: 100px; /* Fixed height for logos */
      background-color: #2a2a2a;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box; /* Ensure padding/border included */
    }

    .page-99s__logo-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .page-99s__logo-item a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      text-decoration: none;
    }

    .page-99s__logo-image {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
      filter: brightness(0.9) grayscale(0.2); /* Subtle effect, not color changing */
      transition: filter 0.3s ease;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      box-sizing: border-box;
    }

    .page-99s__logo-item:hover .page-99s__logo-image {
      filter: brightness(1) grayscale(0);
    }

    /* FAQ Section */
    .page-99s__faq-section {
      padding: 40px 0;
      background-color: #222;
    }

    .page-99s__faq-list {
      max-width: 900px;
      margin: 30px auto;
      box-sizing: border-box; /* Ensure padding/border included */
    }

    .page-99s__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-99s__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #333;
      color: #f7b32b;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-99s__faq-question-text {
      margin: 0;
      pointer-events: none; /* Crucial for click event on parent */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-99s__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-99s__faq-item.active .page-99s__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-99s__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question horizontal */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      font-size: 1.0em;
      box-sizing: border-box;
    }

    .page-99s__faq-item.active .page-99s__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Adjusted padding when open */
      opacity: 1;
    }

    .page-99s__faq-answer .page-99s__paragraph {
      text-align: left;
      margin-bottom: 0;
      padding: 0;
      max-width: 100%;
    }


    /* Contact Social Section */
    .page-99s__contact-social-section {
      padding: 40px 0 80px 0; /* Extra padding at bottom to not hide floating buttons */
      background-color: #1a1a1a;
    }

    .page-99s__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-99s__social-icon {
      display: block;
      width: 60px; /* Adjust size to be larger than small icons */
      height: 60px;
      border-radius: 50%;
      background-color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-99s__social-icon:hover {
      background-color: #f7b32b;
      transform: translateY(-3px);
    }

    .page-99s__social-icon:hover .page-99s__social-image {
      filter: brightness(0.2); /* Darken image on hover for contrast */
    }

    .page-99s__social-image {
      width: 70%;
      height: 70%;
      object-fit: contain;
      filter: grayscale(100%) brightness(0.8); /* Desaturate and dim initially */
      transition: filter 0.3s ease;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      box-sizing: border-box;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-99s__hero-section {
        height: 400px;
      }

      .page-99s__hero-title {
        font-size: 2.2em;
      }

      .page-99s__hero-subtitle {
        font-size: 1.2em;
      }

      .page-99s__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      
      .page-99s__subsection-title {
        font-size: 1.5em;
      }

      .page-99s__paragraph {
        font-size: 1em;
        padding: 0 10px;
      }

      .page-99s__floating-buttons {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
        max-width: calc(100% - 30px); /* Adjust max-width for smaller screens */
      }

      .page-99s__button {
        width: 100%; /* Full width for buttons on small screens */
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-99s__game-grid,
      .page-99s__promo-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        padding: 0 15px;
      }

      .page-99s__game-item,
      .page-99s__promo-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;
      }

      .page-99s__game-image,
      .page-99s__promo-image,
      .page-99s__logo-image,
      .page-99s__social-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-99s__logo-grid {
        padding: 0 10px;
      }

      .page-99s__logo-item {
        width: calc(50% - 15px); /* Two columns for logos */
        height: 80px;
      }
      
      .page-99s__faq-list {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-99s__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;
      }

      .page-99s__faq-question,
      .page-99s__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-99s__faq-question-text {
        font-size: 1.1em;
      }
      
      .page-99s__faq-item.active .page-99s__faq-answer {
        padding: 15px 15px !important;
      }

      .page-99s__social-links {
        padding: 0 10px;
      }
      
      .page-99s__social-icon {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 480px) {
      .page-99s__hero-title {
        font-size: 1.8em;
      }
      .page-99s__hero-subtitle {
        font-size: 1em;
      }
      .page-99s__section-title {
        font-size: 1.8em;
      }
      .page-99s__button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
      .page-99s__logo-item {
        width: calc(100% - 20px); /* Single column for logos on very small screens */
      }
    }
  