
    .page-g-kim-79 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0; /* Light grey text */
      background-color: #1a1a2e; /* Dark blue/purple background */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-g-kim-79__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold/yellow for titles */
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
      word-wrap: break-word; /* Ensure long titles break */
      overflow-wrap: break-word;
    }

    .page-g-kim-79__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      padding: 0 15px;
      color: #c0c0c0; /* Slightly darker grey for descriptions */
    }

    .page-g-kim-79 .highlight {
      color: #ffcc00; /* Gold/yellow for highlights */
    }

    /* Hero Section */
    .page-g-kim-79__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 60px 20px; /* 10px top padding for header offset */
      background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
      position: relative;
      overflow: hidden;
    }

    .page-g-kim-79__hero-content {
      max-width: 900px;
      z-index: 1;
      margin-bottom: 40px;
    }

    .page-g-kim-79__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #e0e0e0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-g-kim-79__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #c0c0c0;
    }

    .page-g-kim-79__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-g-kim-79__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-g-kim-79__button--primary {
      background-color: #ffcc00; /* Gold */
      color: #1a1a2e; /* Dark blue/purple */
      border: 2px solid #ffcc00;
    }

    .page-g-kim-79__button--primary:hover {
      background-color: #e0b300; /* Darker gold */
      border-color: #e0b300;
      transform: translateY(-2px);
    }

    .page-g-kim-79__button--secondary {
      background-color: #1a1a2e; /* Dark blue/purple */
      color: #ffcc00; /* Gold */
      border: 2px solid #ffcc00;
    }

    .page-g-kim-79__button--secondary:hover {
      background-color: #0f0f1d; /* Even darker blue */
      color: #ffcc00;
      transform: translateY(-2px);
    }

    .page-g-kim-79__hero-image-wrapper {
      max-width: 100%;
      text-align: center;
      margin-top: 40px;
    }

    .page-g-kim-79__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
      display: block; /* Remove extra space below image */
      margin: 0 auto; /* Center image */
    }

    /* Game Categories Section */
    .page-g-kim-79__game-categories-section {
      padding: 80px 20px;
      background-color: #2a2a4a; /* Slightly lighter dark blue */
    }

    .page-g-kim-79__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-g-kim-79__game-card {
      background-color: #1a1a2e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-g-kim-79__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .page-g-kim-79__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-g-kim-79__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin: 20px 15px 10px 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-g-kim-79__game-card-text {
      font-size: 0.95em;
      color: #c0c0c0;
      padding: 0 15px 20px 15px;
      flex-grow: 1;
    }

    /* About Section */
    .page-g-kim-79__about-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-g-kim-79__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-g-kim-79__about-image {
      flex: 1 1 400px;
      max-width: 50%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      display: block;
    }

    .page-g-kim-79__about-text {
      flex: 1 1 400px;
      color: #e0e0e0;
    }

    .page-g-kim-79__about-text p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-g-kim-79__about-text strong {
      color: #ffcc00;
    }

    /* Providers Section */
    .page-g-kim-79__providers-section {
      padding: 80px 20px;
      background-color: #2a2a4a;
    }

    .page-g-kim-79__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-g-kim-79__provider-item {
      background-color: #1a1a2e;
      color: #ffcc00;
      padding: 15px 25px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
      text-align: center;
      min-width: 150px; /* Ensure items don't get too small */
    }

    .page-g-kim-79__provider-item:hover {
      background-color: #0f0f1d;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-g-kim-79__faq-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-g-kim-79__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-g-kim-79__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-g-kim-79__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a5a; /* Slightly different background for question */
      color: #e0e0e0;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-g-kim-79__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-g-kim-79__faq-question-text {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00; /* Gold for question text */
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-g-kim-79__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-g-kim-79__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a4a;
      color: #c0c0c0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-g-kim-79__faq-answer p {
      margin: 0;
      padding-bottom: 15px; /* Add padding to the paragraph inside answer */
    }

    /* Active state for FAQ */
    .page-g-kim-79__faq-item.active .page-g-kim-79__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Adjusted padding */
      opacity: 1;
    }

    .page-g-kim-79__faq-item.active .page-g-kim-79__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or rotate it */
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .page-g-kim-79__hero-title {
        font-size: 3em;
      }
      .page-g-kim-79__section-title {
        font-size: 2.2em;
      }
      .page-g-kim-79__about-image {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .page-g-kim-79__hero-section {
        padding: 10px 15px 40px 15px;
      }
      .page-g-kim-79__hero-title {
        font-size: 2.5em;
      }
      .page-g-kim-79__hero-description {
        font-size: 1.1em;
      }
      .page-g-kim-79__hero-actions {
        flex-direction: column;
        gap: 15px;
      }
      .page-g-kim-79__button {
        width: 100%;
        max-width: 300px;
      }

      .page-g-kim-79__section-title {
        font-size: 1.8em;
      }
      .page-g-kim-79__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-g-kim-79__game-categories-section,
      .page-g-kim-79__about-section,
      .page-g-kim-79__providers-section,
      .page-g-kim-79__faq-section {
        padding: 50px 15px;
      }

      .page-g-kim-79__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List items responsiveness for game cards */
      .page-g-kim-79__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-g-kim-79__game-card-title,
      .page-g-kim-79__game-card-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-g-kim-79__about-content {
        flex-direction: column;
      }
      .page-g-kim-79__about-image {
        max-width: 100%;
      }

      .page-g-kim-79__provider-list {
        flex-direction: column;
        align-items: center;
      }
      /* List items responsiveness for provider items */
      .page-g-kim-79__provider-item {
        width: 100% !important;
        max-width: 300px !important; /* Limit width for better appearance */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-g-kim-79__faq-question {
        padding: 15px 20px;
      }
      .page-g-kim-79__faq-question-text {
        font-size: 1.1em;
      }
      .page-g-kim-79__faq-toggle {
        font-size: 1.5em;
      }
      .page-g-kim-79__faq-answer {
        padding: 0 20px;
      }
      .page-g-kim-79__faq-item.active .page-g-kim-79__faq-answer {
        padding: 15px 20px !important;
      }
      .page-g-kim-79__faq-answer p {
        padding-bottom: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-g-kim-79__hero-title {
        font-size: 2em;
      }
      .page-g-kim-79__section-title {
        font-size: 1.6em;
      }
      .page-g-kim-79__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  