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

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

.page-da-ga section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(232, 169, 0, 0.1);
}

.page-da-ga section:last-of-type {
  border-bottom: none;
}

.page-da-ga .section-title {
  font-size: 36px;
  color: #E8A900;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-da-ga h1, .page-da-ga h2, .page-da-ga h3 {
  color: #E8A900;
}

.page-da-ga p {
  margin-bottom: 15px;
  color: #D0D0D0;
}

.page-da-ga a {
  color: #E8A900;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-da-ga a:hover {
  color: #FFC107;
}

.page-da-ga .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E8A900;
  color: #0A1930;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-da-ga .cta-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-da-ga .cta-button.small-button {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 15px;
}

/* 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: 0;
  overflow: hidden;
  min-height: 600px;
}

.page-da-ga .hero-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-da-ga .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-da-ga .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

.page-da-ga .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-da-ga .hero-title {
  font-size: 52px;
  color: #E8A900;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

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

/* Intro Section */
.page-da-ga .intro-section {
  background-color: #1A2A44;
  color: #D0D0D0;
}

.page-da-ga .image-content-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-da-ga .content-image-left {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 300px;
  min-height: 200px;
}

.page-da-ga .text-content-right {
  flex: 1 1 45%;
}

.page-da-ga .text-content-right h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #E8A900;
}

.page-da-ga .text-content-right ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-da-ga .text-content-right ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E8A900"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left 8px;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #D0D0D0;
}

/* Game Types Section */
.page-da-ga .game-types-section {
  background-color: #0A1930;
}

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

.page-da-ga .game-card {
  background-color: #1A2A44;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.page-da-ga .card-title {
  font-size: 24px;
  margin-bottom: 15px;
  padding: 0 15px;
  color: #E8A900;
}

.page-da-ga .card-title a {
  color: #E8A900;
  text-decoration: none;
}

.page-da-ga .card-title a:hover {
  color: #FFC107;
}

.page-da-ga .card-description {
  font-size: 16px;
  color: #D0D0D0;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-da-ga .card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #E8A900;
  color: #0A1930;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto;
}

.page-da-ga .card-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
}

/* Guide Section */
.page-da-ga .guide-section {
  background-color: #1A2A44;
}

.page-da-ga .guide-list {
  list-style: none;
  padding: 0;
}

.page-da-ga .guide-list li {
  background-color: #0A1930;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-da-ga .guide-list li h3 {
  font-size: 28px;
  color: #E8A900;
  margin-bottom: 15px;
}

.page-da-ga .guide-list li p {
  color: #D0D0D0;
}

/* Tips Section */
.page-da-ga .tips-section {
  background-color: #0A1930;
}

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

.page-da-ga .tip-item {
  background-color: #1A2A44;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-da-ga .tip-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 100px;
  min-height: 100px;
}

.page-da-ga .tip-item h3 {
  font-size: 24px;
  color: #E8A900;
  margin-bottom: 15px;
}

.page-da-ga .tip-item p {
  color: #D0D0D0;
}

/* Security Section */
.page-da-ga .security-section {
  background-color: #1A2A44;
}

.page-da-ga .security-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-da-ga .text-content-left {
  flex: 1 1 45%;
}

.page-da-ga .text-content-left h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #E8A900;
}

.page-da-ga .security-image-right {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 300px;
  min-height: 200px;
}

/* Promo Section */
.page-da-ga .promo-section {
  background-color: #0A1930;
}

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

.page-da-ga .promo-card {
  background-color: #1A2A44;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.page-da-ga .promo-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #AAAAAA;
}

/* FAQ Section */
.page-da-ga .faq-section {
  background-color: #1A2A44;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A1930;
  border: 1px solid rgba(232, 169, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #1A2A44;
  border-color: #E8A900;
}

.faq-question h3 {
  margin: 0;
  font-size: 20px;
  color: #E8A900;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E8A900;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #0A1930;
  color: #D0D0D0;
  border-radius: 0 0 8px 8px;
  box-sizing: border-box;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border: 1px solid rgba(232, 169, 0, 0.2);
  border-top: none;
}

.faq-answer p {
  margin: 0;
}

/* CTA Final Section */
.page-da-ga .cta-final-section {
  background-color: #0A1930;
  text-align: center;
  padding: 80px 0;
}

.page-da-ga .cta-final-section .section-title {
  color: #E8A900;
}

.page-da-ga .cta-final-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #D0D0D0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-da-ga .hero-title {
    font-size: 44px;
  }
  .page-da-ga .hero-description {
    font-size: 18px;
  }
  .page-da-ga .section-title {
    font-size: 32px;
  }
  .page-da-ga .image-content-layout {
    flex-direction: column;
  }
  .page-da-ga .content-image-left, .page-da-ga .security-image-right {
    max-width: 100%;
  }
  .page-da-ga .text-content-right, .page-da-ga .text-content-left {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-da-ga section {
    padding: 40px 0;
  }
  .page-da-ga .hero-title {
    font-size: 36px;
  }
  .page-da-ga .hero-description {
    font-size: 16px;
  }
  .page-da-ga .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-da-ga .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-da-ga .content-image-left, .page-da-ga .security-image-right {
    min-height: 250px;
  }
  .page-da-ga .game-cards-grid, .page-da-ga .tips-grid, .page-da-ga .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-da-ga .guide-list li {
    padding: 20px;
  }
  .page-da-ga .guide-list li h3 {
    font-size: 24px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 18px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-da-ga .hero-content {
    padding: 40px 15px;
  }
  .page-da-ga .hero-title {
    font-size: 28px;
  }
  .page-da-ga .hero-description {
    font-size: 14px;
  }
  .page-da-ga .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .page-da-ga .section-title {
    font-size: 24px;
  }
  .page-da-ga .text-content-right h3, .page-da-ga .text-content-left h3 {
    font-size: 22px;
  }
  .page-da-ga .card-title {
    font-size: 20px;
  }
  .page-da-ga .card-description {
    font-size: 14px;
  }
  .page-da-ga .tip-icon {
    width: 80px;
    height: 80px;
  }
  .page-da-ga .tip-item h3 {
    font-size: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
}