
    /* CSS Styles for page-60win-apk */
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #333;
      --accent-color: #f7931e;
      --background-dark: #1a1a1a;
      --background-light: #f4f4f4;
      --text-light: #ffffff;
      --text-dark: #333333;
      --border-color: #444;
      --button-bg: #e44d26;
      --button-text: #ffffff;
      --hover-bg: #f7931e;
    }

    .page-60win-apk {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-60win-apk__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      background: linear-gradient(135deg, var(--background-dark), #333);
    }

    .page-60win-apk__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-60win-apk__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      color: var(--text-light);
    }

    .page-60win-apk__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-60win-apk__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-light);
    }

    .page-60win-apk__cta-button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 12px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-60win-apk__cta-button:hover {
      background-color: var(--hover-bg);
    }

    .page-60win-apk__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-60win-apk__section--alt {
      background-color: #222;
    }

    .page-60win-apk__heading {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-60win-apk__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }

    .page-60win-apk__text-content {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 20px;
      text-align: left;
    }

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

    .page-60win-apk__feature-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-60win-apk__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-60win-apk__feature-icon {
      width: 250px; /* Enforcing min-size 200x200 */
      height: auto;
      margin-bottom: 15px;
      max-width: 100%; /* Ensure responsiveness */
      border-radius: 8px;
    }

    .page-60win-apk__feature-title {
      font-size: 1.4em;
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    .page-60win-apk__feature-description {
      color: #bbb;
      font-size: 0.95em;
    }

    .page-60win-apk__download-steps {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }

    .page-60win-apk__step-item {
      background-color: #2a2a2a;
      padding: 20px 25px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-60win-apk__step-number {
      background-color: var(--primary-color);
      color: var(--text-light);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-60win-apk__step-content h3 {
      font-size: 1.3em;
      color: var(--accent-color);
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-60win-apk__step-content p {
      color: #bbb;
      margin-bottom: 0;
    }

    .page-60win-apk__game-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-60win-apk__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-60win-apk__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-60win-apk__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-60win-apk__game-title {
      font-size: 1.2em;
      color: var(--accent-color);
      margin: 0 15px 10px;
    }

    .page-60win-apk__game-description {
      color: #bbb;
      font-size: 0.9em;
      padding: 0 15px;
    }

    .page-60win-apk__faq-section {
      text-align: left;
    }

    .page-60win-apk__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

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

    .page-60win-apk__faq-question:hover {
      background-color: #444;
    }

    .page-60win-apk__faq-question h3 {
      margin: 0;
      color: var(--accent-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-60win-apk__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      transition: transform 0.3s ease;
    }

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

    .page-60win-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #bbb;
      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;
    }

    .page-60win-apk__faq-item.active .page-60win-apk__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important; /* Adjust padding for expanded state */
      opacity: 1;
    }

    .page-60win-apk__faq-answer p {
      margin-bottom: 0;
    }

    .page-60win-apk__promo-banner {
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      color: var(--text-light);
      padding: 30px 20px;
      text-align: center;
      margin-top: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

    .page-60win-apk__promo-title {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .page-60win-apk__promo-text {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-60win-apk__promo-button {
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 12px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-60win-apk__promo-button:hover {
      background-color: var(--text-light);
      color: var(--primary-color);
    }

    /* Floating Register/Login Buttons */
    .page-60win-apk__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-60win-apk__floating-button {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 10px 20px;
      border-radius: 50px;
      text-align: center;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      text-decoration: none; /* Ensure it looks like a button */
      border: none;
      cursor: pointer;
    }

    .page-60win-apk__floating-button--login {
      background-color: var(--accent-color);
    }

    .page-60win-apk__floating-button:hover {
      background-color: var(--hover-bg);
    }

    .page-60win-apk__floating-button--login:hover {
      background-color: #e0841a;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-60win-apk__hero-title {
        font-size: 2.2em;
      }

      .page-60win-apk__hero-subtitle {
        font-size: 1.1em;
      }

      .page-60win-apk__heading {
        font-size: 1.8em;
      }

      .page-60win-apk__section {
        padding: 30px 15px;
      }

      .page-60win-apk__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-60win-apk__step-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        box-sizing: border-box !important; /* Enforce box-sizing */
        width: 100% !important; /* Enforce full width */
        max-width: 100% !important; /* Enforce full width */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-60win-apk__step-number {
        margin-bottom: 10px;
      }

      .page-60win-apk__download-steps {
        padding: 0 !important; /* Remove padding from ul */
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-60win-apk__game-showcase {
        grid-template-columns: 1fr;
      }

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

      .page-60win-apk__faq-answer {
        padding: 0 15px;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
      }

      .page-60win-apk__faq-item.active .page-60win-apk__faq-answer {
        padding: 15px !important;
      }

      .page-60win-apk__promo-title {
        font-size: 1.5em;
      }

      .page-60win-apk__promo-text {
        font-size: 1em;
      }

      .page-60win-apk__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      /* Image responsive */
      .page-60win-apk img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-60win-apk__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-60win-apk__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-60win-apk__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-60win-apk__hero-title {
        font-size: 1.8em;
      }
      .page-60win-apk__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-60win-apk__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: space-around;
        bottom: 10px;
        right: 10px;
        left: 10px;
      }
      .page-60win-apk__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 8px 15px;
      }
    }
  