
    /* CSS Styles for cdk68 page */
    :root {
      --cdk68-primary-color: #FFD700; /* Gold */
      --cdk68-secondary-color: #000000; /* Black */
      --cdk68-accent-color: #FF4500; /* OrangeRed */
      --cdk68-text-color: #FFFFFF;
      --cdk68-dark-bg: #1a1a1a;
      --cdk68-light-bg: #2a2a2a;
      --cdk68-border-color: #444;
      --cdk68-border-radius: 8px;
      --cdk68-padding-section: 40px 20px;
      --cdk68-mobile-padding-section: 20px 15px;
    }

    body {
        font-family: 'Arial', sans-serif;
        background-color: var(--cdk68-dark-bg);
        color: var(--cdk68-text-color);
        line-height: 1.6;
    }

    .page-cdk68 {
      max-width: 1200px;
      margin: 0 auto;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-cdk68__hero-section {
      background: linear-gradient(135deg, var(--cdk68-dark-bg), var(--cdk68-light-bg));
      padding: 60px 20px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid var(--cdk68-border-color);
    }

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

    .page-cdk68__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-cdk68__hero-title {
      font-size: 3.2em;
      color: var(--cdk68-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-cdk68__hero-description {
      font-size: 1.3em;
      color: var(--cdk68-text-color);
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-cdk68__hero-button {
      display: inline-block;
      background-color: var(--cdk68-accent-color);
      color: var(--cdk68-text-color);
      padding: 15px 30px;
      border-radius: var(--cdk68-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-cdk68__hero-button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-cdk68__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-cdk68__register-button,
    .page-cdk68__login-button {
      background-color: var(--cdk68-primary-color);
      color: var(--cdk68-secondary-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-cdk68__register-button:hover,
    .page-cdk68__login-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-cdk68__games-section,
    .page-cdk68__promotions-section,
    .page-cdk68__about-section,
    .page-cdk68__faq-section,
    .page-cdk68__cta-section {
      padding: var(--cdk68-padding-section);
      text-align: center;
    }

    .page-cdk68__section-title {
      font-size: 2.5em;
      color: var(--cdk68-primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-cdk68__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--cdk68-accent-color);
      border-radius: 2px;
    }

    .page-cdk68__game-grid,
    .page-cdk68__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      list-style: none; /* For ul/ol list items */
      padding: 0;
      margin: 0;
    }

    .page-cdk68__game-card,
    .page-cdk68__promotion-card {
      background-color: var(--cdk68-light-bg);
      border-radius: var(--cdk68-border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-cdk68__game-card:hover,
    .page-cdk68__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-cdk68__game-image,
    .page-cdk68__promotion-image {
      width: 100%;
      height: 200px; /* Minimum 200px height */
      object-fit: cover;
      border-bottom: 1px solid var(--cdk68-border-color);
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      display: block; /* Remove extra space below image */
    }

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

    .page-cdk68__game-name,
    .page-cdk68__promotion-title {
      font-size: 1.5em;
      color: var(--cdk68-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-cdk68__game-description,
    .page-cdk68__promotion-description {
      font-size: 1em;
      color: var(--cdk68-text-color);
      margin-bottom: 15px;
      opacity: 0.8;
      flex-grow: 1;
    }

    .page-cdk68__card-button {
      display: inline-block;
      background-color: var(--cdk68-accent-color);
      color: var(--cdk68-text-color);
      padding: 10px 20px;
      border-radius: var(--cdk68-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: fit-content;
    }

    .page-cdk68__card-button:hover {
      background-color: #e63900;
    }

    .page-cdk68__about-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-cdk68__about-text {
      font-size: 1.1em;
      color: var(--cdk68-text-color);
      margin-bottom: 15px;
      opacity: 0.9;
    }

    .page-cdk68__about-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
      list-style: none; /* For ul/ol list items */
      padding: 0;
      margin-left: 0;
      margin-right: 0;
    }

    .page-cdk68__about-feature {
      background-color: var(--cdk68-light-bg);
      padding: 25px;
      border-radius: var(--cdk68-border-radius);
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-cdk68__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-cdk68__feature-title {
      font-size: 1.3em;
      color: var(--cdk68-primary-color);
      margin-bottom: 10px;
    }

    .page-cdk68__feature-description {
      font-size: 0.95em;
      color: var(--cdk68-text-color);
      opacity: 0.8;
    }

    .page-cdk68__faq-section {
      background-color: var(--cdk68-light-bg);
      border-top: 2px solid var(--cdk68-border-color);
    }

    .page-cdk68__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-cdk68__faq-item {
      border: 1px solid var(--cdk68-border-color);
      border-radius: var(--cdk68-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #222;
      box-sizing: border-box; /* Crucial for list items */
    }

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

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

    .page-cdk68__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: inherit; /* Ensure h3 color matches parent */
    }

    .page-cdk68__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-cdk68__faq-item.active .page-cdk68__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become X or similar */
    }

    .page-cdk68__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--cdk68-text-color);
      background-color: #2a2a2a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

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

    .page-cdk68__cta-section {
      background-color: var(--cdk68-accent-color);
      color: var(--cdk68-text-color);
      padding: 50px 20px;
      text-align: center;
      border-top: 2px solid var(--cdk68-border-color);
    }

    .page-cdk68__cta-text {
      font-size: 2em;
      margin-bottom: 25px;
      line-height: 1.3;
    }

    .page-cdk68__cta-button {
      background-color: var(--cdk68-primary-color);
      color: var(--cdk68-secondary-color);
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-cdk68__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Responsive Design for Mobile */
    @media (max-width: 768px) {
      .page-cdk68 {
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
      }
      .page-cdk68__hero-title {
        font-size: 2.2em;
      }

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

      .page-cdk68__hero-section,
      .page-cdk68__games-section,
      .page-cdk68__promotions-section,
      .page-cdk68__about-section,
      .page-cdk68__faq-section,
      .page-cdk68__cta-section {
        padding: var(--cdk68-mobile-padding-section);
      }

      .page-cdk68__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-cdk68__game-grid,
      .page-cdk68__promotion-grid,
      .page-cdk68__about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      
      .page-cdk68__game-card,
      .page-cdk68__promotion-card,
      .page-cdk68__about-feature,
      .page-cdk68__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-cdk68__game-image,
      .page-cdk68__promotion-image,
      .page-cdk68__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-cdk68__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-cdk68__register-button,
      .page-cdk68__login-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-cdk68__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-cdk68__faq-answer {
        padding: 15px !important;
      }

      .page-cdk68__cta-text {
        font-size: 1.5em;
      }

      .page-cdk68__cta-button {
        font-size: 1em;
        padding: 12px 30px;
      }
    }
  