
    /* Base styles for the page */
    :root {
      --primary-color: #e53935; /* A vibrant red for action */
      --secondary-color: #ffb300; /* A warm yellow for highlights */
      --text-color: #333;
      --light-text-color: #f5f5f5;
      --background-color: #f0f2f5;
      --card-background: #ffffff;
      --border-color: #e0e0e0;
      --button-hover-color: #c62828;
    }

    .page-8k8-com-login-11 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not applied */
    }

    .page-8k8-com-login-11__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-8k8-com-login-11__hero-section {
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: var(--light-text-color);
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 30px;
      padding-top: 70px; /* Decorative top padding */
    }

    .page-8k8-com-login-11__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:abstract:1920x1080:geometric,pattern,dark]');
      background-size: cover;
      opacity: 0.15;
      z-index: 0;
    }

    .page-8k8-com-login-11__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-com-login-11__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 700;
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-11__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-8k8-com-login-11__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-8k8-com-login-11__button {
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-11__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-8k8-com-login-11__button--secondary {
      background-color: var(--secondary-color);
      color: var(--text-color);
    }

    .page-8k8-com-login-11__button--secondary:hover {
      background-color: #ffa000;
    }

    /* Section Styling */
    .page-8k8-com-login-11__section {
      background-color: var(--card-background);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-com-login-11__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-8k8-com-login-11__section-title::after {
      content: '';
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    /* Features Grid */
    .page-8k8-com-login-11__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-com-login-11__feature-card {
      background-color: var(--background-color);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-login-11__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-login-11__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-login-11__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-login-11__feature-description {
      font-size: 1em;
      color: var(--text-color);
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Game Providers */
    .page-8k8-com-login-11__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-login-11__provider-logo {
      background-color: var(--background-color);
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px;
      transition: transform 0.2s ease;
    }

    .page-8k8-com-login-11__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-8k8-com-login-11__provider-logo img {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
      border-radius: 4px;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
      width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    /* Payment Methods */
    .page-8k8-com-login-11__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-8k8-com-login-11__payment-method {
      background-color: var(--background-color);
      padding: 10px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80px;
    }

    .page-8k8-com-login-11__payment-method img {
      max-width: 90%;
      max-height: 60px;
      object-fit: contain;
      border-radius: 4px;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
      width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-8k8-com-login-11__faq-section {
      background-color: var(--card-background);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-com-login-11__faq-item {
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8k8-com-login-11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--text-color);
      transition: color 0.3s ease;
    }

    .page-8k8-com-login-11__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-com-login-11__faq-question:hover {
      color: var(--primary-color);
    }

    .page-8k8-com-login-11__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: var(--primary-color);
    }

    .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-com-login-11__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: #555;
    }

    .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-login-11__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-login-11__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-11__hero-section {
        padding: 40px 15px;
        padding-top: 50px; /* Decorative top padding */
      }
      .page-8k8-com-login-11__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-login-11__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-com-login-11__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-com-login-11__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-8k8-com-login-11__container {
        padding: 15px;
      }
      .page-8k8-com-login-11__section {
        padding: 25px;
      }
      .page-8k8-com-login-11__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-11__features-grid,
      .page-8k8-com-login-11__providers-grid,
      .page-8k8-com-login-11__payments-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      /* List item mobile responsiveness */
      .page-8k8-com-login-11__features-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
      }
      .page-8k8-com-login-11__providers-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important;
      }
      .page-8k8-com-login-11__payments-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 8px !important;
      }
      .page-8k8-com-login-11__feature-description,
      .page-8k8-com-login-11__faq-question h3,
      .page-8k8-com-login-11__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive adjustments */
      .page-8k8-com-login-11__feature-icon,
      .page-8k8-com-login-11__provider-logo img,
      .page-8k8-com-login-11__payment-method img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-11__provider-logo,
      .page-8k8-com-login-11__payment-method {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-login-11__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-login-11__section-title {
        font-size: 1.5em;
      }
      .page-8k8-com-login-11__button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  