
    :root {
      --page-ok1-primary-color: #FFD700; /* Yellow */
      --page-ok1-secondary-color: #FFFFFF; /* White */
      --page-ok1-background-color: #000000; /* Black */
      --page-ok1-dark-gray: #1a1a1a;
      --page-ok1-light-gray: #333333;
    }

    .page-ok1 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-ok1-background-color);
      color: var(--page-ok1-secondary-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-ok1__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-ok1__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      padding-top: 150px; /* Safety zone for mobile fixed header */
      padding-bottom: 40px;
      background-color: var(--page-ok1-dark-gray);
    }

    .page-ok1__hero-image {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
      border-radius: 8px;
    }
    
    .page-ok1__hero-content {
      padding: 0 20px;
    }

    .page-ok1__hero-title {
      color: var(--page-ok1-primary-color);
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ok1__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: var(--page-ok1-secondary-color);
    }

    .page-ok1__cta-button {
      display: inline-block;
      background-color: var(--page-ok1-primary-color);
      color: var(--page-ok1-background-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.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ok1__cta-button:hover {
      background-color: #FFEA00;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-ok1__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FF4500; /* Orange-red for urgency */
      color: var(--page-ok1-secondary-color);
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-ok1__floating-login-button:hover {
      background-color: #FF6347;
      transform: scale(1.05);
    }

    /* Section Styling */
    .page-ok1__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-ok1__section-title {
      color: var(--page-ok1-primary-color);
      font-size: 2em;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .page-ok1__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-ok1-primary-color);
    }

    .page-ok1__text-content {
      font-size: 1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    /* Game Categories */
    .page-ok1__game-categories {
      background-color: var(--page-ok1-dark-gray);
      padding-bottom: 60px;
    }

    .page-ok1__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }

    .page-ok1__game-item {
      background-color: var(--page-ok1-light-gray);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px; /* Ensure consistent height */
    }

    .page-ok1__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-ok1__game-image {
      width: 100%;
      height: 120px;
      object-fit: contain; /* Use contain for game logos/icons */
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-ok1__game-title {
      color: var(--page-ok1-primary-color);
      font-size: 1em;
      font-weight: bold;
      margin-top: auto; /* Push title to bottom */
    }

    /* Why Choose Section */
    .page-ok1__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
      text-align: left;
    }

    .page-ok1__feature-item {
      background-color: var(--page-ok1-light-gray);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-ok1__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-ok1__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ok1__feature-title {
      color: var(--page-ok1-primary-color);
      font-size: 1.3em;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-ok1__feature-description {
      color: var(--page-ok1-secondary-color);
      font-size: 0.95em;
      text-align: center;
    }

    /* Game Providers Section */
    .page-ok1__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }

    .page-ok1__provider-logo {
      width: 100%;
      height: 80px;
      object-fit: contain;
      background-color: var(--page-ok1-light-gray);
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-ok1__provider-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-ok1__faq-section {
      background-color: var(--page-ok1-dark-gray);
      padding-bottom: 60px;
    }

    .page-ok1__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-ok1__faq-item {
      background-color: var(--page-ok1-light-gray);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-ok1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      color: var(--page-ok1-primary-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-ok1__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ok1__faq-question:hover {
      background-color: #444;
    }

    .page-ok1__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-ok1__faq-item.active .page-ok1__faq-toggle {
      transform: rotate(45deg); /* Change + to X or rotate */
    }

    .page-ok1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: var(--page-ok1-secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 0.95em;
      text-align: left;
    }

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

    /* Social Media Section */
    .page-ok1__social-section {
      padding-top: 40px;
      padding-bottom: 40px;
      background-color: var(--page-ok1-background-color);
    }

    .page-ok1__social-icons {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    .page-ok1__social-link {
      display: inline-block;
      width: 50px;
      height: 50px;
      background-color: var(--page-ok1-light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-ok1__social-link:hover {
      background-color: var(--page-ok1-primary-color);
      transform: translateY(-3px);
    }

    .page-ok1__social-icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-ok1__hero-section {
        padding-top: 80px; /* Adjust for desktop fixed header */
      }

      .page-ok1__hero-title {
        font-size: 3.5em;
      }

      .page-ok1__hero-description {
        font-size: 1.2em;
      }

      .page-ok1__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }

      .page-ok1__feature-title {
        font-size: 1.5em;
      }

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

      .page-ok1__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }
    }

    /* Force responsive image styles for mobile */
    @media (max-width: 768px) {
      img {
        max-width: 100% !important;
        height: auto !important;
      }
      div, section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-ok1__hero-title {
        font-size: 2em;
      }
      .page-ok1__section-title {
        font-size: 1.8em;
      }
      .page-ok1__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-ok1__faq-answer {
        padding: 15px 20px !important;
        font-size: 0.9em;
      }
      .page-ok1__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  