/* style/da-ga.css */
:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --text-light: #F0F0F0;
  --text-dark: #1A1A1A;
  --background-dark: #0A1931;
  --background-light: #FFFFFF;
  --accent-color: #FFD700;
  --border-color: #333333;
}

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

.page-da-ga h1, .page-da-ga h2, .page-da-ga h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.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;
  margin-bottom: 30px;
}

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

.page-da-ga p {
  margin-bottom: 15px;
  color: var(--text-light);
}

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

.page-da-ga a:hover {
  color: #FFEA00; /* Slightly brighter gold on hover */
  text-decoration: underline;
}

.page-da-ga .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 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: linear-gradient(135deg, var(--primary-color) 0%, #1a3a66 100%); /* Subtle gradient */
  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: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-da-ga .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-da-ga .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  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.3);
}

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

/* Intro Section */
.page-da-ga .intro-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
}

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

.page-da-ga .content-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Game Types Section */
.page-da-ga .game-types-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-da-ga .card {
  background-color: #1a2c47; /* Slightly lighter dark blue for cards */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2e4a7a;
}

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

.page-da-ga .card h3 a {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  display: block;
}

.page-da-ga .card h3 a:hover {
  text-decoration: none;
  color: #FFEA00;
}

.page-da-ga .card p {
  color: var(--text-light);
}

/* How-To-Play Section */
.page-da-ga .how-to-play-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
}

.page-da-ga ol {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
  color: var(--text-light);
}

.page-da-ga ol li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-da-ga ol li strong {
  color: var(--secondary-color);
}

.page-da-ga .text-link {
  font-weight: bold;
}

/* Advantages Section */
.page-da-ga .advantages-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-da-ga .feature-item {
  background-color: #1a2c47;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2e4a7a;
}

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

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

.page-da-ga .feature-item p {
  color: var(--text-light);
}

/* Tips Section */
.page-da-ga .tips-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
}

.page-da-ga ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  color: var(--text-light);
}

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

.page-da-ga ul li strong {
  color: var(--secondary-color);
}

/* Promo Section */
.page-da-ga .promo-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-da-ga .promo-card {
  background-color: #1a2c47;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2e4a7a;
}

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

.page-da-ga .promo-card h3 a {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  display: block;
}

.page-da-ga .promo-card h3 a:hover {
  text-decoration: none;
  color: #FFEA00;
}

.page-da-ga .promo-card p {
  color: var(--text-light);
}

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

.page-da-ga .faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-da-ga .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #1a2c47;
  border: 1px solid #2e4a7a;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

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

.page-da-ga .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #1a2c47;
  color: var(--text-light);
  border-left: 1px solid #2e4a7a;
  border-right: 1px solid #2e4a7a;
  border-bottom: 1px solid #2e4a7a;
  border-radius: 0 0 5px 5px;
}

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

.page-da-ga .faq-answer p {
  margin: 0;
  color: var(--text-light);
}

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

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

.page-da-ga .conclusion-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

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

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

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

@media (max-width: 768px) {
  .page-da-ga .hero-section {
    padding: 40px 15px;
  }

  .page-da-ga .hero-content h1 {
    font-size: 2.5em;
  }

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

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

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

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

  .page-da-ga .content-image {
    height: 200px;
  }

  .page-da-ga .card-grid, .page-da-ga .feature-list, .page-da-ga .promo-grid {
    grid-template-columns: 1fr;
  }

  .page-da-ga ol, .page-da-ga ul {
    margin-left: 0;
    padding-left: 20px;
  }

  .page-da-ga .faq-question {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .page-da-ga .faq-question h3 {
    margin-bottom: 8px;
  }

  .page-da-ga .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }

  .page-da-ga .promo-card img {
    height: 180px;
  }
}

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

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

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

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

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

  .page-da-ga .content-image {
    height: 150px;
  }

  .page-da-ga .feature-item img {
    width: 80px;
    height: 80px;
  }

  .page-da-ga .promo-card img {
    height: 150px;
  }
}