
    :root {
      --page-top10game-primary-color: #e44d26; /* Cam đỏ */
      --page-top10game-secondary-color: #ffb74d; /* Cam nhạt */
      --page-top10game-accent-color: #4CAF50; /* Xanh lá */
      --page-top10game-dark-background: #212121; /* Nền tối */
      --page-top10game-light-text: #ffffff; /* Chữ sáng */
      --page-top10game-dark-text: #333333; /* Chữ tối */
      --page-top10game-card-background: #333333; /* Nền thẻ */
      --page-top10game-button-bg: #e44d26;
      --page-top10game-button-text: #ffffff;
      --page-top10game-hover-bg: #f57c00;
    }

    .page-top10game {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-top10game-light-text);
      background-color: var(--page-top10game-dark-background);
      padding-bottom: 80px; /* Space for floating button */
    }

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

    /* Banner Section */
    .page-top10game-hero {
      text-align: center;
      padding: 0;
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .page-top10game-hero-image {
      width: 100%;
      height: auto;
      max-height: 300px;
      object-fit: cover;
      display: block;
    }

    .page-top10game-hero-content {
      position: relative;
      padding: 20px 15px;
      background: linear-gradient(to bottom, rgba(33, 33, 33, 0.7), var(--page-top10game-dark-background));
      margin-top: -5px;
    }

    .page-top10game-hero h1 {
      color: var(--page-top10game-secondary-color);
      font-size: 2.2em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      line-height: 1.2;
    }

    .page-top10game-hero p {
      color: var(--page-top10game-light-text);
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-top10game-floating-btn-wrapper {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.85);
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-top10game-floating-btn {
      display: inline-block;
      background-color: var(--page-top10game-button-bg);
      color: var(--page-top10game-button-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      animation: pulse 2s infinite;
    }

    .page-top10game-floating-btn:hover {
      background-color: var(--page-top10game-hover-bg);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Section Styling */
    .page-top10game-section {
      padding: 20px 0;
      margin-bottom: 20px;
      background-color: var(--page-top10game-dark-background);
      border-radius: 8px;
    }

    .page-top10game-section h2 {
      color: var(--page-top10game-primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.8em;
      position: relative;
    }
    .page-top10game-section h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--page-top10game-secondary-color);
      margin: 10px auto 0;
      border-radius: 5px;
    }

    .page-top10game-section h3 {
      color: var(--page-top10game-secondary-color);
      font-size: 1.4em;
      margin-top: 20px;
      margin-bottom: 15px;
    }

    .page-top10game-section p {
      margin-bottom: 15px;
      color: var(--page-top10game-light-text);
    }

    .page-top10game-section ul {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 15px;
      color: var(--page-top10game-light-text);
    }

    .page-top10game-section ol {
      list-style-type: decimal;
      padding-left: 25px;
      margin-bottom: 15px;
      color: var(--page-top10game-light-text);
    }

    .page-top10game-section li {
      margin-bottom: 8px;
    }

    .page-top10game-section strong {
      color: var(--page-top10game-secondary-color);
    }

    /* Game Cards / Product Display */
    .page-top10game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-top10game-card {
      background-color: var(--page-top10game-card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .page-top10game-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-top10game-card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-top10game-card-content h3 {
      color: var(--page-top10game-secondary-color);
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .page-top10game-card-content h3 a {
      color: var(--page-top10game-secondary-color); /* Ensure link in H3 has good contrast */
      text-decoration: none;
    }
    .page-top10game-card-content h3 a:hover {
      text-decoration: underline;
    }

    .page-top10game-card-content p {
      font-size: 0.95em;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 15px;
    }

    .page-top10game-card-link {
      display: inline-block;
      background-color: var(--page-top10game-accent-color);
      color: var(--page-top10game-light-text);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto;
    }

    .page-top10game-card-link:hover {
      background-color: #388E3C;
    }

    /* FAQ Section */
    .page-top10game-faq-item {
      background-color: var(--page-top10game-card-background);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-top10game-faq-question {
      padding: 15px 20px;
      background-color: #3d3d3d;
      color: var(--page-top10game-secondary-color);
      cursor: pointer;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .page-top10game-faq-question:hover {
      background-color: #4a4a4a;
    }

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

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

    .page-top10game-faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      color: var(--page-top10game-light-text);
      background-color: var(--page-top10game-card-background);
    }

    .page-top10game-faq-answer.active {
      max-height: 200px; /* Adjust based on content */
      padding: 15px 20px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-top10game-hero h1 {
        font-size: 1.8em;
      }
      .page-top10game-hero p {
        font-size: 1em;
      }
      .page-top10game-section h2 {
        font-size: 1.6em;
      }
      .page-top10game-grid {
        grid-template-columns: 1fr;
      }
      .page-top10game-floating-btn {
        width: calc(100% - 30px);
        margin: 0 15px;
      }
    }

    @media (max-width: 480px) {
      .page-top10game-hero-content {
        padding: 15px;
      }
      .page-top10game-hero h1 {
        font-size: 1.6em;
      }
      .page-top10game-hero p {
        font-size: 0.9em;
      }
      .page-top10game-section h2 {
        font-size: 1.4em;
      }
      .page-top10game-card-content h3 {
        font-size: 1.1em;
      }
    }
  