.page-kuwim02 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: 10px; /* Minimal top padding, relying on body for header offset */
    }

    .page-kuwim02__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-kuwim02 h1,
    .page-kuwim02 h2,
    .page-kuwim02 h3 {
      color: #0056b3; /* Dark blue for headings */
      margin-bottom: 15px;
      text-align: center;
    }

    .page-kuwim02 h1 {
      font-size: 2.8em;
      font-weight: 700;
      color: #ffffff;
    }

    .page-kuwim02 h2 {
      font-size: 2.2em;
      font-weight: 600;
      margin-top: 40px;
      margin-bottom: 25px;
    }

    .page-kuwim02 h3 {
      font-size: 1.6em;
      font-weight: 500;
      color: #333;
    }

    .page-kuwim02 p {
      margin-bottom: 15px;
      text-align: center;
      color: #555;
    }

    .page-kuwim02__btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      cursor: pointer;
      white-space: nowrap;
    }

    .page-kuwim02__btn--primary {
      background-color: #007bff; /* Blue */
      color: #fff;
      border: 2px solid #007bff;
    }

    .page-kuwim02__btn--primary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-kuwim02__btn--secondary {
      background-color: transparent;
      color: #007bff;
      border: 2px solid #007bff;
    }

    .page-kuwim02__btn--secondary:hover {
      background-color: #e9f5ff;
      color: #0056b3;
      transform: translateY(-2px);
    }

    .page-kuwim02__btn--small {
      padding: 8px 18px;
      font-size: 0.9em;
      margin-top: 15px;
    }

    /* HERO Section */
    .page-kuwim02__hero-section {
      position: relative;
      width: 100%;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      background: linear-gradient(135deg, #007bff, #0056b3);
      padding: 20px 0;
    }

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

    .page-kuwim02__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-kuwim02__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-kuwim02__hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    /* Introduction Section */
    .page-kuwim02__intro-section {
      padding: 60px 0;
      background-color: #fff;
      text-align: center;
    }

    .page-kuwim02__intro-section p {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kuwim02__features {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .page-kuwim02__feature-item {
      flex: 1;
      max-width: 300px;
      padding: 25px;
      border-radius: 10px;
      background-color: #f0f8ff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      min-width: 250px;
    }

    .page-kuwim02__feature-icon {
      width: 200px;
      height: auto;
      max-width: 100%;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    /* Quick Access Section */
    .page-kuwim02__quick-access-section {
      padding: 60px 0;
      background-color: #e9f5ff;
      text-align: center;
    }

    .page-kuwim02__access-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-kuwim02__access-btn {
      background-color: #28a745; /* Green */
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 180px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      white-space: nowrap;
    }

    .page-kuwim02__access-btn:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    /* Games Section */
    .page-kuwim02__games-section {
      padding: 60px 0;
      background-color: #fff;
      text-align: center;
    }

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

    .page-kuwim02__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-kuwim02__game-card h3 {
      font-size: 1.4em;
      margin-top: 0;
      padding: 0 15px;
      color: #0056b3;
    }

    .page-kuwim02__game-card p {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-kuwim02__promotions-section {
      padding: 60px 0;
      background-color: #f8f9fa;
      text-align: center;
    }

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

    .page-kuwim02__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-kuwim02__promo-card h3 {
      font-size: 1.5em;
      margin-top: 0;
      padding: 0 15px;
      color: #d63384; /* Pink/Purple for promotions */
    }

    .page-kuwim02__promo-card p {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* Service Section */
    .page-kuwim02__service-section {
      padding: 60px 0;
      background-color: #fff;
      text-align: center;
    }

    .page-kuwim02__service-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .page-kuwim02__service-item {
      flex: 1;
      max-width: 300px;
      padding: 25px;
      border-radius: 10px;
      background-color: #e6f7ff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      min-width: 250px;
    }

    .page-kuwim02__service-icon {
      width: 200px;
      height: auto;
      max-width: 100%;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-kuwim02__contact-cta {
      margin-top: 40px;
    }

    /* FAQ Section */
    .page-kuwim02__faq-section {
      padding: 60px 0;
      background-color: #f0f8ff;
    }

    .page-kuwim02__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
    }

    .page-kuwim02__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

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

    .page-kuwim02__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-kuwim02__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      text-align: left;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-kuwim02__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

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

    .page-kuwim02__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: #fcfcfc;
    }

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

    .page-kuwim02__faq-answer p {
      margin: 0;
      color: #555;
      text-align: left;
    }

    /* Blog Section */
    .page-kuwim02__blog-section {
      padding: 60px 0;
      background-color: #f8f9fa;
      text-align: center;
    }

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

    .page-kuwim02__blog-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

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

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

    .page-kuwim02__blog-content h3 {
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
      text-align: left;
      color: #0056b3;
    }

    .page-kuwim02__blog-content h3 a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    .page-kuwim02__blog-content h3 a:hover {
      color: #007bff;
    }

    .page-kuwim02__blog-content p {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 10px;
      text-align: left;
    }

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

    .page-kuwim02__floating-btn {
      background-color: #ffc107; /* Yellow for attention */
      color: #333;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 100px;
    }

    .page-kuwim02__floating-btn:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-kuwim02__floating-btn--register {
      background-color: #28a745;
      color: #fff;
    }

    .page-kuwim02__floating-btn--register:hover {
      background-color: #218838;
    }

    .page-kuwim02__floating-btn--login {
      background-color: #007bff;
      color: #fff;
    }

    .page-kuwim02__floating-btn--login:hover {
      background-color: #0056b3;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-kuwim02 h1 {
        font-size: 2.2em;
      }

      .page-kuwim02 h2 {
        font-size: 1.8em;
      }

      .page-kuwim02 h3 {
        font-size: 1.3em;
      }

      .page-kuwim02__hero-section {
        height: 500px;
        padding: 10px 0;
      }

      .page-kuwim02__hero-content {
        padding: 15px;
      }

      .page-kuwim02__hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
      }

      .page-kuwim02__hero-cta {
        flex-direction: column;
        gap: 15px;
      }

      .page-kuwim02__btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-kuwim02__intro-section,
      .page-kuwim02__quick-access-section,
      .page-kuwim02__games-section,
      .page-kuwim02__promotions-section,
      .page-kuwim02__service-section,
      .page-kuwim02__blog-section,
      .page-kuwim02__faq-section {
        padding: 40px 0;
      }

      .page-kuwim02__features,
      .page-kuwim02__access-links,
      .page-kuwim02__service-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .page-kuwim02__feature-item,
      .page-kuwim02__service-item {
        width: 100% !important;
        max-width: 350px !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kuwim02__access-btn {
        width: 100% !important;
        max-width: 300px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kuwim02__game-categories,
      .page-kuwim02__promo-grid,
      .page-kuwim02__blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .page-kuwim02__game-card,
      .page-kuwim02__promo-card,
      .page-kuwim02__blog-card {
        margin: 0 auto;
        max-width: 400px;
      }

      .page-kuwim02__faq-list {
        padding: 0 10px;
      }

      .page-kuwim02__faq-question {
        padding: 15px;
      }

      .page-kuwim02__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important; 
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

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

      .page-kuwim02__faq-answer p {
        word-wrap: break-word !important; 
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kuwim02__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-kuwim02__floating-btn {
        padding: 10px 18px;
        min-width: 90px;
      }
    }

    @media (max-width: 480px) {
      .page-kuwim02 h1 {
        font-size: 1.8em;
      }

      .page-kuwim02 h2 {
        font-size: 1.6em;
      }

      .page-kuwim02__hero-section {
        height: 400px;
      }

      .page-kuwim02__hero-content {
        padding: 10px;
      }

      .page-kuwim02__hero-content p {
        font-size: 0.9em;
        margin-bottom: 15px;
      }

      .page-kuwim02__btn {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-kuwim02__feature-icon,
      .page-kuwim02__service-icon {
        width: 150px;
      }
    }