
    .page-816 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-816__section-title {
      font-size: 2.5em;
      color: #f0f0f0;
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-816__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffcc00;
    }

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

    .page-816__brand-highlight {
      color: #ffcc00;
      font-weight: bold;
    }

    .page-816__keyword-highlight {
      color: #00e676;
      font-weight: bold;
    }

    /* Hero Section */
    .page-816__hero-section {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px;
      box-sizing: border-box;
    }

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

    .page-816__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
      z-index: 2;
    }

    .page-816__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      color: #fff;
    }

    .page-816__main-heading {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-816__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    .page-816__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-816__cta-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      font-size: 1.1em;
    }

    .page-816__cta-button--primary {
      background-color: #ffcc00;
      color: #1a1a1a;
      border: 2px solid #ffcc00;
    }

    .page-816__cta-button--primary:hover {
      background-color: #e6b800;
      border-color: #e6b800;
    }

    .page-816__cta-button--secondary {
      background-color: transparent;
      color: #ffcc00;
      border: 2px solid #ffcc00;
    }

    .page-816__cta-button--secondary:hover {
      background-color: #ffcc00;
      color: #1a1a1a;
    }

    /* Sections */
    .page-816__promotions-section,
    .page-816__games-section,
    .page-816__about-section,
    .page-816__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-816__promo-grid,
    .page-816__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-816__promo-card,
    .page-816__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-816__promo-card:hover,
    .page-816__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-816__promo-image,
    .page-816__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-816__promo-title,
    .page-816__game-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin: 15px 15px 10px;
    }

    .page-816__promo-text,
    .page-816__game-text {
      font-size: 1em;
      color: #b0b0b0;
      padding: 0 15px 15px;
      flex-grow: 1;
    }

    .page-816__read-more {
      display: block;
      text-align: center;
      padding: 10px 15px;
      background-color: #3a3a3a;
      color: #ffcc00;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border-top: 1px solid #333;
    }

    .page-816__read-more:hover {
      background-color: #4a4a4a;
    }

    /* About Section */
    .page-816__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      margin-top: 40px;
    }

    .page-816__about-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-816__about-text {
      flex: 2;
      min-width: 300px;
      color: #d0d0d0;
      font-size: 1.1em;
    }

    .page-816__about-text p {
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-816__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
    }

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

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

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

    .page-816__faq-title {
      font-size: 1.2em;
      color: #f0f0f0;
      margin: 0;
      pointer-events: none;
    }

    .page-816__faq-toggle {
      font-size: 1.8em;
      color: #ffcc00;
      font-weight: bold;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-816__faq-item.active .page-816__faq-toggle {
      transform: rotate(45deg);
    }

    .page-816__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;
      color: #c0c0c0;
      box-sizing: border-box;
    }

    .page-816__faq-item.active .page-816__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-816__faq-answer p {
      margin-bottom: 10px;
    }

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

    .page-816__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      color: #1a1a1a;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      min-width: 120px;
      text-align: center;
    }

    .page-816__floating-button--register {
      background-color: #ffcc00;
    }

    .page-816__floating-button--register:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-816__floating-button--login {
      background-color: #00e676;
    }

    .page-816__floating-button--login:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-816__main-heading {
        font-size: 3em;
      }
      .page-816__hero-description {
        font-size: 1.2em;
      }
      .page-816__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-816__hero-section {
        height: 80vh;
      }
      .page-816__main-heading {
        font-size: 2.2em;
      }
      .page-816__hero-description {
        font-size: 1em;
      }
      .page-816__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-816__hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .page-816__promotions-section,
      .page-816__games-section,
      .page-816__about-section,
      .page-816__faq-section {
        padding: 40px 15px;
      }

      .page-816__promo-grid,
      .page-816__game-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive requirements */
      .page-816__promo-card,
      .page-816__game-card,
      .page-816__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-816__promo-text,
      .page-816__game-text,
      .page-816__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-816__about-content {
        flex-direction: column;
        gap: 20px;
      }

      .page-816__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-816__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-816__floating-button {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-816__main-heading {
        font-size: 1.8em;
      }
      .page-816__hero-description {
        font-size: 0.9em;
      }
      .page-816__section-title {
        font-size: 1.8em;
      }
      .page-816__promo-title,
      .page-816__game-title {
        font-size: 1.3em;
      }
      .page-816__faq-title {
        font-size: 1.1em;
      }
    }
  