/* style/da-ga.css */
:root {
  --primary-color: #1A2B4C; /* Deep Tech Blue / Royal Purple */
  --secondary-color: #FFD700; /* Imperial Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #111827; /* Slightly darker for contrast */
}

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

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

/* General Section Styling */
.page-da-ga section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-da-ga section:nth-of-type(even) {
  background-color: #e9ecef; /* Light grey for alternating sections */
}

.page-da-ga h1, .page-da-ga h2, .page-da-ga h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-da-ga h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-da-ga h2 {
  font-size: 2.2em;
  border-bottom: 3px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-da-ga p {
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

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

.page-da-ga ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-da-ga a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Buttons */
.page-da-ga .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: none;
}

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

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

.page-da-ga .btn-small:hover {
  background: #2A406D; /* Slightly lighter primary */
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.page-da-ga .image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-da-ga .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: block; /* Ensures image takes full width */
  margin: 0 auto; /* Center the image */
}

/* 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: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a5c96 100%); /* Gradient background */
  color: var(--text-light);
}

.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 10px 30px 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 {
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* Bet Type Grid */
.page-da-ga .bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga .bet-type-item {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-da-ga .bet-type-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-top: 0;
  text-align: left;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.page-da-ga .bet-type-item p {
  font-size: 1em;
  line-height: 1.7;
}

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

.page-da-ga .step-item {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary-color);
}

.page-da-ga .step-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-top: 0;
  text-align: left;
}

/* Tips List */
.page-da-ga .tips-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-da-ga .tips-list li {
  background-color: var(--text-light);
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
}

.page-da-ga .tips-list li strong {
  color: var(--primary-color);
}

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

.page-da-ga .feature-item {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-da-ga .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-top: 0;
  text-align: center;
}

.page-da-ga .feature-item p {
  text-align: center;
}

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

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

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

.page-da-ga .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  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.25em;
  color: var(--primary-color);
  text-align: left;
}

.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 25px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

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

.page-da-ga .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--text-dark);
}

/* Conclusion Section */
.page-da-ga .section-conclusion {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-da-ga .section-conclusion h2 {
  color: var(--secondary-color);
  border-bottom-color: var(--text-light);
}

.page-da-ga .section-conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-da-ga .section-conclusion .cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .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 {
    font-size: 1em;
  }
  .page-da-ga .hero-content p {
    font-size: 1.1em;
  }
  .page-da-ga .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-da-ga section {
    padding: 40px 0;
  }
  .page-da-ga .hero-section {
    padding: 60px 15px;
  }
  .page-da-ga .container {
    padding: 0 15px;
  }
  .page-da-ga h1 {
    font-size: 1.8em;
  }
  .page-da-ga h2 {
    font-size: 1.6em;
  }
  .page-da-ga h3 {
    font-size: 1.3em;
  }
  .page-da-ga .bet-type-grid, .page-da-ga .guide-steps, .page-da-ga .security-features {
    grid-template-columns: 1fr;
  }
  .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: 20px;
  }
  .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 h1 {
    font-size: 1.5em;
  }
  .page-da-ga h2 {
    font-size: 1.4em;
  }
  .page-da-ga .hero-content p {
    font-size: 1em;
  }
  .page-da-ga .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-da-ga .tips-list li {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}