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

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

/* Hero Section */
.page-da-ga__hero {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0A2342 50%, #FFD700 100%); /* Adjusted for better visual */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-da-ga__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-da-ga__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-da-ga__hero-content {
  text-align: center;
}

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

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

.page-da-ga__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 18px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga__cta-button:hover {
  background-color: #ffc107; /* Lighter gold */
  transform: translateY(-3px);
}

/* General Section Styles */
.page-da-ga__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-da-ga__section:nth-child(even) {
  background-color: #f2f4f6;
}

.page-da-ga__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-da-ga__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-da-ga__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #555555;
}

.page-da-ga__button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-da-ga__button:hover {
  background-color: #071a33; /* Darker primary */
}

/* Game Types Grid */
.page-da-ga__grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-da-ga__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-da-ga__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-da-ga__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-da-ga__card-title {
  font-size: 1.6em;
  color: var(--primary-color);
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-da-ga__card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-da-ga__card-link {
  display: block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-da-ga__card-link:hover {
  background-color: #ffc107;
}

/* Rules Section */
.page-da-ga__rules-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

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

.page-da-ga__rules-item ul, .page-da-ga__rules-item ol {
  list-style-position: inside;
  padding-left: 0;
}

.page-da-ga__rules-item li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555555;
}

.page-da-ga__rules-item strong {
  color: var(--primary-color);
}

/* Tips Section */
.page-da-ga__list-tips {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 30px;
}

.page-da-ga__list-tips li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

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

/* Promotions Section */
.page-da-ga__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-da-ga__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-da-ga__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-da-ga__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-da-ga__promo-card h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-da-ga__promo-card p {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 20px;
}

/* Why Choose Us Section */
.page-da-ga__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-da-ga__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-da-ga__feature-item:hover {
  transform: translateY(-5px);
}

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

.page-da-ga__feature-item p {
  font-size: 1em;
  color: #666666;
  text-align: left;
}

/* Registration Steps Section */
.page-da-ga__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-da-ga__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.page-da-ga__step-item:hover {
  transform: translateY(-5px);
}

.page-da-ga__step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-da-ga__step-item p {
  font-size: 1em;
  color: #666666;
  text-align: center;
}

.page-da-ga__cta-button--large {
  margin-top: 40px;
  padding: 20px 50px;
  font-size: 1.3em;
}

/* FAQ Section */
.page-da-ga__faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

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

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

.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 #e0e0e0;
}

.faq-answer p {
  margin: 0;
  font-size: 1.05em;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-da-ga__hero-title {
    font-size: 2.8em;
  }

  .page-da-ga__hero-description {
    font-size: 1.2em;
  }

  .page-da-ga__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-da-ga__hero {
    padding: 60px 0;
    min-height: 400px;
  }

  .page-da-ga__hero-title {
    font-size: 2.2em;
  }

  .page-da-ga__hero-description {
    font-size: 1em;
  }

  .page-da-ga__cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }

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

  .page-da-ga__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-da-ga__grid-cards, .page-da-ga__promo-grid, .page-da-ga__features-grid, .page-da-ga__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-da-ga__card-image {
    height: 180px;
  }

  .page-da-ga__rules-content {
    grid-template-columns: 1fr;
  }

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

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 1.5em;
  }

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

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  
  .page-da-ga__cta-button--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-da-ga__hero {
    padding: 40px 0;
    min-height: 300px;
  }

  .page-da-ga__hero-title {
    font-size: 1.8em;
  }

  .page-da-ga__hero-description {
    font-size: 0.9em;
  }

  .page-da-ga__cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }

  .page-da-ga__section {
    padding: 30px 0;
  }

  .page-da-ga__section-title {
    font-size: 1.5em;
    margin-bottom: 25px;
  }

  .page-da-ga__card-title {
    font-size: 1.4em;
  }

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

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

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

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