
    /* Page specific styles for mcw casino */
    .page-mcwcasino {
      font-family: 'Arial', sans-serif;
      color: #ffffff; /* Màu chữ trắng cho độ tương phản tốt */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

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

    .page-mcwcasino .hero-banner {
      width: 100%;
      max-height: 400px; /* Giới hạn chiều cao banner */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
    }

    .page-mcwcasino .hero-banner img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .page-mcwcasino .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #ffffff;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      max-width: 90%;
    }

    .page-mcwcasino h1, .page-mcwcasino h2, .page-mcwcasino h3 {
      color: #ffcc00; /* Màu vàng kim cho tiêu đề */
      text-align: center;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-mcwcasino h1 {
      font-size: 2.5em;
      margin-top: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-mcwcasino h2 {
      font-size: 2em;
      margin-top: 30px;
      border-bottom: 2px solid #ffcc00;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-mcwcasino h3 {
      font-size: 1.5em;
      margin-top: 25px;
    }

    .page-mcwcasino p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-mcwcasino a {
      color: #00aaff; /* Màu xanh dương cho liên kết */
      text-decoration: none;
    }

    .page-mcwcasino a:hover {
      text-decoration: underline;
      color: #0077cc;
    }

    .page-mcwcasino .btn-primary {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 5px;
      text-transform: uppercase;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
      margin-top: 20px;
    }

    .page-mcwcasino .btn-primary:hover {
      background-color: #e6b800;
      color: #000000;
      text-decoration: none;
    }

    .page-mcwcasino .floating-login-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      text-transform: uppercase;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: pulse 2s infinite;
      text-align: center;
      width: auto;
      max-width: 90%; /* Cho khả năng phản hồi di động */
      white-space: nowrap; /* Ngăn chặn ngắt dòng chữ */
    }

    .page-mcwcasino .floating-login-btn:hover {
      background-color: #e6b800;
      text-decoration: none;
    }

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

    .page-mcwcasino .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-mcwcasino .game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 350px; /* Chiều rộng tối đa cho từng thẻ */
    }

    .page-mcwcasino .game-card:hover {
      transform: translateY(-5px);
    }

    .page-mcwcasino .game-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #3a3a3a;
    }

    .page-mcwcasino .game-card h3 {
      margin: 15px 0 10px;
      color: #ffcc00;
      font-size: 1.3em;
    }

    .page-mcwcasino .game-card p {
      padding: 0 15px 15px;
      color: #cccccc;
      font-size: 0.95em;
    }

    .page-mcwcasino .section-promo {
      background-color: #2a2a2a;
      padding: 40px 20px;
      margin-top: 40px;
      border-radius: 10px;
      text-align: center;
    }

    .page-mcwcasino .section-promo h2 {
      color: #ffcc00;
      border-bottom: none;
    }

    .page-mcwcasino .section-promo p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-mcwcasino .list-benefits {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
    }

    .page-mcwcasino .list-benefits li {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px;
      border-left: 5px solid #ffcc00;
      border-radius: 5px;
      display: flex;
      align-items: center;
    }

    .page-mcwcasino .list-benefits li::before {
      content: '✔';
      color: #ffcc00;
      margin-right: 10px;
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-mcwcasino .how-to-guide img {
      width: 100%;
      max-width: 600px;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-mcwcasino .faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      padding: 15px 20px;
      border-radius: 8px;
    }

    .page-mcwcasino .faq-item h3 {
      text-align: left;
      margin: 0;
      font-size: 1.2em;
    }

    .page-mcwcasino .faq-item h3 a {
      color: #ffcc00;
      display: block;
      cursor: pointer;
    }

    .page-mcwcasino .faq-item h3 a:hover {
      text-decoration: none;
      color: #e6b800;
    }

    .page-mcwcasino .faq-item p {
      margin-top: 10px;
      padding-left: 10px;
      border-left: 3px solid #ffcc00;
      display: none; /* Ẩn câu trả lời mặc định */
      color: #cccccc;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-mcwcasino h1 {
        font-size: 2em;
      }

      .page-mcwcasino h2 {
        font-size: 1.7em;
      }

      .page-mcwcasino h3 {
        font-size: 1.3em;
      }

      .page-mcwcasino .floating-login-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-mcwcasino .game-grid {
        grid-template-columns: 1fr; /* Một cột trên màn hình nhỏ */
      }

      .page-mcwcasino .game-card {
        max-width: 90%;
        margin: 0 auto;
      }
    }
  