
    /* CSS Styles for link 789 page */
    :root {
      --page-link789-primary-color: #f7b32b; /* Gold/Yellow */
      --page-link789-secondary-color: #2c3e50; /* Dark Blue */
      --page-link789-background-dark: #1a1a1a; /* Very Dark Grey */
      --page-link789-text-light: #ffffff;
      --page-link789-text-accent: #ffd700; /* Brighter gold for hover */
      --page-link789-button-bg: #e74c3c; /* Red for action */
      --page-link789-button-text: #ffffff;
      --page-link789-border-color: #34495e;
      --page-link789-shadow-color: rgba(0, 0, 0, 0.5);
    }

    .page-link789 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-link789-background-dark);
      color: var(--page-link789-text-light);
      line-height: 1.6;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-link789 a {
      color: var(--page-link789-primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-link789 a:hover {
      color: var(--page-link789-text-accent);
      text-decoration: underline;
    }

    .page-link789 .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Banner Section */
    .page-link789 .banner-section {
      position: relative;
      width: 100%;
      height: 250px; /* Adjusted height for mobile first */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: var(--page-link789-secondary-color);
      margin-bottom: 20px;
    }

    .page-link789 .banner-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .page-link789 .banner-content {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, 0.6);
      padding: 15px 20px;
      border-radius: 8px;
      max-width: 90%;
    }

    .page-link789 .banner-content h1 {
      color: var(--page-link789-primary-color);
      font-size: 1.8em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px var(--page-link789-shadow-color);
      line-height: 1.3;
    }

    .page-link789 .banner-content p {
      font-size: 1em;
      color: var(--page-link789-text-light);
    }

    /* Floating Login Button */
    .page-link789 .floating-login-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-link789-button-bg);
      color: var(--page-link789-button-text);
      padding: 15px 25px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px var(--page-link789-shadow-color);
      transition: transform 0.3s ease, background-color 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-link789 .floating-login-btn:hover {
      transform: translateY(-3px);
      background-color: #c0392b; /* Darker red */
    }

    /* Section Styling */
    .page-link789 .section {
      background-color: var(--page-link789-secondary-color);
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px var(--page-link789-shadow-color);
    }

    .page-link789 .section-title {
      color: var(--page-link789-primary-color);
      font-size: 1.6em;
      text-align: center;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--page-link789-primary-color);
    }

    .page-link789 .section p {
      margin-bottom: 15px;
    }

    .page-link789 .section ul {
      list-style-type: none;
      padding-left: 0;
    }

    .page-link789 .section ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .page-link789 .section ul li::before {
      content: '✅';
      position: absolute;
      left: 0;
      color: var(--page-link789-primary-color);
    }

    /* Game Cards */
    .page-link789 .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Mobile-first: smaller cards */
      gap: 15px;
      margin-top: 20px;
    }

    .page-link789 .game-card {
      background-color: #34495e; /* Slightly lighter than secondary */
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px var(--page-link789-shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-link789 .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--page-link789-shadow-color);
    }

    .page-link789 .game-card img {
      width: 100%;
      height: 100px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-link789 .game-card h3 {
      font-size: 1.1em;
      color: var(--page-link789-text-light);
      margin: 10px 0;
      padding: 0 10px;
    }

    .page-link789 .game-card .play-button {
      display: block;
      background-color: var(--page-link789-button-bg);
      color: var(--page-link789-button-text);
      padding: 8px 0;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-link789 .game-card .play-button:hover {
      background-color: #c0392b;
    }

    /* Download Buttons */
    .page-link789 .download-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .page-link789 .download-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-link789-button-text);
      background-color: var(--page-link789-primary-color);
      transition: background-color 0.3s ease;
      text-align: center;
    }

    .page-link789 .download-buttons a:hover {
      background-color: var(--page-link789-text-accent);
    }

    .page-link789 .download-buttons a img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
      filter: invert(1); /* Make icons white */
    }

    /* FAQ Section */
    .page-link789 .faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-link789-border-color);
      border-radius: 8px;
      overflow: hidden;
    }

    .page-link789 .faq-question {
      background-color: #34495e;
      padding: 15px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-link789-text-light);
      transition: background-color 0.3s ease;
    }

    .page-link789 .faq-question:hover {
      background-color: #2c3e50;
    }

    .page-link789 .faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-link789 .faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-link789 .faq-answer {
      background-color: #2c3e50;
      padding: 0 15px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      color: var(--page-link789-text-light);
    }

    .page-link789 .faq-answer.active {
      max-height: 200px; /* Adjust as needed for content */
      padding: 15px;
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
      .page-link789 .banner-section {
        height: 350px;
      }

      .page-link789 .banner-content h1 {
        font-size: 2.5em;
      }

      .page-link789 .banner-content p {
        font-size: 1.1em;
      }

      .page-link789 .section-title {
        font-size: 2em;
      }

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

      .page-link789 .game-card img {
        height: 120px;
      }

      .page-link789 .download-buttons {
        flex-direction: row;
        justify-content: center;
      }

      .page-link789 .download-buttons a {
        width: 220px; /* Fixed width for desktop buttons */
      }
    }

    @media (min-width: 1024px) {
      .page-link789 .banner-section {
        height: 450px;
      }

      .page-link789 .banner-content h1 {
        font-size: 3em;
      }

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

      .page-link789 .game-card img {
        height: 150px;
      }
    }
  