
    /* Base styles for the page-dagac3 */
    .page-dagac3 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng, tương phản tốt với nền tối */
      background-color: #1a1a2e; /* Nền tối chủ đạo */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút cố định */
    }

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

    /* Section styling */
    .page-dagac3-section {
      background-color: #2a2a4a; /* Nền tối hơn một chút cho các phần */
      margin-bottom: 25px;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-dagac3-section h2 {
      color: #e0b000; /* Màu vàng kim cho tiêu đề */
      text-align: center;
      margin-bottom: 20px;
      font-size: 2em;
      border-bottom: 2px solid #e0b000;
      padding-bottom: 10px;
    }

    .page-dagac3-section h3 {
      color: #c0c0c0; /* Màu xám nhạt cho tiêu đề phụ */
      font-size: 1.5em;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-dagac3-section p {
      margin-bottom: 15px;
    }

    /* Hero Banner */
    .page-dagac3-hero {
      text-align: center;
      padding: 40px 15px;
      background-image: url('[GALLERY:banner:dagac3,thomo,hero_background]'); /* Sử dụng placeholder cho ảnh nền */
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      margin-bottom: 25px;
      position: relative;
      overflow: hidden;
    }

    .page-dagac3-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6); /* Lớp phủ tối để dễ đọc chữ */
        z-index: 1;
    }

    .page-dagac3-hero > * {
        position: relative;
        z-index: 2;
    }

    .page-dagac3-hero h1 {
      color: #fff;
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-dagac3-hero p {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 25px;
    }

    .page-dagac3-cta-button {
      display: inline-block;
      background-color: #e0b000; /* Nút màu vàng kim */
      color: #1a1a2e; /* Chữ tối trên nền vàng */
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-dagac3-cta-button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    /* Game/Product Grid */
    .page-dagac3-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-dagac3-game-card {
      background-color: #3a3a5a; /* Nền thẻ tối hơn một chút */
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .page-dagac3-game-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #e0b000;
    }

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

    .page-dagac3-game-card-content h3 {
      color: #e0b000;
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-dagac3-game-card-content p {
      color: #c0c0c0;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-dagac3-game-card-link {
        display: inline-block;
        background-color: #e0b000;
        color: #1a1a2e;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin-top: auto; /* Đẩy nút xuống dưới cùng */
    }

    .page-dagac3-game-card-link:hover {
      background-color: #ffc107;
    }

    /* List styling */
    .page-dagac3-list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-dagac3-list li {
      background-color: #3a3a5a;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-dagac3-list li::before {
      content: '⚡'; /* Icon cho các mục danh sách */
      margin-right: 10px;
      color: #e0b000;
      font-size: 1.2em;
    }

    /* Payment methods grid */
    .page-dagac3-payment-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
    }

    .page-dagac3-payment-item {
        background-color: #3a3a5a;
        padding: 10px 15px;
        border-radius: 8px;
        color: #e0e0e0;
        font-weight: bold;
        font-size: 0.9em;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    /* Floating login button */
    .page-dagac3-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e0b000;
      color: #1a1a2e;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: page-dagac3-pulse 2s infinite;
    }

    .page-dagac3-floating-button:hover {
      background-color: #ffc107;
      transform: translateY(-3px);
    }

    .page-dagac3-floating-button::before {
        content: '🎁'; /* Biểu tượng hộp quà */
        font-size: 1.3em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-dagac3-hero h1 {
        font-size: 2em;
      }
      .page-dagac3-hero p {
        font-size: 1em;
      }
      .page-dagac3-section h2 {
        font-size: 1.8em;
      }
      .page-dagac3-game-grid {
        grid-template-columns: 1fr; /* Một cột trên màn hình nhỏ */
      }
      .page-dagac3-floating-button {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  