
    /* Reset và cơ bản */
    .page-dagathomo {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding: 0;
      margin: 0;
    }

    /* Các phần chung */
    .page-dagathomo__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-dagathomo__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-dagathomo__heading-primary {
      color: #b80000; /* Màu đỏ đậm cho sự nổi bật */
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-dagathomo__heading-secondary {
      color: #8c0000; /* Màu đỏ sẫm hơn */
      margin-top: 30px;
      margin-bottom: 15px;
      font-size: 1.8em;
      font-weight: 600;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    .page-dagathomo__heading-tertiary {
      color: #5c0000; /* Màu đỏ nhẹ */
      margin-top: 25px;
      margin-bottom: 10px;
      font-size: 1.4em;
      font-weight: 500;
    }

    .page-dagathomo__paragraph {
      margin-bottom: 15px;
      font-size: 1.05em;
      color: #555;
    }

    .page-dagathomo__list {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 20px;
      padding: 0;
    }

    .page-dagathomo__list-item {
      margin-bottom: 10px;
      font-size: 1.05em;
      color: #555;
      box-sizing: border-box; /* Required for list items */
    }

    .page-dagathomo__button {
      display: inline-block;
      background-color: #e44d26; /* Màu cam nổi bật */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-dagathomo__button:hover {
      background-color: #ff6a00;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-dagathomo__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Chiều cao cố định cho banner */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      padding-top: 10px; /* Account for fixed header */
      box-sizing: border-box;
    }

    .page-dagathomo__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Làm tối ảnh nền để chữ nổi bật */
    }

    .page-dagathomo__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-dagathomo__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-dagathomo__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 25px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Login Button */
    .page-dagathomo__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff0000; /* Màu đỏ nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px; /* Hình tròn hoặc bầu dục */
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-dagathomo__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
    }

    .page-dagathomo__floating-button:hover {
      background-color: #cc0000;
      animation: none;
    }

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

    /* Game Categories Section */
    .page-dagathomo__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .page-dagathomo__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-dagathomo__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-dagathomo__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-dagathomo__game-title {
      font-size: 1.3em;
      color: #b80000;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-dagathomo__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-dagathomo__faq-item {
      margin-bottom: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      background-color: #ffffff;
    }

    .page-dagathomo__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-dagathomo__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-dagathomo__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #b80000;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-dagathomo__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: #b80000;
    }

    .page-dagathomo__faq-item.active .page-dagathomo__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar */
    }

    .page-dagathomo__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #555;
      background-color: #fdfdfd;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-dagathomo__faq-item.active .page-dagathomo__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-dagathomo__container {
        padding: 15px;
      }

      .page-dagathomo__section {
        padding: 20px;
        margin-bottom: 20px;
      }

      .page-dagathomo__hero-section {
        height: 300px;
        padding-top: 10px; /* Keep padding for fixed header */
      }

      .page-dagathomo__hero-title {
        font-size: 2.2em;
      }

      .page-dagathomo__hero-subtitle {
        font-size: 1.2em;
      }

      .page-dagathomo__heading-primary {
        font-size: 2em;
      }

      .page-dagathomo__heading-secondary {
        font-size: 1.5em;
      }

      .page-dagathomo__heading-tertiary {
        font-size: 1.2em;
      }

      .page-dagathomo__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-dagathomo__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-dagathomo__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-dagathomo__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsive optimization */
      .page-dagathomo__hero-background,
      .page-dagathomo__game-image,
      .page-dagathomo__image-full-width { /* Generic image class for other content images */
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-dagathomo__image-container { /* Generic image container class */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-dagathomo__faq-answer {
        padding: 0 15px;
      }
      .page-dagathomo__faq-item.active .page-dagathomo__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-dagathomo__hero-title {
        font-size: 1.8em;
      }

      .page-dagathomo__hero-subtitle {
        font-size: 1em;
      }

      .page-dagathomo__heading-primary {
        font-size: 1.8em;
      }
    }

    /* Ensure good contrast for text on various backgrounds */
    .page-dagathomo__hero-content .page-dagathomo__hero-title,
    .page-dagathomo__hero-content .page-dagathomo__hero-subtitle {
      color: #ffffff; /* Text on dark background */
    }

    .page-dagathomo__section, .page-dagathomo__game-card, .page-dagathomo__faq-item {
      background-color: #ffffff; /* White background */
    }

    .page-dagathomo__heading-primary, .page-dagathomo__heading-secondary, .page-dagathomo__heading-tertiary,
    .page-dagathomo__paragraph, .page-dagathomo__list-item, .page-dagathomo__game-title, .page-dagathomo__game-description {
      color: #333; /* Dark text on white background */
    }
    /* Specific overrides for color for better contrast if needed */
    .page-dagathomo__heading-primary, .page-dagathomo__game-title, .page-dagathomo__faq-question h3, .page-dagathomo__faq-toggle {
        color: #b80000; /* Dark red on white background */
    }
    .page-dagathomo__heading-secondary {
        color: #8c0000; /* Slightly darker red on white background */
    }
    .page-dagathomo__faq-question {
        background-color: #f0f0f0; /* Light grey background */
        color: #333; /* Dark text on light grey */
    }
    .page-dagathomo__faq-answer {
        color: #555; /* Medium dark text on light background */
    }
  