
    /* CSS cho trang sv368thomo */
    .page-sv368thomo {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #f0f0f0;
      line-height: 1.6;
      padding-bottom: 80px; /* Đủ chỗ cho nút nổi */
    }

    .page-sv368thomo-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-sv368thomo-section.page-sv368thomo-hero {
      background-color: #0d0d0d;
      padding: 0;
      margin-bottom: 0;
    }

    .page-sv368thomo-banner-container {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .page-sv368thomo-banner-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 300px; /* Giới hạn chiều cao banner trên di động */
    }

    .page-sv368thomo-hero-content {
      padding: 20px 15px;
    }

    .page-sv368thomo-h1,
    .page-sv368thomo-h2 {
      color: #e74c3c;
      margin-bottom: 15px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-sv368thomo-h1 {
      font-size: 1.8em;
      margin-top: 10px;
    }

    .page-sv368thomo-h2 {
      font-size: 1.5em;
      margin-top: 30px;
    }

    .page-sv368thomo-h3 {
      color: #f0f0f0;
      font-size: 1.2em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-sv368thomo-text {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-sv368thomo-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-sv368thomo-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #e74c3c;
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      animation: page-sv368thomo-pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .page-sv368thomo-floating-button:hover {
      background-color: #c0392b;
      animation: none;
    }

    @keyframes page-sv368thomo-pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    .page-sv368thomo-games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 15px;
      margin-top: 25px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-sv368thomo-game-item {
      background-color: #2c3e50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
    }

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

    .page-sv368thomo-game-item img {
      width: 100%;
      height: 100px; /* Chiều cao cố định cho hình ảnh game */
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .page-sv368thomo-game-item a {
      color: #ffffff;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      display: block;
      width: 100%;
      text-align: center;
    }

    .page-sv368thomo-game-item a:hover {
      color: #e74c3c;
    }

    .page-sv368thomo-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-sv368thomo-list li {
      background-color: #2c3e50;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      font-size: 0.95em;
      color: #ccc;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-sv368thomo-list li::before {
      content: '✓';
      color: #2ecc71;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-sv368thomo-payment-providers,
    .page-sv368thomo-game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-sv368thomo-provider-logo {
      width: 80px;
      height: 50px;
      object-fit: contain;
      background-color: #34495e;
      padding: 5px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-sv368thomo-faq-item {
      background-color: #2c3e50;
      border-radius: 8px;
      margin-bottom: 10px;
      text-align: left;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-sv368thomo-faq-question {
      padding: 15px;
      font-weight: bold;
      color: #e74c3c;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1em;
    }

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

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

    .page-sv368thomo-faq-answer {
      padding: 0 15px 15px;
      color: #ccc;
      font-size: 0.9em;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    }

    .page-sv368thomo-faq-answer.open {
      max-height: 200px; /* Adjust as needed */
      padding-top: 5px;
    }

    /* Desktop adjustments */
    @media (min-width: 768px) {
      .page-sv368thomo-h1 {
        font-size: 2.5em;
      }
      .page-sv368thomo-h2 {
        font-size: 2em;
      }
      .page-sv368thomo-text {
        font-size: 1em;
      }
      .page-sv368thomo-banner-image {
        max-height: 400px;
      }
      .page-sv368thomo-games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .page-sv368thomo-game-item img {
        height: 120px;
      }
      .page-sv368thomo-list li,
      .page-sv368thomo-faq-question,
      .page-sv368thomo-faq-answer {
        font-size: 1em;
      }
      .page-sv368thomo-floating-button {
        padding: 15px 30px;
        font-size: 1.2em;
        bottom: 30px;
        right: 30px;
        left: auto;
        transform: none;
      }
    }
  