
    /* Base styles for the page */
    .page-daga {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for fixed footer/button */
    }

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

    .page-daga__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-daga__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-daga__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #e74c3c;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-daga__section--dark .page-daga__section-title {
      color: #f39c12;
    }

    .page-daga__text-block {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-daga__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:banner:daga,thomo,live,hero]') center center / cover no-repeat;
      color: #fff;
      padding: 10px 15px 80px 15px; /* Added padding-top for fixed header */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      text-align: center;
      position: relative;
    }

    .page-daga__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #f39c12;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-daga__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-daga__cta-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-daga__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-daga__promo-float-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #28a745; /* Green for "register/login" */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      line-height: 1.2;
      text-decoration: none; /* Make it look like a button, but it's an a tag for external link */
      border: none;
    }

    .page-daga__promo-float-button:hover {
      background-color: #218838;
      transform: scale(1.05);
    }
    
    .page-daga__promo-float-button a {
        color: inherit;
        text-decoration: none;
    }

    .page-daga__promo-float-button span {
        display: block;
        font-size: 0.8em;
        font-weight: normal;
    }

    /* Game List */
    .page-daga__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 30px 0;
    }

    .page-daga__game-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

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

    .page-daga__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for image consistency */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #eee;
    }

    .page-daga__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers the area without distortion */
      width: 100%;
      height: 100%;
    }

    .page-daga__game-content {
      padding: 20px;
    }

    .page-daga__game-title {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #e74c3c;
      font-weight: bold;
    }

    .page-daga__game-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    /* Why choose section */
    .page-daga__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 30px 0;
    }

    .page-daga__why-choose-item {
      background-color: #34495e;
      color: #ecf0f1;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease;
      height: 100%; /* Ensure equal height */
    }

    .page-daga__why-choose-item:hover {
      transform: translateY(-5px);
    }

    .page-daga__why-choose-title {
      font-size: 1.3em;
      color: #f39c12;
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-daga__why-choose-text {
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-daga__faq-section {
      background-color: #ecf0f1;
      padding: 50px 0;
    }

    .page-daga__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-daga__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.1em;
      font-weight: bold;
      color: #2c3e50;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }

    .page-daga__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-daga__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from intercepting click */
      color: #e74c3c;
    }

    .page-daga__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
    }

    .page-daga__faq-item.active .page-daga__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus */
    }

    .page-daga__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      opacity: 0;
      color: #555;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-daga__hero-section {
        min-height: 300px;
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 60px;
      }

      .page-daga__hero-title {
        font-size: 2em;
      }

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

      .page-daga__section-title {
        font-size: 2em;
      }

      .page-daga__text-block {
        font-size: 1em;
      }

      .page-daga__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-daga__promo-float-button {
        padding: 12px 20px;
        font-size: 0.9em;
        bottom: 15px;
        right: 15px;
      }
      .page-daga__promo-float-button span {
          font-size: 0.7em;
      }

      .page-daga__game-grid {
        grid-template-columns: 1fr;
      }
      
      .page-daga__game-image-wrapper {
          height: 180px;
      }

      .page-daga__game-title {
        font-size: 1.3em;
      }

      .page-daga__why-choose-grid {
        grid-template-columns: 1fr;
      }

      .page-daga__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-daga__faq-question h3 {
        font-size: 1em;
      }

      .page-daga__faq-answer {
        padding: 0 15px;
      }

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

      /* Image responsive optimization for mobile */
      .page-daga__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-daga__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  