/* style/da-ga.css */
/* Base styles for .page-da-ga */
.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-da-ga__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-da-ga__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-da-ga__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__keyword {
  color: #FFD36B; /* Glow color for keywords */
  font-weight: bold;
}

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,1) 100%);
}

.page-da-ga__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  gap: 40px;
}

.page-da-ga__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-da-ga__main-title {
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
  /* Font size handled by clamp in shared.css or global rules. No fixed font-size here */
}

.page-da-ga__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-da-ga__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary,
.page-da-ga__btn-text {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-da-ga__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-da-ga__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border */
}

.page-da-ga__btn-secondary:hover {
  background: #F2C14E; /* Main color */
  color: #111111; /* Dark text */
  transform: translateY(-2px);
}

.page-da-ga__btn-text {
  background: transparent;
  color: #FFD36B; /* Glow color */
  border: none;
  padding: 0;
  display: block;
  margin-top: 15px;
  font-size: 1em;
  text-align: left;
}

.page-da-ga__btn-text:hover {
  text-decoration: underline;
  color: #F2C14E; /* Main color */
}

.page-da-ga__hero-image {
  flex: 1 1 40%;
  min-width: 250px;
  text-align: center;
}

.page-da-ga__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-da-ga__intro-section {
  padding: 60px 0;
  background: #111111; /* Card BG */
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-da-ga__icon-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__icon-box {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  padding: 25px;
  background: #0A0A0A; /* Background */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border */
}

.page-da-ga__icon-box-media {
  width: 180px; /* Smaller for better fit in 3-column */
  height: 180px; /* Smaller for better fit in 3-column */
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E; /* Main color */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-da-ga__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-da-ga__icon-box-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-da-ga__icon-box-text {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
}

/* Types Section */
.page-da-ga__types-section {
  padding: 60px 0;
  background: #0A0A0A; /* Background */
  border-bottom: 1px solid #3A2A12; /* Border */
}

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

.page-da-ga__card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
}

.page-da-ga__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}