
    .page-90ok {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
    }

    /* --- Hero Section --- */
    .page-90ok__hero-section {
      position: relative;
      background-color: #0f0f1d;
      background-size: cover;
      background-position: center;
      padding: 80px 20px 60px; /* Adjust top padding for header offset */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      overflow: hidden;
    }

    .page-90ok__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-90ok__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Slightly dim the background image */
    }

    .page-90ok__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text readability */
      border-radius: 10px;
    }

    .page-90ok__hero-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-90ok__hero-description {
      font-size: 1.2em;
      color: #f0f0f0;
      margin-bottom: 30px;
    }

    .page-90ok__hero-cta {
      margin-top: 20px;
    }

    /* --- Buttons --- */
    .page-90ok__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-90ok__button--primary {
      background-color: #e63946; /* Red accent */
      color: #ffffff;
    }

    .page-90ok__button--primary:hover {
      background-color: #c42d38;
      transform: translateY(-2px);
    }

    .page-90ok__button--secondary {
      background-color: #457b9d; /* Blue accent */
      color: #ffffff;
    }

    .page-90ok__button--secondary:hover {
      background-color: #386785;
      transform: translateY(-2px);
    }

    /* --- Floating Buttons --- */
    .page-90ok__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(15, 15, 29, 0.9); /* Dark semi-transparent */
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box; /* Crucial for mobile width */
    }

    .page-90ok__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 10px;
      margin: 0 5px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.05em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box; /* Crucial for mobile width */
    }

    .page-90ok__floating-button--register {
      background-color: #e63946; /* Red accent */
      color: #ffffff;
    }

    .page-90ok__floating-button--register:hover {
      background-color: #c42d38;
      transform: translateY(-2px);
    }

    .page-90ok__floating-button--login {
      background-color: #457b9d; /* Blue accent */
      color: #ffffff;
    }

    .page-90ok__floating-button--login:hover {
      background-color: #386785;
      transform: translateY(-2px);
    }

    /* --- General Section Styling --- */
    .page-90ok__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-90ok__section-title {
      font-size: 2.2em;
      color: #ffcc00; /* Gold accent */
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-90ok__section-description {
      font-size: 1.1em;
      color: #d0d0d0;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* --- Grids --- */
    .page-90ok__categories-grid,
    .page-90ok__promotions-grid,
    .page-90ok__providers-grid,
    .page-90ok__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    /* --- Category Item --- */
    .page-90ok__category-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px; /* Added padding to ensure text readability */
    }

    .page-90ok__category-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-90ok__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-90ok__category-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-90ok__category-text {
      font-size: 0.95em;
      color: #c0c0c0;
      padding: 0 15px;
    }

    /* --- Promotion Item --- */
    .page-90ok__promotions-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-90ok__promotion-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-90ok__promotion-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-90ok__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-90ok__promotion-title {
      font-size: 1.4em;
      color: #e63946;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-90ok__promotion-text {
      font-size: 0.95em;
      color: #c0c0c0;
      padding: 0 15px;
    }

    .page-90ok__promotions-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* --- About Section --- */
    .page-90ok__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }

    .page-90ok__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .page-90ok__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-90ok__about-list {
      flex: 1;
      min-width: 300px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-90ok__about-list-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* For mobile responsiveness */
      word-wrap: break-word; /* For long text/keywords */
      overflow-wrap: break-word;
    }

    .page-90ok__about-list-title {
      font-size: 1.3em;
      color: #457b9d; /* Blue accent */
      margin-bottom: 8px;
    }

    .page-90ok__about-list-text {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    /* --- Provider Grids (Payment & Game) --- */
    .page-90ok__providers-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      justify-items: center;
    }

    .page-90ok__provider-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #e0e0e0;
      background-color: #2a2a4a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      width: 100%; /* Ensure it takes full grid column width */
      box-sizing: border-box; /* Crucial for mobile width */
      word-wrap: break-word; /* For long text/keywords */
      overflow-wrap: break-word;
    }

    .page-90ok__provider-item:hover {
      transform: translateY(-5px);
      background-color: #3b3b5b;
    }

    .page-90ok__provider-logo {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      max-height: 50px; /* Limit logo height */
      object-fit: contain;
    }

    .page-90ok__provider-name {
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
    }

    /* --- News Section --- */
    .page-90ok__news-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-90ok__news-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-90ok__news-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-90ok__news-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 8px;
      padding: 0 15px;
    }

    .page-90ok__news-date {
      font-size: 0.85em;
      color: #909090;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-90ok__news-excerpt {
      font-size: 0.95em;
      color: #c0c0c0;
      padding: 0 15px;
    }

    /* --- FAQ Section --- */
    .page-90ok__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-90ok__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-90ok__faq-question:hover {
      background-color: #4a4a70;
    }

    .page-90ok__faq-question-title {
      font-size: 1.15em;
      color: #ffcc00;
      margin: 0;
      pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-90ok__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon interfering with click */
    }

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

    .page-90ok__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #d0d0d0;
      background-color: #2a2a4a;
    }

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

    .page-90ok__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Adjust as needed for spacing */
    }

    /* --- Call to Action Bottom --- */
    .page-90ok__cta-bottom {
      text-align: center;
      background-color: #0f0f1d;
      padding: 80px 20px;
      border-top: 1px solid rgba(255, 204, 0, 0.1);
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
      .page-90ok__hero-section {
        padding-top: 60px; /* Less top padding on mobile */
        min-height: 400px;
      }

      .page-90ok__hero-title {
        font-size: 2em;
      }

      .page-90ok__hero-description {
        font-size: 1em;
      }

      .page-90ok__button {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-90ok__floating-buttons {
        flex-direction: row; /* Keep row for two buttons */
        padding: 10px 10px;
      }

      .page-90ok__floating-button {
        margin: 0 3px;
        padding: 10px 8px;
        font-size: 0.95em;
      }

      .page-90ok__section {
        padding: 40px 15px;
      }

      .page-90ok__section-title {
        font-size: 1.8em;
      }

      .page-90ok__section-description {
        font-size: 0.95em;
      }

      .page-90ok__categories-grid,
      .page-90ok__promotions-grid,
      .page-90ok__providers-grid,
      .page-90ok__news-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }

      .page-90ok__category-image,
      .page-90ok__promotion-image,
      .page-90ok__news-image {
        height: 180px; /* Adjust image height */
      }

      .page-90ok__about-content {
        flex-direction: column;
      }

      .page-90ok__about-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-90ok__about-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-90ok__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-90ok__faq-question {
        padding: 12px 15px;
      }

      .page-90ok__faq-question-title {
        font-size: 1em;
      }

      .page-90ok__faq-answer {
        padding: 0 15px;
      }
      
      .page-90ok__faq-item.active .page-90ok__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 375px) {
      .page-90ok__hero-title {
        font-size: 1.6em;
      }
      .page-90ok__button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-90ok__floating-button {
        font-size: 0.85em;
        padding: 8px 5px;
      }
      .page-90ok__section-title {
        font-size: 1.5em;
      }
    }
  