.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background from shared.css: var(--color-card-bg) which is #10233F */
}

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

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-gdpr__dark-bg {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
}

.page-gdpr__light-bg {
  background-color: #08162B; /* Deep Navy, a slightly lighter dark background */
  color: #F3F8FF; /* Text Main */
}

.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.page-gdpr__hero-description {
  font-size: 1.1rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__section-title--light {
  color: #F2C14E; /* Gold */
}

.page-gdpr__sub-title {
  font-size: 1.6rem;
  color: #4FA8FF; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-gdpr__text-block {
  font-size: 1rem;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-gdpr__text-block--light {
  color: #AFC4E8; /* Text Secondary */
}

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

.page-gdpr__cta-buttons--center {
  justify-content: center;
}

.page-gdpr__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #ffffff; /* White text */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #4FA8FF; /* Glow */
  border: 2px solid #2B73F6;
}

.page-gdpr__btn-secondary:hover {
  background-color: #2B73F6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__feature-card {
  background-color: #08162B; /* Deep Navy */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
}

.page-gdpr__feature-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__feature-title--light {
  color: #4FA8FF; /* Glow */
}

.page-gdpr__feature-description {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__feature-description--light {
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-gdpr__content-image--center {
  display: block;
  margin: 30px auto 0 auto;
}

.page-gdpr__rights-list,
.page-gdpr__cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.page-gdpr__rights-list li,
.page-gdpr__cookie-list li {
  background-color: #1B3357; /* Divider - slightly lighter background for list items */
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: #F3F8FF; /* Text Main */
  border-left: 4px solid #4FA8FF; /* Glow */
}

.page-gdpr__rights-list li strong {
  color: #F2C14E; /* Gold */
}

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

.page-gdpr__security-card {
  background-color: #08162B; /* Deep Navy */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
}

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

.page-gdpr__contact-card {
  background-color: #08162B; /* Deep Navy */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-gdpr__inline-link {
  color: #4FA8FF; /* Glow */
  text-decoration: underline;
}

.page-gdpr__inline-link:hover {
  color: #F2C14E; /* Gold */
}

.page-gdpr__bottom-cta {
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__cta-content {
  max-width: 900px;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 40px 20px;
  margin-bottom: 20px;
}

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

.page-gdpr__faq-item {
  background-color: #10233F; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #244D84; /* Border */
  color: #F3F8FF;
  overflow: hidden;
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  list-style: none;
  user-select: none;
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #4FA8FF; /* Glow */
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
}

/* Universal image rules */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-gdpr__hero-description {
    font-size: 1rem;
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

  .page-gdpr__sub-title {
    font-size: 1.4rem;
  }

  .page-gdpr__cta-button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .page-gdpr__image-text-block {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__content-image {
    width: 100%;
    max-width: 600px;
  }

  .page-gdpr__rights-list, .page-gdpr__cookie-list {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Ensure small padding, not header offset */
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Mobile main image should contain, not cover */
    aspect-ratio: unset !important;
    max-height: none !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__hero-content {
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-gdpr__hero-description {
    font-size: 0.95rem;
  }

  .page-gdpr__section {
    padding: 30px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.6rem;
  }

  .page-gdpr__sub-title {
    font-size: 1.3rem;
  }

  /* Generic Images and Containers */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__bottom-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons and button containers */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }

  /* Game Grid (Placeholder for requirement) */
  .page-gdpr__game-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns for mobile */
    gap: 15px;
    overflow-x: hidden;
  }

  /* Winner List (Placeholder for requirement) */
  .page-gdpr__winner-list {
    display: block; /* Stack items */
    overflow-x: hidden;
  }

  /* Other content modules (FAQ) */
  .page-gdpr__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px;
  }
}