
    /* CSS cho trang casino mcw */
    .page-casinomcw {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
    }

    .page-casinomcw a {
      color: #e94560; /* Màu đỏ hồng cho liên kết */
      text-decoration: none;
    }

    .page-casinomcw a:hover {
      text-decoration: underline;
    }

    /* Hero Section */
    .page-casinomcw .hero-section {
      position: relative;
      text-align: center;
      padding-top: 160px; /* An toàn cho thanh điều hướng nổi */
      padding-bottom: 40px;
      background-color: #0f3460;
      overflow: hidden;
    }

    .page-casinomcw .hero-section img.hero-banner {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-casinomcw .hero-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
    }

    .page-casinomcw .hero-content h1 {
      font-size: 2.2em;
      color: #ffffff;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-casinomcw .hero-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #cccccc;
    }

    /* Floating Login/Promo Button */
    .page-casinomcw .floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: pulse 2s infinite;
    }

    .page-casinomcw .floating-promo-button:hover {
      background-color: #ff6a80;
      transform: scale(1.05);
      text-decoration: none;
    }

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

    /* Sections General */
    .page-casinomcw section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #2e2e4a; /* Nền của các phần */
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-casinomcw section h2 {
      font-size: 1.8em;
      color: #ffffff;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-casinomcw section h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e94560;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Game Categories */
    .page-casinomcw .game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-casinomcw .game-category-card {
      background-color: #16213e;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

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

    .page-casinomcw .game-category-card img {
      max-width: 80px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 50%;
      border: 2px solid #e94560;
    }

    .page-casinomcw .game-category-card a {
      font-size: 1.1em;
      font-weight: bold;
      color: #ffffff;
      display: block;
      text-decoration: none;
    }

    .page-casinomcw .game-category-card a:hover {
      color: #e94560;
      text-decoration: underline;
    }

    /* Why Choose Section */
    .page-casinomcw .why-choose-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-casinomcw .why-choose-list li {
      background-color: #16213e;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      font-size: 1em;
      color: #cccccc;
    }

    .page-casinomcw .why-choose-list li::before {
      content: '✔';
      color: #e94560;
      margin-right: 10px;
      font-weight: bold;
      font-size: 1.2em;
    }

    /* Game Providers & Payment Methods */
    .page-casinomcw .provider-grid,
    .page-casinomcw .payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      justify-content: center;
      align-items: center;
    }

    .page-casinomcw .provider-item,
    .page-casinomcw .payment-item {
      text-align: center;
      background-color: #16213e;
      padding: 10px;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .page-casinomcw .provider-item:hover,
    .page-casinomcw .payment-item:hover {
      transform: translateY(-3px);
    }

    .page-casinomcw .provider-item img,
    .page-casinomcw .payment-item img {
      max-width: 90%;
      height: 50px; /* Consistent height for logos */
      object-fit: contain;
      margin: auto;
      display: block;
    }

    /* News/Promotions */
    .page-casinomcw .news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-casinomcw .news-card {
      background-color: #16213e;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-casinomcw .news-card:hover {
      transform: translateY(-5px);
    }

    .page-casinomcw .news-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-casinomcw .news-card-content {
      padding: 15px;
    }

    .page-casinomcw .news-card-content h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-casinomcw .news-card-content h3 a {
      color: #ffffff;
      font-weight: bold;
      display: block;
    }

    .page-casinomcw .news-card-content h3 a:hover {
      color: #e94560;
    }

    .page-casinomcw .news-card-content p {
      font-size: 0.9em;
      color: #b0b0b0;
      margin-bottom: 15px;
    }

    .page-casinomcw .read-more {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 8px 15px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-casinomcw .read-more:hover {
      background-color: #ff6a80;
      text-decoration: none;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-casinomcw .hero-content h1 {
        font-size: 3em;
      }

      .page-casinomcw .hero-content p {
        font-size: 1.2em;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      .page-casinomcw section {
        padding: 60px 30px;
      }

      .page-casinomcw section h2 {
        font-size: 2.5em;
      }

      .page-casinomcw .game-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      }

      .page-casinomcw .why-choose-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
      }

      .page-casinomcw .provider-grid,
      .page-casinomcw .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        max-width: 1000px;
        margin: 0 auto;
      }

      .page-casinomcw .news-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .page-casinomcw .hero-section {
        padding-top: 180px; /* Tăng an toàn cho màn hình lớn */
      }
      .page-casinomcw .game-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        max-width: 1200px;
        margin: 0 auto;
      }
    }
  