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

.page-da-ga a {
  color: #003366;
  text-decoration: none;
}

.page-da-ga a:hover {
  text-decoration: underline;
  color: #FFD700;
}

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

.page-da-ga-section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-da-ga-section:last-of-type {
  border-bottom: none;
}

.page-da-ga h1,
.page-da-ga h2 {
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-da-ga h1 {
  font-size: 3.2em;
  line-height: 1.2;
}

.page-da-ga h2 {
  font-size: 2.5em;
}

.page-da-ga h3 {
  color: #003366;
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-da-ga p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

.page-da-ga ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-da-ga ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #555555;
}

/* Hero Section */
.page-da-ga-hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-da-ga-hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-da-ga-hero-content h1 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 3.5em;
}

.page-da-ga-hero-content p {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

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

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

.page-da-ga-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #003366;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga-cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.page-da-ga-small-button {
  display: inline-block;
  padding: 10px 25px;
  background: #003366;
  color: #FFD700;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.page-da-ga-small-button:hover {
  background: #004080;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.page-da-ga-intro p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

/* Why Section */
.page-da-ga-why {
  background-color: #ffffff;
}

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

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

.page-da-ga-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-da-ga-feature-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-da-ga-feature-card h3 {
  font-size: 1.6em;
  margin-top: 0;
}

.page-da-ga-feature-card p {
  font-size: 1em;
  color: #666666;
}

/* Register Section */
.page-da-ga-register {
  background-color: #f2f7fc;
}

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

.page-da-ga-step-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 60px;
}

.page-da-ga-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #003366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga-step-card h3 {
  margin-top: 15px;
  font-size: 1.5em;
}

/* Betting Types Section */
.page-da-ga-betting-types {
  background-color: #ffffff;
}

.page-da-ga-betting-types h3 {
  margin-top: 30px;
}

.page-da-ga-betting-types ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.page-da-ga-betting-types ul li {
  background: #f9f9f9;
  border-left: 5px solid #003366;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
}

.page-da-ga-betting-types ul li strong {
  color: #003366;
}

/* Promotions Section */
.page-da-ga-promotions {
  background-color: #fcf4e0;
}

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

.page-da-ga-promo-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-da-ga-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-da-ga-promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-da-ga-promo-card h3 {
  color: #003366;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-da-ga-promo-card p {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
}

/* Payment Section */
.page-da-ga-payment {
  background-color: #ffffff;
}

/* Customer Service Section */
.page-da-ga-customer-service {
  background-color: #e6f0f8;
}

.page-da-ga-customer-service ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.page-da-ga-customer-service ul li {
  background: #ffffff;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #d0e0f0;
  font-size: 1.1em;
}

.page-da-ga-customer-service ul li strong {
  color: #003366;
}

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

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

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
  flex-grow: 1;
  text-align: left;
}

.faq-question:hover {
  background: #004080;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555555;
}

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

.faq-answer p {
  margin-bottom: 0;
}

/* Blog Preview Section */
.page-da-ga-blog-preview {
  background-color: #fcfcfc;
}

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

.page-da-ga-blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-da-ga-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-da-ga-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-da-ga-blog-card h3 {
  font-size: 1.3em;
  margin: 20px 20px 10px 20px;
  color: #003366;
  flex-grow: 1;
}

.page-da-ga-blog-link {
  color: #003366;
  text-decoration: none;
}

.page-da-ga-blog-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-da-ga-blog-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-da-ga-blog-date {
  display: block;
  font-size: 0.85em;
  color: #999999;
  padding: 0 20px 20px;
}

.page-da-ga-view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Final CTA Section */
.page-da-ga-final-cta {
  background: linear-gradient(90deg, #003366, #004d99);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-da-ga-final-cta-content {
  max-width: 800px;
}

.page-da-ga-final-cta h2 {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-da-ga-final-cta p {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-da-ga h1 {
    font-size: 2.8em;
  }

  .page-da-ga h2 {
    font-size: 2em;
  }

  .page-da-ga-hero-content {
    margin-bottom: 30px;
  }

  .page-da-ga-hero-image {
    margin-top: 20px;
  }

  .page-da-ga-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-da-ga h1 {
    font-size: 2.2em;
  }

  .page-da-ga h2 {
    font-size: 1.8em;
  }

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

  .page-da-ga p,
  .page-da-ga ul li {
    font-size: 1em;
  }

  .page-da-ga-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-da-ga-hero-image img {
    border-radius: 5px;
  }

  .page-da-ga-features-grid,
  .page-da-ga-steps-grid,
  .page-da-ga-promo-grid,
  .page-da-ga-blog-grid {
    grid-template-columns: 1fr;
  }

  .page-da-ga-feature-card,
  .page-da-ga-step-card,
  .page-da-ga-promo-card,
  .page-da-ga-blog-card {
    padding: 25px;
  }

  .page-da-ga-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    top: -15px;
  }

  .faq-question {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
  }

  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-da-ga h1 {
    font-size: 1.8em;
  }

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

  .page-da-ga-hero-content p {
    font-size: 1.1em;
  }

  .page-da-ga-cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
}