
    :root {
      --page-com-bg-dark: #1a1a1a;
      --page-com-text-light: #ffffff;
      --page-com-accent-yellow: #fdd835; /* Yellow for highlights */
      --page-com-text-secondary: #cccccc;
      --page-com-border-color: #333333;
    }

    .page-com {
      background-color: var(--page-com-bg-dark);
      color: var(--page-com-text-light);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 80px; /* Space for fixed button */
    }

    .page-com__section {
      width: 100%;
      max-width: 1200px;
      padding: 20px;
      margin-bottom: 30px;
      box-sizing: border-box;
    }

    .page-com__section-title {
      color: var(--page-com-accent-yellow);
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-com__hero-section {
      padding-top: 10px; /* Desktop safe area for fixed header */
      text-align: center;
      background-color: #000;
      margin-bottom: 0;
    }

    .page-com__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-com__hero-image img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-com__hero-content {
      padding: 20px;
    }

    .page-com__hero-title {
      font-size: 3em;
      color: var(--page-com-accent-yellow);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-com__hero-description {
      font-size: 1.2em;
      color: var(--page-com-text-secondary);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-com__cta-button {
      display: inline-block;
      background-color: var(--page-com-accent-yellow);
      color: var(--page-com-bg-dark);
      padding: 15px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-com__intro-content {
      background-color: #222;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: justify;
    }

    .page-com__intro-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-com-text-light);
    }

    .page-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-com__game-card {
      background-color: #222;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid var(--page-com-border-color);
    }

    .page-com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-com__game-image-wrapper {
      width: 100%;
      height: 180px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-com__game-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .page-com__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .page-com__game-title {
      font-size: 1.4em;
      color: var(--page-com-accent-yellow);
      margin-bottom: 10px;
    }

    .page-com__game-description {
      font-size: 0.95em;
      color: var(--page-com-text-secondary);
      margin-bottom: 15px;
    }

    .page-com__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      background-color: #222;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-com__provider-logo {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      padding: 10px;
      background-color: #000;
      border-radius: 8px;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-com-border-color);
      box-sizing: border-box;
    }

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

    .page-com__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-com__promotion-item {
      background-color: #222;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border-left: 5px solid var(--page-com-accent-yellow);
      transition: transform 0.3s ease;
    }

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

    .page-com__promotion-title {
      color: var(--page-com-accent-yellow);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-com__promotion-description {
      color: var(--page-com-text-secondary);
      font-size: 1em;
    }

    .page-com__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-com__guide-step {
      background-color: #222;
      padding: 25px;
      border-radius: 10px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid var(--page-com-border-color);
    }

    .page-com__step-number {
      background-color: var(--page-com-accent-yellow);
      color: var(--page-com-bg-dark);
      width: 40px;
      height: 40px;
      min-width: 40px;
      min-height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: bold;
    }

    .page-com__step-content h3 {
      color: var(--page-com-accent-yellow);
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-com__step-content p {
      color: var(--page-com-text-secondary);
      font-size: 1em;
    }

    .page-com__faq-container {
      margin-top: 30px;
      background-color: #222;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-com__faq-item {
      border-bottom: 1px solid var(--page-com-border-color);
      margin-bottom: 10px;
    }

    .page-com__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-com__faq-question:hover {
      background-color: #2c2c2c;
    }

    .page-com__faq-question h3 {
      color: var(--page-com-text-light);
      font-size: 1.2em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-com__faq-toggle {
      color: var(--page-com-accent-yellow);
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-com__faq-item.active .page-com__faq-toggle {
      transform: rotate(45deg);
    }

    .page-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: var(--page-com-text-secondary);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-com__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e53935; /* Red for urgency */
      color: var(--page-com-text-light);
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

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

    .page-com__floating-login-button span {
      font-size: 1.5em; /* Emoji size */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-com__hero-section {
        padding-top: 10px; /* Mobile safe area */
      }
      .page-com__section {
        padding: 15px;
      }
      .page-com__section-title {
        font-size: 2em;
      }
      .page-com__hero-title {
        font-size: 2.2em;
      }
      .page-com__hero-description {
        font-size: 1em;
      }
      .page-com__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-com__game-grid {
        grid-template-columns: 1fr;
      }
      .page-com__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        padding: 20px;
      }
      .page-com__promotion-list {
        grid-template-columns: 1fr;
      }
      .page-com__guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-com__step-content h3 {
        font-size: 1.2em;
      }
      .page-com__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-com__faq-answer {
        font-size: 0.95em;
      }
      .page-com__hero-image,
      .page-com__game-image-wrapper,
      .page-com__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-com__hero-image img,
      .page-com__game-image,
      .page-com__provider-logo img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
      }
    }
  