.page-da-ga {
  --primary-color: #336699;
  --secondary-color: #FFCC00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f5f8fa;
  --bg-dark: #2a4a6a;
  --border-color: #e0e0e0;
  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 20px;
}

/* 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-color: var(--bg-dark);
  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%;
  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;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-da-ga .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.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;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

/* General Section Styling */
.page-da-ga section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.page-da-ga h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-da-ga h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-da-ga h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-da-ga p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-da-ga .button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.page-da-ga .button:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-da-ga .feature-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 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-da-ga .feature-item:hover {
  transform: translateY(-10px);
}

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

.page-da-ga .feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

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

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

.page-da-ga .betting-type-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-da-ga .betting-type-card:hover {
  transform: translateY(-10px);
}

.page-da-ga .betting-type-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-da-ga .betting-type-card h3 {
  padding: 20px 15px 10px;
  font-size: 1.6em;
}

.page-da-ga .betting-type-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-da-ga .betting-type-card h3 a:hover {
  color: var(--secondary-color);
}

.page-da-ga .betting-type-card p {
  padding: 0 15px 20px;
  font-size: 1em;
  color: #555555;
}

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

.page-da-ga .how-to-play-section li {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 90px;
}

.page-da-ga .how-to-play-section li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--text-light);
  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 li h3 {
  margin-top: 0;
  font-size: 1.6em;
}

.page-da-ga .how-to-play-section li p {
  margin-bottom: 10px;
}

/* Tips Section */
.page-da-ga .tips-section ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-da-ga .tips-section li {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-da-ga .tips-section li h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-da-ga .tips-section li p {
  font-size: 1em;
  color: #555555;
}

/* Promotion Section */
.page-da-ga .promotion-cards {
  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 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-da-ga .promotion-card:hover {
  transform: translateY(-10px);
}

.page-da-ga .promotion-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-da-ga .promotion-card h3 {
  padding: 20px 15px 10px;
  font-size: 1.6em;
}

.page-da-ga .promotion-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-da-ga .promotion-card h3 a:hover {
  color: var(--secondary-color);
}

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

/* Security & Support Section */
.page-da-ga .security-support-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-da-ga .security-support-section h2 {
  color: var(--secondary-color);
}

.page-da-ga .security-support-section p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

.page-da-ga .security-item {
  background: #3a628a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga .security-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

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

.page-da-ga .security-item .button {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-da-ga .security-item .button:hover {
  background: #ffdb4d;
}

/* FAQ Section */
.page-da-ga .faq-section {
  background-color: var(--bg-light);
}

.page-da-ga .faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.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 var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

.page-da-ga .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.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-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.page-da-ga .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

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

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

.page-da-ga .faq-answer .button {
  margin-bottom: 10px;
}

/* Latest Articles Section */
.page-da-ga .latest-articles-section {
  background-color: #ffffff;
}

.page-da-ga .latest-articles-section > p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-da-ga .article-card:hover {
  transform: translateY(-10px);
}

.page-da-ga .article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-da-ga .article-card h3 {
  padding: 20px 15px 10px;
  font-size: 1.4em;
  line-height: 1.3;
}

.page-da-ga .article-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-da-ga .article-card h3 a:hover {
  color: var(--secondary-color);
}

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

.page-da-ga .article-card .read-more {
  display: inline-block;
  padding: 10px 15px 20px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-da-ga .article-card .read-more:hover {
  color: var(--primary-color);
}

.page-da-ga .view-all-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-da-ga .hero-content h1 {
    font-size: 2.8em;
  }
  .page-da-ga .hero-content p {
    font-size: 1.1em;
  }
  .page-da-ga .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-da-ga h2 {
    font-size: 2.2em;
  }
}

@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: 1.1em;
  }
  .page-da-ga section {
    padding: 60px 0;
  }
  .page-da-ga h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-da-ga h3 {
    font-size: 1.5em;
  }
  .page-da-ga .feature-grid, .page-da-ga .betting-type-grid, .page-da-ga .promotion-cards, .page-da-ga .security-features, .page-da-ga .article-cards {
    grid-template-columns: 1fr;
  }
  .page-da-ga .how-to-play-section li {
    padding-left: 75px;
  }
  .page-da-ga .how-to-play-section li::before {
    left: 20px;
    top: 25px;
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
  .page-da-ga .faq-question {
    padding: 15px 20px;
  }
  .page-da-ga .faq-question h3 {
    font-size: 1.1em;
  }
  .page-da-ga .faq-toggle {
    font-size: 1.5em;
  }
  .page-da-ga .faq-answer {
    padding: 0 20px;
  }
  .page-da-ga .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-da-ga .article-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-da-ga .hero-content h1 {
    font-size: 1.8em;
  }
  .page-da-ga .hero-content p {
    font-size: 0.9em;
  }
  .page-da-ga .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-da-ga h2 {
    font-size: 1.6em;
  }
  .page-da-ga h3 {
    font-size: 1.3em;
  }
  .page-da-ga .how-to-play-section li {
    padding: 20px;
    padding-left: 65px;
  }
  .page-da-ga .how-to-play-section li::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-da-ga .faq-question h3 {
    font-size: 1em;
  }
}