
    /* Page specific styles for gacam67top */
    .page-gacam67top {
      background-color: #000000; /* Black background */
      color: #ffffff; /* White text for general content */
      font-family: Arial, sans-serif;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed footer/floating button */
    }

    /* Hero Section */
    .page-gacam67top__hero-section {
      padding-top: 160px; /* Safe zone for fixed header as per 140-180px requirement */
      text-align: center;
      padding-bottom: 40px;
      background-color: #1a1a1a;
      position: relative;
      overflow: hidden;
    }

    .page-gacam67top__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-gacam67top__hero-content {
      padding: 20px;
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-gacam67top__hero-title {
      color: #ffd700; /* Yellow for titles */
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-gacam67top__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-gacam67top__cta-button {
      display: inline-block;
      background-color: #ffd700; /* Yellow button */
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

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

    /* Floating Login Button */
    .page-gacam67top__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #ff4500; /* Orange-red for urgency */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      animation: page-gacam67top__pulse 1.5s infinite;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-gacam67top__floating-button:hover {
      background-color: #e03e00;
      animation: none;
    }

    @keyframes page-gacam67top__pulse {
      0% {
        transform: translateX(-50%) scale(1);
      }
      50% {
        transform: translateX(-50%) scale(1.05);
      }
      100% {
        transform: translateX(-50%) scale(1);
      }
    }

    /* General Section Styling */
    .page-gacam67top__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-gacam67top__section-title {
      color: #ffd700;
      font-size: 2em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-gacam67top__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffd700;
      border-radius: 2px;
    }

    /* Intro Section */
    .page-gacam67top__intro-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .page-gacam67top__intro-text {
      font-size: 1.1em;
      max-width: 800px;
      color: #e0e0e0;
      text-align: left;
    }

    .page-gacam67top__intro-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* Game Categories */
    .page-gacam67top__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-gacam67top__game-item {
      background-color: #1a1a1a;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

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

    .page-gacam67top__game-item-image {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-gacam67top__game-item-title {
      color: #ffd700;
      font-size: 1.1em;
      margin-bottom: 10px;
    }

    .page-gacam67top__game-item-link {
      display: block;
      background-color: #ffd700;
      color: #000000;
      padding: 8px 15px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-gacam67top__game-item-link:hover {
      background-color: #ffc107;
    }

    /* Promotions Section */
    .page-gacam67top__promotion-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: left;
      border: 1px solid #333;
    }

    .page-gacam67top__promotion-card-title {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-gacam67top__promotion-card-description {
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    .page-gacam67top__promotion-card-button {
      background-color: #ff4500;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-gacam67top__promotion-card-button:hover {
      background-color: #e03e00;
    }

    /* Why Choose Section */
    .page-gacam67top__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-gacam67top__feature-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      border: 1px solid #333;
    }

    .page-gacam67top__feature-icon {
      max-width: 80px;
      height: auto;
      margin-bottom: 15px;
    }

    .page-gacam67top__feature-title {
      color: #ffd700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-gacam67top__feature-description {
      color: #e0e0e0;
    }

    /* Guide Section */
    .page-gacam67top__guide-step {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      margin-bottom: 20px;
      text-align: left;
      border: 1px solid #333;
    }

    .page-gacam67top__guide-step-title {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-gacam67top__guide-step-text {
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    .page-gacam67top__guide-step-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 15px;
    }

    /* FAQ Section */
    .page-gacam67top__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-gacam67top__faq-item {
      background-color: #1a1a1a;
      border: 1px solid #333;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-gacam67top__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      color: #ffd700;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-gacam67top__faq-question h3 {
      margin: 0;
      color: #ffd700;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-gacam67top__faq-question:hover {
      background-color: #333333;
    }

    .page-gacam67top__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: #ffffff;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-gacam67top__faq-item.active .page-gacam67top__faq-toggle {
      transform: rotate(45deg); /* Change + to X or rotate for minus */
      content: '−'; /* Visually change to minus, though JS changes text */
    }

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

    .page-gacam67top__faq-item.active .page-gacam67top__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important;
      opacity: 1;
    }
    .page-gacam67top__faq-answer p {
        margin-bottom: 10px;
    }
    .page-gacam67top__faq-answer ul {
        list-style-type: disc;
        padding-left: 20px;
    }
    .page-gacam67top__faq-answer li {
        margin-bottom: 5px;
    }


    /* Final CTA Section */
    .page-gacam67top__final-cta {
      background-color: #222222;
      padding: 50px 20px;
      text-align: center;
      margin-top: 40px;
      border-top: 3px solid #ffd700;
    }

    .page-gacam67top__final-cta-title {
      color: #ffd700;
      font-size: 2em;
      margin-bottom: 20px;
    }

    .page-gacam67top__final-cta-description {
      color: #e0e0e0;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-gacam67top__intro-content {
        flex-direction: row;
        text-align: left;
      }
      .page-gacam67top__intro-text {
        padding-right: 30px;
      }
      .page-gacam67top__intro-image {
        max-width: 50%;
      }
      .page-gacam67top__hero-title {
        font-size: 3.5em;
      }
      .page-gacam67top__floating-button {
        padding: 18px 35px;
        font-size: 1.2em;
        bottom: 30px;
      }
      .page-gacam67top__game-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .page-gacam67top__feature-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .page-gacam67top__hero-section {
        padding-top: 160px; /* Ensure safe zone on mobile too */
      }
      .page-gacam67top__hero-title {
        font-size: 2em;
      }
      .page-gacam67top__hero-description {
        font-size: 1em;
      }
      .page-gacam67top__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-gacam67top__floating-button {
        width: calc(100% - 40px);
        max-width: 400px;
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box;
      }
      .page-gacam67top__section {
        padding: 30px 15px;
      }
      .page-gacam67top__section-title {
        font-size: 1.8em;
      }
      .page-gacam67top__game-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .page-gacam67top__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-gacam67top__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-gacam67top__faq-question h3 {
        font-size: 1em;
      }
      .page-gacam67top__faq-answer {
        padding: 0 15px;
      }
      .page-gacam67top__faq-item.active .page-gacam67top__faq-answer {
        padding: 15px 15px !important;
      }
      /* Image responsiveness for mobile */
      .page-gacam67top__hero-image,
      .page-gacam67top__intro-image,
      .page-gacam67top__game-item-image,
      .page-gacam67top__feature-icon,
      .page-gacam67top__guide-step-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-gacam67top__hero-image,
      .page-gacam67top__intro-image,
      .page-gacam67top__guide-step-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  