/* style/da-ga.css */
:root {
  --primary-color: #007BFF;
  --secondary-color: #FFC107;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --border-color: #e0e0e0;
}

.page-da-ga {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.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, var(--primary-color) 0%, #0056b3 100%); /* Darker blue gradient */
  color: var(--text-light);
  overflow: hidden;
}

.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;
  z-index: 1;
}

.page-da-ga .hero-image {
  width: 100%;
  max-width: 900px;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-da-ga .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-da-ga .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-da-ga .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-da-ga .cta-button:hover {
  background: #ffdb58; /* Slightly lighter secondary color */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-da-ga .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-da-ga .section-intro, 
.page-da-ga .section-features, 
.page-da-ga .section-bet-types, 
.page-da-ga .section-guide, 
.page-da-ga .section-strategy, 
.page-da-ga .section-promotions, 
.page-da-ga .section-faq, 
.page-da-ga .section-conclusion {
  padding: 60px 0;
}

.page-da-ga .bg-light {
  background-color: var(--bg-light);
}

.page-da-ga .bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-da-ga .bg-dark .section-title {
  color: var(--secondary-color);
}

.page-da-ga .bg-dark p {
  color: #cccccc;
}

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

.page-da-ga .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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 25px rgba(0, 0, 0, 0.15);
}

.page-da-ga .feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-da-ga .bet-type-item, .page-da-ga .strategy-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-da-ga .bet-type-item:hover, .page-da-ga .strategy-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-da-ga .bet-type-title, .page-da-ga .strategy-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-da-ga .guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-da-ga .guide-list li {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-da-ga .guide-list li:hover {
  transform: translateY(-3px);
}

.page-da-ga .guide-step-title {
  font-size: 1.7em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-da-ga .promotion-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

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

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

.page-da-ga .promotion-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px; /* Added border-radius for consistency */
}

.page-da-ga .promotion-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

/* FAQ Styles */
.page-da-ga .faq-list {
  margin-top: 40px;
}

.page-da-ga .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.page-da-ga .faq-question:hover {
  background: var(--bg-light);
}

.page-da-ga .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--primary-color);
  font-weight: bold;
}

.page-da-ga .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-da-ga .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-da-ga .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #fdfdfd;
  color: var(--text-dark);
}

.page-da-ga .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.page-da-ga .faq-answer p {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-da-ga .image-content {
  text-align: center;
  margin: 40px 0;
}

.page-da-ga .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-da-ga .primary-button {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-da-ga .primary-button:hover {
  background: #0056b3; /* Darker primary color */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-da-ga .hero-title {
    font-size: 2.5em;
  }
  .page-da-ga .hero-description {
    font-size: 1.1em;
  }
  .page-da-ga .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-da-ga .section-title {
    font-size: 2em;
  }
  .page-da-ga .feature-title, .page-da-ga .bet-type-title, .page-da-ga .strategy-title, .page-da-ga .guide-step-title, .page-da-ga .promotion-title {
    font-size: 1.4em;
  }
  .page-da-ga .promotion-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-da-ga .hero-section {
    padding: 40px 15px;
  }
  .page-da-ga .hero-image {
    margin-bottom: 20px;
  }
  .page-da-ga .hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-da-ga .hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-da-ga .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-da-ga .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-da-ga .section-intro, 
  .page-da-ga .section-features, 
  .page-da-ga .section-bet-types, 
  .page-da-ga .section-guide, 
  .page-da-ga .section-strategy, 
  .page-da-ga .section-promotions, 
  .page-da-ga .section-faq, 
  .page-da-ga .section-conclusion {
    padding: 40px 0;
  }
  .page-da-ga .feature-grid, .page-da-ga .promotion-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-da-ga .feature-item, .page-da-ga .bet-type-item, .page-da-ga .strategy-item, .page-da-ga .guide-list li, .page-da-ga .promotion-list li {
    padding: 20px;
  }
  .page-da-ga .feature-title, .page-da-ga .bet-type-title, .page-da-ga .strategy-title, .page-da-ga .guide-step-title, .page-da-ga .promotion-title {
    font-size: 1.2em;
  }
  .page-da-ga .promotion-icon {
    width: 100px;
    height: 100px;
  }
  .page-da-ga .faq-question {
    padding: 15px;
  }
  .page-da-ga .faq-question h3 {
    font-size: 1.1em;
  }
  .page-da-ga .faq-toggle {
    font-size: 20px;
  }
  .page-da-ga .faq-answer {
    padding: 0 15px;
  }
  .page-da-ga .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-da-ga .hero-title {
    font-size: 1.8em;
  }
  .page-da-ga .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-da-ga .section-title {
    font-size: 1.5em;
  }
}