
    .page-79kin-com {
      font-family: Arial, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
    }

    .page-79kin-com__section-title {
      text-align: center;
      color: #ffd700; /* Gold accent */
      font-size: 2.2em;
      margin-bottom: 40px;
      padding-top: 20px;
      position: relative;
    }
    .page-79kin-com__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffd700;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Hero Section */
    .page-79kin-com__hero-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 60vh; /* Minimum height for hero */
      position: relative;
      overflow: hidden;
      padding: 10px 20px 60px; /* Small top padding, assuming body handles header offset */
      box-sizing: border-box;
    }

    .page-79kin-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
    }

    .page-79kin-com__hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6); /* Darken image for text readability, NOT changing color */
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-79kin-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-79kin-com__main-title {
      font-size: 3.5em;
      color: #ffffff;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-79kin-com__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-79kin-com__cta-button {
      display: inline-block;
      background-color: #ffd700; /* Gold accent */
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-79kin-com__cta-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-3px);
    }

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

    .page-79kin-com__floating-button {
      display: block;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 120px;
    }

    .page-79kin-com__floating-button--register {
      background-color: #28a745; /* Green */
      color: #ffffff;
    }

    .page-79kin-com__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    .page-79kin-com__floating-button--login {
      background-color: #007bff; /* Blue */
      color: #ffffff;
    }

    .page-79kin-com__floating-button--login:hover {
      background-color: #0069d9;
      transform: translateY(-3px);
    }

    /* About Section */
    .page-79kin-com__about-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-79kin-com__about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .page-79kin-com__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      object-fit: cover;
    }

    .page-79kin-com__about-content p {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto;
      text-align: justify;
    }
    .page-79kin-com__about-content p strong {
        color: #ffd700;
    }

    /* Game Categories Section */
    .page-79kin-com__games-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-79kin-com__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-79kin-com__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-79kin-com__game-card:hover {
      transform: translateY(-5px);
    }

    .page-79kin-com__game-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #ffd700;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-79kin-com__game-card-title {
      color: #ffd700;
      font-size: 1.6em;
      margin: 15px 10px 10px;
    }

    .page-79kin-com__game-card p {
      padding: 0 15px 15px;
      font-size: 0.95em;
      flex-grow: 1;
    }

    .page-79kin-com__game-card-button {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .page-79kin-com__game-card-button:hover {
      background-color: #ffeb3b;
    }

    /* Promotions Section */
    .page-79kin-com__promo-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-79kin-com__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-79kin-com__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-79kin-com__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-79kin-com__promo-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 2px solid #ffd700;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-79kin-com__promo-card-title {
      color: #ffd700;
      font-size: 1.4em;
      margin: 15px 10px 10px;
    }

    .page-79kin-com__promo-card p {
      padding: 0 15px 15px;
      font-size: 0.95em;
      flex-grow: 1;
    }

    .page-79kin-com__promo-card-button {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .page-79kin-com__promo-card-button:hover {
      background-color: #ffeb3b;
    }

    /* News Section */
    .page-79kin-com__news-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-79kin-com__news-articles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-79kin-com__news-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-79kin-com__news-item:hover {
      transform: translateY(-5px);
    }

    .page-79kin-com__news-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 2px solid #ffd700;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-79kin-com__news-item-title {
      color: #ffd700;
      font-size: 1.4em;
      margin: 15px 15px 5px;
    }

    .page-79kin-com__news-date {
      font-size: 0.9em;
      color: #aaa;
      margin: 0 15px 10px;
    }

    .page-79kin-com__news-item p {
      padding: 0 15px 15px;
      font-size: 0.95em;
      flex-grow: 1;
    }

    .page-79kin-com__news-read-more {
      display: inline-block;
      color: #ffd700;
      font-weight: bold;
      margin: 0 15px 20px;
      cursor: pointer;
      text-decoration: underline;
    }
    .page-79kin-com__news-read-more:hover {
      color: #ffeb3b;
    }

    /* Payment & Providers Section */
    .page-79kin-com__payment-providers-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .page-79kin-com__payment-methods,
    .page-79kin-com__game-providers {
      text-align: center;
    }

    .page-79kin-com__payment-logos,
    .page-79kin-com__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-79kin-com__payment-logo,
    .page-79kin-com__provider-logo {
      max-width: 150px;
      height: auto;
      object-fit: contain;
      background-color: #333;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box; /* Crucial for images in flex/grid */
      min-width: 200px; /* Minimum size for all images */
      min-height: 200px; /* Minimum size for all images */
    }

    /* Social Section */
    .page-79kin-com__social-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-79kin-com__social-intro {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-79kin-com__social-intro strong {
        color: #ffd700;
    }

    .page-79kin-com__social-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-79kin-com__social-item {
      background-color: #2a2a2a;
      color: #f0f0f0;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      box-sizing: border-box; /* Important for list items */
    }

    .page-79kin-com__social-item:hover {
      background-color: #ffd700;
      color: #1a1a1a;
    }

    /* FAQ Section */
    .page-79kin-com__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-79kin-com__faq-container {
      margin-top: 40px;
    }

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

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

    .page-79kin-com__faq-question:hover {
      background-color: #444;
    }

    .page-79kin-com__faq-question-text {
      font-size: 1.2em;
      color: #ffffff;
      margin: 0;
      pointer-events: none; /* Prevent text from blocking click event on parent div */
      flex-grow: 1;
    }

    .page-79kin-com__faq-toggle {
      font-size: 1.8em;
      color: #ffd700;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent icon from blocking click event on parent div */
      transition: transform 0.3s ease;
    }

    .page-79kin-com__faq-item.active .page-79kin-com__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-79kin-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #e0e0e0;
    }

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

    .page-79kin-com__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-79kin-com__faq-answer p strong {
        color: #ffd700;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-79kin-com__main-title {
        font-size: 2.5em;
      }

      .page-79kin-com__hero-description {
        font-size: 1.1em;
      }

      .page-79kin-com__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-79kin-com__floating-buttons {
        flex-direction: row;
        bottom: 10px;
        left: 10px;
        right: 10px;
        justify-content: center;
        gap: 10px;
      }

      .page-79kin-com__floating-button {
        flex: 1;
        min-width: unset;
        padding: 10px 15px;
      }

      .page-79kin-com__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-79kin-com__about-content {
        flex-direction: column;
      }

      .page-79kin-com__game-categories,
      .page-79kin-com__promo-grid,
      .page-79kin-com__news-articles {
        grid-template-columns: 1fr;
      }

      .page-79kin-com__game-card img,
      .page-79kin-com__promo-card img,
      .page-79kin-com__news-item img {
        height: 180px;
      }

      .page-79kin-com__payment-providers-section {
        gap: 40px;
      }

      .page-79kin-com__payment-logos,
      .page-79kin-com__provider-logos {
        gap: 10px;
      }

      .page-79kin-com__payment-logo,
      .page-79kin-com__provider-logo {
        max-width: 120px;
        min-width: 100px; /* Adjusted to meet minimum image size */
        min-height: 100px; /* Adjusted to meet minimum image size */
      }
      
      /* List item responsive requirements */
      .page-79kin-com__social-list {
        flex-direction: column;
        align-items: center;
        padding: 0 !important; /* Ensure no default ul padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-79kin-com__social-item {
        width: 90% !important; /* Make list items take full width */
        max-width: 90% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-79kin-com__faq-question {
        padding: 15px 20px;
      }

      .page-79kin-com__faq-question-text {
        font-size: 1.1em;
      }

      .page-79kin-com__faq-toggle {
        font-size: 1.5em;
      }

      .page-79kin-com__faq-answer {
        padding: 0 20px;
      }

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

    @media (max-width: 480px) {
      .page-79kin-com__main-title {
        font-size: 2em;
      }
      .page-79kin-com__hero-content {
        padding: 15px;
      }
      .page-79kin-com__payment-logo,
      .page-79kin-com__provider-logo {
        min-width: 80px; /* Further adjustment for very small screens */
        min-height: 80px; /* Further adjustment for very small screens */
      }
    }
  