.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-da-ga h1, .page-da-ga h2, .page-da-ga h3 {
  color: #0047AB; /* Primary color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-da-ga h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-da-ga h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
}

.page-da-ga h3 {
  font-size: 1.6em;
}

.page-da-ga p {
  margin-bottom: 15px;
  color: #555;
}

/* Buttons */
.page-da-ga .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Secondary color */
  color: #0047AB; /* Primary color for text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-da-ga .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-da-ga .primary-button {
  display: inline-block;
  padding: 12px 30px;
  background: #0047AB; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-da-ga .primary-button:hover {
  background: #003380;
  transform: translateY(-1px);
}

.page-da-ga .secondary-button {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700; /* Secondary color */
  color: #0047AB; /* Primary color for text */
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-da-ga .secondary-button:hover {
  background: #e6c200;
  transform: translateY(-1px);
}

.page-da-ga .button-small {
  display: inline-block;
  padding: 8px 20px;
  background: #0047AB;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.85em;
  transition: all 0.3s ease;
}

.page-da-ga .button-small:hover {
  background: #003380;
  transform: translateY(-1px);
}

/* Hero Section */
.page-da-ga .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0047AB, #1a5ac7); /* Gradient with primary color */
  color: #ffffff;
}

.page-da-ga .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-da-ga .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-da-ga .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-da-ga .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-da-ga .hero-content h1 {
  color: #FFD700; /* Secondary color for main title */
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-da-ga .hero-content p {
  color: #ffffff;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Sections general styling */
.page-da-ga section {
  padding: 60px 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.page-da-ga section:nth-of-type(even) {
  background-color: #ffffff;
}

/* Introduction Section */
.page-da-ga .introduction-section p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga .introduction-section .primary-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* Features Section */
.page-da-ga .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-da-ga .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-da-ga .feature-item h3 {
  color: #0047AB;
  font-size: 1.4em;
  margin-top: 0;
}

.page-da-ga .feature-item p {
  font-size: 0.95em;
  color: #666;
}

/* How-To-Play Section */
.page-da-ga .how-to-play-section ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 30px;
}

.page-da-ga .how-to-play-section ol li {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 80px;
}

.page-da-ga .how-to-play-section ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background: #0047AB; /* Primary color */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-da-ga .how-to-play-section ol li h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.page-da-ga .how-to-play-section ol li p {
  color: #666;
}

/* Tips Section */
.page-da-ga .tips-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga .tips-section ul li {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga .tips-section ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-da-ga .tips-section .tip-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-da-ga .tips-section ul li h3 {
  color: #0047AB;
  font-size: 1.3em;
  margin-top: 0;
}

.page-da-ga .tips-section ul li p {
  font-size: 0.9em;
  color: #666;
}

/* Promotions Section */
.page-da-ga .promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga .promotion-card {
  background: #ffffff;
  border-radius: 10px;
  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;
}

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

.page-da-ga .promotion-card .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-da-ga .promotion-card h3 {
  color: #0047AB;
  font-size: 1.4em;
  padding: 15px;
  margin-bottom: 0;
}

.page-da-ga .promotion-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px;
}

/* Security & Support Section */
.page-da-ga .security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga .security-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-da-ga .security-item .security-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-da-ga .security-item h3 {
  color: #0047AB;
  font-size: 1.3em;
  margin-top: 0;
}

.page-da-ga .security-item p {
  font-size: 0.9em;
  color: #666;
}

.page-da-ga .security-support-section .primary-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* FAQ Section */
.page-da-ga .faq-section {
  background-color: #f8f8f8;
}

.page-da-ga .faq-list {
  margin-top: 40px;
}

.page-da-ga .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-da-ga .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-da-ga .faq-question:hover {
  background: #f5f5f5;
}

.page-da-ga .faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #0047AB;
}

.page-da-ga .faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700; /* Secondary color */
  transition: transform 0.3s ease;
}

.page-da-ga .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0047AB; /* Primary color when active */
}

.page-da-ga .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.page-da-ga .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-da-ga .faq-answer p {
  margin: 0;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-da-ga .hero-content h1 {
    font-size: 2.8em;
  }
  .page-da-ga h2 {
    font-size: 1.8em;
  }
  .page-da-ga h3 {
    font-size: 1.4em;
  }
  .page-da-ga .features-grid, .page-da-ga .promotions-grid, .page-da-ga .security-support-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-da-ga .tips-section ul {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .page-da-ga .how-to-play-section ol li {
    padding-left: 60px;
  }
  .page-da-ga .how-to-play-section ol li::before {
    left: 20px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-da-ga .hero-section {
    padding: 40px 15px;
  }
  .page-da-ga .hero-content h1 {
    font-size: 2.2em;
  }
  .page-da-ga .hero-content p {
    font-size: 1em;
  }
  .page-da-ga .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-da-ga h2 {
    font-size: 1.6em;
  }
  .page-da-ga h3 {
    font-size: 1.2em;
  }
  .page-da-ga section {
    padding: 40px 0;
  }
  .page-da-ga .features-grid, .page-da-ga .promotions-grid, .page-da-ga .security-support-grid, .page-da-ga .tips-section ul {
    grid-template-columns: 1fr;
  }
  .page-da-ga .feature-item, .page-da-ga .promotion-card, .page-da-ga .security-item, .page-da-ga .tips-section ul li {
    padding: 20px;
  }
  .page-da-ga .how-to-play-section ol li {
    padding: 20px 20px 20px 60px;
  }
  .page-da-ga .how-to-play-section ol li::before {
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
  .page-da-ga .faq-question {
    padding: 15px 20px;
  }
  .page-da-ga .faq-question h3 {
    font-size: 1em;
  }
  .page-da-ga .faq-answer {
    padding: 0 20px;
  }
  .page-da-ga .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-da-ga .hero-content h1 {
    font-size: 1.8em;
  }
  .page-da-ga .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-da-ga h2 {
    font-size: 1.4em;
  }
  .page-da-ga h3 {
    font-size: 1.1em;
  }
  .page-da-ga .feature-item .feature-icon, .page-da-ga .security-item .security-icon {
    width: 70px;
    height: 70px;
  }
  .page-da-ga .tips-section .tip-image {
    width: 150px;
    height: 100px;
  }
}