
    .page-82-com {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

    /* Hero Section */
    .page-82-com__hero-section {
      position: relative;
      width: 100%;
      padding: 10px 20px 60px;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      box-sizing: border-box;
      color: #fff;
      background: linear-gradient(135deg, #0f4c81, #0a2d52);
    }

    .page-82-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
      max-width: 100%;
    }

    .page-82-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-82-com__brand-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #f3d250;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-82-com__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-82-com__hero-cta-button,
    .page-82-com__button {
      display: inline-block;
      background-color: #e63946;
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-82-com__hero-cta-button:hover,
    .page-82-com__button:hover {
      background-color: #c02a35;
      transform: translateY(-2px);
    }

    .page-82-com__button--large {
      padding: 15px 30px;
      font-size: 1.2em;
    }

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

    .page-82-com__floating-button {
      display: block;
      width: 100px;
      padding: 10px 0;
      text-align: center;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-82-com__floating-button--register {
      background-color: #28a745;
      color: #fff;
    }

    .page-82-com__floating-button--register:hover {
      background-color: #218838;
      transform: scale(1.05);
    }

    .page-82-com__floating-button--login {
      background-color: #007bff;
      color: #fff;
    }

    .page-82-com__floating-button--login:hover {
      background-color: #0056b3;
      transform: scale(1.05);
    }

    /* General Section Styles */
    .page-82-com__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-82-com__section-title {
      font-size: 2em;
      color: #0a2d52;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-82-com__section-description {
      text-align: center;
      font-size: 1.1em;
      color: #555;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Game Grid */
    .page-82-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-items: center;
    }

    .page-82-com__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

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

    .page-82-com__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-82-com__game-title {
      font-size: 1.4em;
      color: #0f4c81;
      margin: 15px 10px 10px;
      font-weight: 600;
    }

    .page-82-com__game-card p {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 15px;
    }

    /* Promotions Section */
    .page-82-com__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      justify-items: center;
    }

    .page-82-com__promotion-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

    .page-82-com__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-82-com__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-82-com__promotion-title {
      font-size: 1.3em;
      color: #0f4c81;
      margin: 15px 10px 10px;
      font-weight: 600;
    }

    .page-82-com__promotion-item p {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 20px;
    }

    .page-82-com__promotion-item .page-82-com__button {
      margin-bottom: 20px;
    }

    /* Why Choose Us Section */
    .page-82-com__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-items: center;
    }

    .page-82-com__feature-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }

    .page-82-com__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
    }

    .page-82-com__feature-title {
      font-size: 1.3em;
      color: #0f4c81;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-82-com__feature-item p {
      font-size: 0.95em;
      color: #666;
    }

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

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

    .page-82-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e0eafc;
      color: #0f4c81;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-82-com__faq-question:hover {
      background-color: #d0e0fa;
    }

    .page-82-com__faq-q-text {
      margin: 0;
      font-size: 1.1em;
      color: #0f4c81;
      pointer-events: none;
    }

    .page-82-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-82-com__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;
      background-color: #fefefe;
      color: #444;
    }

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

    .page-82-com__faq-answer p {
      margin: 0;
      font-size: 0.95em;
    }

    /* Footer CTA */
    .page-82-com__footer-cta {
      text-align: center;
      background-color: #0f4c81;
      color: #fff;
      padding: 50px 20px;
      margin-bottom: 0;
      border-radius: 0 0 8px 8px;
    }

    .page-82-com__footer-cta .page-82-com__section-title {
      color: #f3d250;
      margin-bottom: 20px;
    }

    .page-82-com__footer-cta .page-82-com__section-description {
      color: #e0e0e0;
      margin-bottom: 40px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-82-com__hero-section {
        min-height: 350px;
        padding-bottom: 40px;
      }

      .page-82-com__brand-title {
        font-size: 2.2em;
      }

      .page-82-com__hero-description {
        font-size: 1em;
      }

      .page-82-com__hero-cta-button,
      .page-82-com__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-82-com__floating-buttons-container {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
      }

      .page-82-com__floating-button {
        width: 90px;
        padding: 8px 0;
        font-size: 0.9em;
      }

      .page-82-com__section {
        padding: 30px 15px;
      }

      .page-82-com__section-title {
        font-size: 1.7em;
        margin-bottom: 25px;
      }

      .page-82-com__section-description {
        font-size: 0.95em;
      }

      .page-82-com__game-grid,
      .page-82-com__promotion-list,
      .page-82-com__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-82-com__game-card,
      .page-82-com__promotion-item,
      .page-82-com__feature-item,
      .page-82-com__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;
      }

      .page-82-com__game-grid,
      .page-82-com__promotion-list,
      .page-82-com__feature-list,
      .page-82-com__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-82-com__game-image,
      .page-82-com__promotion-image,
      .page-82-com__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-82-com__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-82-com__faq-q-text {
        font-size: 1em;
      }

      .page-82-com__faq-answer {
        padding: 0 15px;
      }

      .page-82-com__faq-item.active .page-82-com__faq-answer {
        padding: 15px !important;
      }

      .page-82-com__footer-cta {
        padding: 40px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-82-com__brand-title {
        font-size: 1.8em;
      }

      .page-82-com__hero-description {
        font-size: 0.9em;
      }

      .page-82-com__floating-buttons-container {
        bottom: 10px;
        right: 10px;
        flex-direction: column;
      }

      .page-82-com__floating-button {
        width: 80px;
        padding: 7px 0;
        font-size: 0.85em;
      }
    }
  