
    /* CSS cho trang xóc đĩa online */
    .page-diceonline {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Đủ chỗ cho nút nổi */
    }

    .page-diceonline .page-diceonline-hero {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:banner:xocdia,casino,mobile_banner]') no-repeat center center/cover;
      padding: 60px 20px;
      text-align: center;
      color: #fff;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-bottom: 5px solid #e94560;
    }

    .page-diceonline .page-diceonline-hero h1 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Màu vàng nổi bật */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .page-diceonline .page-diceonline-hero h1 {
        font-size: 2em;
      }
    }

    .page-diceonline .page-diceonline-hero p {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-diceonline .page-diceonline-cta {
      display: inline-block;
      background-color: #e94560;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-diceonline .page-diceonline-cta:hover {
      background-color: #ff6680;
      transform: translateY(-3px);
    }

    .page-diceonline .page-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #24243e;
      border-radius: 10px;
      margin-top: 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

    .page-diceonline .page-section:nth-of-type(odd) {
      background-color: #1a1a2e;
    }

    .page-diceonline .page-section h2 {
      color: #ffcc00;
      font-size: 2em;
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid #e94560;
      padding-bottom: 10px;
    }
    @media (max-width: 768px) {
      .page-diceonline .page-section h2 {
        font-size: 1.8em;
      }
    }

    .page-diceonline .page-section h3 {
      color: #e94560;
      font-size: 1.5em;
      margin-top: 30px;
      margin-bottom: 15px;
      border-left: 5px solid #ffcc00;
      padding-left: 10px;
    }
    @media (max-width: 768px) {
      .page-diceonline .page-section h3 {
        font-size: 1.3em;
      }
    }

    .page-diceonline .page-section p {
      margin-bottom: 15px;
      color: #d0d0d0;
    }

    .page-diceonline .page-section ul {
      list-style: disc;
      margin-left: 25px;
      margin-bottom: 15px;
      color: #d0d0d0;
    }

    .page-diceonline .page-section ol {
      list-style: decimal;
      margin-left: 25px;
      margin-bottom: 15px;
      color: #d0d0d0;
    }

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

    .page-diceonline .page-game-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-diceonline .page-game-card {
      background-color: #1a1a2e;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-diceonline .page-game-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #e94560;
    }

    .page-diceonline .page-game-card h4 {
      font-size: 1.2em;
      color: #ffcc00;
      padding: 15px 10px;
      margin: 0;
    }

    .page-diceonline .page-game-card a {
      color: #ffcc00;
      text-decoration: none;
      font-weight: bold;
    }

    .page-diceonline .page-game-card a:hover {
      text-decoration: underline;
    }

    .page-diceonline .page-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e94560;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: pulse 2s infinite;
    }

    .page-diceonline .page-floating-button:hover {
      background-color: #ff6680;
      transform: scale(1.05);
    }

    .page-diceonline .page-floating-button svg {
      fill: #fff;
      width: 24px;
      height: 24px;
    }

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

    @media (max-width: 600px) {
      .page-diceonline .page-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-diceonline .page-floating-button svg {
        width: 20px;
        height: 20px;
      }
    }

    .page-diceonline .page-faq-item {
      background-color: #1a1a2e;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-diceonline .page-faq-question {
      background-color: #2e2e4e;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: #ffcc00;
      font-size: 1.1em;
      border-bottom: 1px solid #3a3a5e;
      transition: background-color 0.3s ease;
    }

    .page-diceonline .page-faq-question:hover {
      background-color: #3a3a5e;
    }

    .page-diceonline .page-faq-question.active {
      background-color: #e94560;
      color: #fff;
    }

    .page-diceonline .page-faq-answer {
      padding: 15px 20px;
      background-color: #1a1a2e;
      color: #d0d0d0;
      display: none;
      border-top: 1px solid #3a3a5e;
    }

    .page-diceonline .page-faq-answer p {
      margin: 0;
    }

    .page-diceonline .page-faq-icon {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-diceonline .page-faq-question.active .page-faq-icon {
      transform: rotate(180deg);
    }
  