.page-gdpr {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already has padding-top */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  background: var(--card-bg-color, #11271B); /* Using card bg for hero content */
  margin-top: -80px; /* Overlap slightly with image for design effect */
  position: relative;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color, #57E38D);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--text-main-color, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-gdpr__btn-secondary:hover {
  background: var(--border-color, #2E7A4E);
  color: #F2FFF6;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: var(--background-color, #08160F);
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__text-block {
  margin-bottom: 40px;
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1.05em;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

.page-gdpr__card {
  background: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 25px;
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
}

.page-gdpr__card-content {
  width: 100%;
}

.page-gdpr__card-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-content p {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1em;
  margin-bottom: 15px;
}

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__link-contact {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link-contact:hover {
  color: var(--glow-color, #57E38D);
  text-decoration: underline;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__faq-item details {
  width: 100%;
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  background: var(--deep-green-color, #0A4B2C);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  transition: background 0.3s ease;
  list-style: none;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-item summary:hover {
  background: var(--border-color, #2E7A4E);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: var(--glow-color, #57E38D);
}

.page-gdpr__faq-answer {
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Slightly lighter than card bg for contrast */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1em;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-gdpr__card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }
  .page-gdpr__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 30px;
  }
  .page-gdpr__text-block {
    font-size: 0.95em;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__faq-qtext {
    font-size: 1em;
  }
  .page-gdpr__faq-toggle {
    font-size: 1.2em;
  }

  /* Mobile specific overrides for images, videos, buttons and their containers */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper,
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-gdpr__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset, không dùng ở đây */
  }
  .page-gdpr__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}

/* Global content area image CSS for min-width check */
.page-gdpr img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure color contrast with custom colors */
.page-gdpr__dark-bg {
  background: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}
.page-gdpr__card.page-gdpr__dark-bg {
  background: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}
.page-gdpr__faq-answer {
  background: rgba(17, 39, 27, 0.7);
}

/* Text colors */
.page-gdpr__text-main { color: var(--text-main-color, #F2FFF6); }
.page-gdpr__text-secondary { color: var(--text-secondary-color, #A7D9B8); }

/* Links */
.page-gdpr a {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
}
.page-gdpr a:hover {
  color: var(--glow-color, #57E38D);
  text-decoration: underline;
}