*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --uy-kleur-verloop-1: linear-gradient(135deg, #ff00cc, #3333ff);
  --uy-kleur-verloop-2: linear-gradient(135deg, #00ffcc, #ffcc00);
  --uy-kleur-verloop-3: linear-gradient(135deg, #ff3366, #6633ff);
  --uy-kleur-achtergrond: #0a0a1a;
  --uy-kleur-tekst: #ffffff;
  --uy-kleur-accent-1: #ff00cc;
  --uy-kleur-accent-2: #00ffcc;
  --uy-kleur-accent-3: #ffcc00;
  --uy-kleur-licht: rgba(255, 255, 255, 0.1);
  --uy-kleur-donker: rgba(0, 0, 0, 0.7);
  --uy-border-radius: 20px;
  --uy-border-radius-klein: 12px;
  --uy-schaduw: 0 10px 30px rgba(255, 0, 204, 0.3);
  --uy-schaduw-groot: 0 20px 50px rgba(0, 255, 204, 0.4);
  --uy-transitie: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: 'Mulish', sans-serif;
  background: var(--uy-kleur-achtergrond);
  color: var(--uy-kleur-tekst);
  line-height: 1.6;
  background-image: url('/uy-core/uy-image/uy-background-image.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.uy-global-container {
  position: relative;
  min-height: 100vh;
}

.uy-navigator {
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--uy-kleur-licht);
}

.uy-navigator_inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.uy-navigator_brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  background: var(--uy-kleur-verloop-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-navigator_brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.uy-navigator_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
}

.uy-navigator_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--uy-kleur-tekst);
  transition: var(--uy-transitie);
  padding: 0.5rem 1rem;
  border-radius: var(--uy-border-radius-klein);
}

.uy-navigator_link:hover {
  background: var(--uy-kleur-verloop-1);
  transform: translateY(-2px);
}

.uy-navigator_toggle {
  display: none;
}

.uy-navigator_toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.uy-navigator_toggle-icon span {
  width: 25px;
  height: 3px;
  background: var(--uy-kleur-accent-1);
  transition: var(--uy-transitie);
  border-radius: 2px;
}

.uy-content {
  padding-top: 80px;
  max-width: 1420px;
  margin: 0 auto;
}

.uy-welkom {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.uy-welkom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--uy-kleur-verloop-1);
  opacity: 0.4;
  z-index: -1;
}

.uy-welkom_content {
  max-width: 800px;
}

.uy-welkom h1 {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--uy-kleur-verloop-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uy-titel-gloed 3s ease-in-out infinite alternate;
}

@keyframes uy-titel-gloed {
  0% { text-shadow: 0 0 20px rgba(0, 255, 204, 0.5); }
  100% { text-shadow: 0 0 30px rgba(255, 204, 0, 0.8); }
}

.uy-welkom p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.uy-welkom_highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.uy-welkom_highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--uy-transitie);
}

.uy-welkom_highlight:hover {
  transform: translateY(-5px);
  background: var(--uy-kleur-verloop-3);
}

.uy-welkom_highlight i {
  font-size: 1.5rem;
  color: var(--uy-kleur-accent-2);
}

.uy-welkom_cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--uy-kleur-verloop-1);
  color: white;
  text-decoration: none;
  border-radius: var(--uy-border-radius);
  font-weight: bold;
  transition: var(--uy-transitie);
  position: relative;
  overflow: hidden;
}

.uy-welkom_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--uy-kleur-verloop-2);
  transition: var(--uy-transitie);
  z-index: -1;
}

.uy-welkom_cta:hover::before {
  left: 0;
}

.uy-welkom_cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--uy-schaduw-groot);
}

.uy-overons {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.8);
}

.uy-overons_container {
  max-width: 1200px;
  margin: 0 auto;
}

.uy-overons h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--uy-kleur-verloop-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-overons_blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.uy-overons_block {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.uy-overons_block-image {
  flex-direction: row;
}

.uy-overons_block-text {
  flex-direction: row;
}

.uy-overons_media {
  flex: 1;
}

.uy-overons_media img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 400px;
  border-radius: var(--uy-border-radius);
  box-shadow: var(--uy-schaduw);
  transition: var(--uy-transitie);
}

.uy-overons_media img:hover {
  transform: scale(1.05);
}

.uy-overons_text {
  flex: 1;
}

.uy-overons_text h3 {
  font-family: 'Prata', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--uy-kleur-accent-2);
}

.uy-overons_text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.uy-overons_minicards {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.uy-overons_minicard {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius-klein);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--uy-transitie);
}

.uy-overons_minicard:hover {
  background: var(--uy-kleur-verloop-1);
  transform: translateY(-2px);
}

.uy-overons_minicard i {
  color: var(--uy-kleur-accent-3);
}

.uy-overons_link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  text-decoration: none;
  border-radius: var(--uy-border-radius-klein);
  font-weight: bold;
  transition: var(--uy-transitie);
}

.uy-overons_link:hover {
  transform: translateY(-2px);
  box-shadow: var(--uy-schaduw);
}

.uy-spellen {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.9);
}

.uy-spellen_container {
  max-width: 1200px;
  margin: 0 auto;
}

.uy-spellen h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--uy-kleur-verloop-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-spellen_grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.uy-spellen_card {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--uy-transitie);
}

.uy-spellen_card:hover {
  transform: translateY(-10px);
  box-shadow: var(--uy-schaduw-groot);
}

.uy-spellen_badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--uy-kleur-verloop-3);
  color: var(--uy-kleur-achtergrond);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.uy-spellen_image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.uy-spellen_image img {
  width: 100%;
  height: 100%;
  transition: var(--uy-transitie);
}

.uy-spellen_card:hover .uy-spellen_image img {
  transform: scale(1.1);
}

.uy-spellen_content {
  padding: 1.5rem;
}

.uy-spellen_content h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--uy-kleur-accent-2);
}

.uy-spellen_icons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.uy-spellen_icons i {
  font-size: 1.2rem;
  color: var(--uy-kleur-accent-3);
}

.uy-spellen_link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--uy-kleur-verloop-1);
  color: white;
  text-decoration: none;
  border-radius: var(--uy-border-radius-klein);
  font-weight: bold;
  transition: var(--uy-transitie);
  width: 100%;
  text-align: center;
}

.uy-spellen_link:hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
}

.uy-voordelen {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.8);
}

.uy-voordelen_container {
  max-width: 1200px;
  margin: 0 auto;
}

.uy-voordelen h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--uy-kleur-verloop-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-voordelen_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.uy-voordelen_card {
  flex: 1;
  min-width: 290px;
  max-width: 350px;
  background: var(--uy-kleur-licht);
  padding: 2rem;
  border-radius: var(--uy-border-radius);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--uy-transitie);
  position: relative;
  overflow: hidden;
}

.uy-voordelen_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--uy-kleur-verloop-1);
  transition: var(--uy-transitie);
  z-index: -1;
  opacity: 0.3;
}

.uy-voordelen_card:hover::before {
  left: 0;
}

.uy-voordelen_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--uy-schaduw);
}

.uy-voordelen_icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--uy-kleur-verloop-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-voordelen_card h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--uy-kleur-accent-2);
}

.uy-voordelen_card p {
  opacity: 0.9;
  line-height: 1.6;
}

.uy-inschrijven {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.9);
  position: relative;
  overflow: hidden;
}

.uy-inschrijven::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--uy-kleur-verloop-3);
  opacity: 0.1;
  z-index: -1;
}

.uy-inschrijven_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.uy-inschrijven_content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.uy-inschrijven h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--uy-kleur-verloop-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-inschrijven p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.uy-inschrijven_voordelen {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.uy-inschrijven_voordeel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius-klein);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uy-inschrijven_voordeel i {
  color: var(--uy-kleur-accent-2);
}

.uy-inschrijven_formulier {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.uy-inschrijven_form {
  background: var(--uy-kleur-licht);
  padding: 2rem;
  border-radius: var(--uy-border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uy-inschrijven_input-group {
  margin-bottom: 1.5rem;
}

.uy-inschrijven_input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--uy-border-radius-klein);
  color: var(--uy-kleur-tekst);
  font-size: 1rem;
  transition: var(--uy-transitie);
}

.uy-inschrijven_input:focus {
  outline: none;
  border-color: var(--uy-kleur-accent-1);
  box-shadow: 0 0 0 2px rgba(255, 0, 204, 0.3);
}

.uy-inschrijven_fout {
  color: #ff3366;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.uy-inschrijven_checkbox-group {
  margin-bottom: 2rem;
}

.uy-inschrijven_checkbox {
  margin-right: 0.5rem;
}

.uy-inschrijven_label {
  font-size: 0.9rem;
}

.uy-inschrijven_label a {
  color: var(--uy-kleur-accent-2);
  text-decoration: none;
}

.uy-inschrijven_knop {
  width: 100%;
  padding: 1rem;
  background: var(--uy-kleur-verloop-1);
  color: white;
  border: none;
  border-radius: var(--uy-border-radius-klein);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--uy-transitie);
}

.uy-inschrijven_knop:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.uy-inschrijven_knop:not(:disabled):hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  transform: translateY(-2px);
}

.uy-inschrijven_succes {
  background: var(--uy-kleur-licht);
  padding: 2rem;
  border-radius: var(--uy-border-radius);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.uy-inschrijven_succes i {
  font-size: 3rem;
  color: var(--uy-kleur-accent-2);
  margin-bottom: 1rem;
}

.uy-inschrijven_succes h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--uy-kleur-accent-2);
}

.uy-inschrijven_succes p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.uy-inschrijven_succes-knoppen {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.uy-inschrijven_primair, .uy-inschrijven_secundair {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--uy-border-radius-klein);
  font-weight: bold;
  cursor: pointer;
  transition: var(--uy-transitie);
}

.uy-inschrijven_primair {
  background: var(--uy-kleur-verloop-1);
  color: white;
}

.uy-inschrijven_secundair {
  background: transparent;
  color: var(--uy-kleur-tekst);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.uy-inschrijven_primair:hover, .uy-inschrijven_secundair:hover {
  transform: translateY(-2px);
}

.uy-inschrijven_animatie {
  text-align: center;
}

.uy-inschrijven_svg {
  display: inline-block;
  width: 100px;
  height: 100px;
  color: var(--uy-kleur-accent-1);
  animation: uy-drijven 3s ease-in-out infinite;
}

@keyframes uy-drijven {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.uy-faq {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.8);
}

.uy-faq_container {
  max-width: 1200px;
  margin: 0 auto;
}

.uy-faq h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--uy-kleur-verloop-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-faq_grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.uy-faq_categorie {
  flex: 1;
  min-width: 290px;
  max-width: 500px;
}

.uy-faq_categorie h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--uy-kleur-accent-2);
  text-align: center;
}

.uy-faq_items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.uy-faq_item {
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius-klein);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uy-faq_vraag {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--uy-transitie);
}

.uy-faq_vraag:hover {
  background: rgba(255, 255, 255, 0.05);
}

.uy-faq_vraag i {
  transition: var(--uy-transitie);
  color: var(--uy-kleur-accent-1);
}

.uy-faq_antwoord {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--uy-transitie);
}

.uy-faq_antwoord p {
  padding-bottom: 1.5rem;
}

.uy-faq_item.actief .uy-faq_antwoord {
  max-height: 200px;
}

.uy-faq_item.actief .uy-faq_vraag i {
  transform: rotate(180deg);
}

.uy-faq_cta {
  text-align: center;
  margin-top: 3rem;
}

.uy-faq_link {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  text-decoration: none;
  border-radius: var(--uy-border-radius);
  font-weight: bold;
  transition: var(--uy-transitie);
}

.uy-faq_link:hover {
  transform: translateY(-3px);
  box-shadow: var(--uy-schaduw);
}

.uy-recensies {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.9);
}

.uy-recensies_container {
  max-width: 1200px;
  margin: 0 auto;
}

.uy-recensies h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--uy-kleur-verloop-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-recensies_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.uy-recensies_card {
  flex: 1;
  min-width: 290px;
  max-width: 500px;
  background: var(--uy-kleur-licht);
  padding: 2rem;
  border-radius: var(--uy-border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--uy-transitie);
  position: relative;
  overflow: hidden;
}

.uy-recensies_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--uy-kleur-verloop-2);
}

.uy-recensies_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--uy-schaduw);
}

.uy-recensies_header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.uy-recensies_avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.uy-recensies_avatar img {
  width: 100%;
  height: 100%;
}

.uy-recensies_info {
  flex: 1;
}

.uy-recensies_naam {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--uy-kleur-accent-2);
}

.uy-recensies_locatie {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.uy-recensies_rating {
  display: flex;
  gap: 0.2rem;
}

.uy-recensies_rating i {
  color: var(--uy-kleur-accent-3);
  font-size: 0.9rem;
}

.uy-recensies_datum {
  font-size: 0.8rem;
  opacity: 0.6;
}

.uy-recensies_tekst {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.uy-recensies_tekst p {
  font-style: italic;
}

.uy-recensies_icoon {
  text-align: right;
}

.uy-recensies_icoon i {
  font-size: 1.5rem;
  color: var(--uy-kleur-accent-1);
}

.uy-verantwoord {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.8);
}

.uy-verantwoord_container {
  max-width: 1200px;
  margin: 0 auto;
}

.uy-verantwoord h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--uy-kleur-verloop-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-verantwoord_content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.uy-verantwoord_text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.uy-verantwoord_text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.uy-verantwoord_text a {
  color: var(--uy-kleur-accent-2);
  text-decoration: none;
}

.uy-verantwoord_link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--uy-kleur-verloop-3);
  color: var(--uy-kleur-achtergrond);
  text-decoration: none;
  border-radius: var(--uy-border-radius);
  font-weight: bold;
  transition: var(--uy-transitie);
}

.uy-verantwoord_link:hover {
  transform: translateY(-3px);
  box-shadow: var(--uy-schaduw);
}

.uy-verantwoord_partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.uy-verantwoord_partner {
  padding: 1rem;
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius-klein);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--uy-transitie);
}

.uy-verantwoord_partner:hover {
  transform: translateY(-5px);
  background: var(--uy-kleur-verloop-1);
}

.uy-verantwoord_partner img {
  display: block;
}

.uy-contact {
  padding: 6rem 2rem;
  background: rgba(10, 10, 26, 0.9);
  position: relative;
  overflow: hidden;
}

.uy-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--uy-kleur-verloop-1);
  opacity: 0.05;
  z-index: -1;
}

.uy-contact_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.uy-contact_formulier {
  flex: 1;
  min-width: 290px;
}

.uy-contact_formulier h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--uy-kleur-verloop-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-contact_form {
  background: var(--uy-kleur-licht);
  padding: 2rem;
  border-radius: var(--uy-border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uy-contact_input-group {
  margin-bottom: 1.5rem;
}

.uy-contact_input, .uy-contact_textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--uy-border-radius-klein);
  color: var(--uy-kleur-tekst);
  font-size: 1rem;
  transition: var(--uy-transitie);
  font-family: 'Mulish', sans-serif;
}

.uy-contact_textarea {
  min-height: 120px;
  resize: vertical;
}

.uy-contact_input:focus, .uy-contact_textarea:focus {
  outline: none;
  border-color: var(--uy-kleur-accent-1);
  box-shadow: 0 0 0 2px rgba(255, 0, 204, 0.3);
}

.uy-contact_fout {
  color: #ff3366;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.uy-contact_checkbox-group {
  margin-bottom: 2rem;
}

.uy-contact_checkbox {
  margin-right: 0.5rem;
}

.uy-contact_label {
  font-size: 0.9rem;
}

.uy-contact_label a {
  color: var(--uy-kleur-accent-2);
  text-decoration: none;
}

.uy-contact_knop {
  width: 100%;
  padding: 1rem;
  background: var(--uy-kleur-verloop-1);
  color: white;
  border: none;
  border-radius: var(--uy-border-radius-klein);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--uy-transitie);
}

.uy-contact_knop:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.uy-contact_knop:not(:disabled):hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  transform: translateY(-2px);
}

.uy-contact_succes {
  background: var(--uy-kleur-licht);
  padding: 2rem;
  border-radius: var(--uy-border-radius);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.uy-contact_succes i {
  font-size: 3rem;
  color: var(--uy-kleur-accent-2);
  margin-bottom: 1rem;
}

.uy-contact_succes h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--uy-kleur-accent-2);
}

.uy-contact_succes p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.uy-contact_primair {
  padding: 0.8rem 1.5rem;
  background: var(--uy-kleur-verloop-1);
  color: white;
  border: none;
  border-radius: var(--uy-border-radius-klein);
  font-weight: bold;
  cursor: pointer;
  transition: var(--uy-transitie);
}

.uy-contact_primair:hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  transform: translateY(-2px);
}

.uy-contact_info {
  flex: 1;
  min-width: 290px;
}

.uy-contact_info h3 {
  font-family: 'Prata', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--uy-kleur-accent-2);
}

.uy-contact_info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.uy-contact_details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 571px;
}

.uy-contact_detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius-klein);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uy-contact_detail i {
  font-size: 1.5rem;
  color: var(--uy-kleur-accent-1);
}

.uy-contact_detail div {
  display: flex;
  flex-direction: column;
}

.uy-contact_detail span:first-child {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.uy-contact_detail a {
  color: var(--uy-kleur-accent-2);
  text-decoration: none;
}

.uy-contact_animatie {
  flex: 0 0 100%;
  text-align: center;
}

.uy-contact_svg {
  display: inline-block;
  width: 100px;
  height: 100px;
  color: var(--uy-kleur-accent-1);
  animation: uy-draaien 4s linear infinite;
}

@keyframes uy-draaien {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.uy-contact_extra {
  flex: 0 0 100%;
}

.uy-contact_extra h4 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--uy-kleur-accent-3);
}

.uy-contact_snel {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.uy-contact_snel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--uy-kleur-licht);
  border-radius: var(--uy-border-radius-klein);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--uy-transitie);
}

.uy-contact_snel-item:hover {
  background: var(--uy-kleur-verloop-1);
  transform: translateY(-3px);
}

.uy-contact_snel-item i {
  color: var(--uy-kleur-accent-2);
}

.uy-footer {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--uy-kleur-licht);
}

.uy-footer_container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.uy-footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.uy-footer_brand {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  background: var(--uy-kleur-verloop-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uy-footer_links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.uy-footer_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--uy-kleur-tekst);
  transition: var(--uy-transitie);
  padding: 0.5rem 1rem;
  border-radius: var(--uy-border-radius-klein);
}

.uy-footer_link:hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
}

.uy-footer_bottom {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--uy-kleur-licht);
  flex-wrap: wrap;
  gap: 1rem;
}

.uy-footer_copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

.uy-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--uy-kleur-donker);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  z-index: 2000;
  display: none;
}

.uy-cookies_content {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.uy-cookies_content p {
  flex: 1;
  margin: 0;
}

.uy-cookies_content a {
  color: var(--uy-kleur-accent-2);
  text-decoration: none;
}

.uy-cookies_knop {
  padding: 0.8rem 1.5rem;
  background: var(--uy-kleur-verloop-1);
  color: white;
  border: none;
  border-radius: var(--uy-border-radius-klein);
  font-weight: bold;
  cursor: pointer;
  transition: var(--uy-transitie);
  flex-shrink: 0;
}

.uy-cookies_knop:hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  transform: translateY(-2px);
}

.uy-leeftijd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 2rem;
  overflow-y: auto;
}

.uy-leeftijd_content {
  background: var(--uy-kleur-achtergrond);
  padding: 3rem;
  border-radius: var(--uy-border-radius);
  text-align: center;
  max-width: 500px;
  width: 100%;
  border: 2px solid var(--uy-kleur-accent-1);
  box-shadow: var(--uy-schaduw-groot);
  overflow-y: auto;
  max-height: 90vh;
}

.uy-leeftijd_content h2 {
  font-family: 'Prata', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--uy-kleur-accent-2);
}

.uy-leeftijd_content p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.uy-leeftijd_knoppen {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.uy-leeftijd_ja, .uy-leeftijd_nee {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--uy-border-radius-klein);
  font-weight: bold;
  cursor: pointer;
  transition: var(--uy-transitie);
  min-width: 150px;
}

.uy-leeftijd_ja {
  background: var(--uy-kleur-verloop-1);
  color: white;
}

.uy-leeftijd_nee {
  background: transparent;
  color: var(--uy-kleur-tekst);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.uy-leeftijd_ja:hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  transform: translateY(-2px);
}

.uy-leeftijd_nee:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.uy-scrolltop {
  position: fixed;
  bottom: 10rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: var(--uy-kleur-verloop-1);
  color: white;
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--uy-transitie);
  z-index: 1007;
  opacity: 0;
  visibility: hidden;
}

.uy-scrolltop.zichtbaar {
  opacity: 1;
  visibility: visible;
}

.uy-scrolltop:hover {
  background: var(--uy-kleur-verloop-2);
  color: var(--uy-kleur-achtergrond);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .uy-navigator_menu {
    gap: 1rem;
  }
  
  .uy-welkom h1 {
    font-size: 3rem;
  }
  
  .uy-overons_block {
    flex-direction: column;
    gap: 2rem;
  }
  
  .uy-spellen_grid {
    gap: 1.5rem;
  }
  
  .uy-faq_grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .uy-navigator_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--uy-kleur-licht);
  }
  
  .uy-navigator_menu.actief {
    display: flex;
  }
  
  .uy-navigator_toggle {
    display: block;
  }
  
  .uy-navigator_inner {
    padding: 1rem;
    flex-direction: row-reverse;
  }
  
  .uy-content {
    padding: 1rem 0.5rem;
  }
  
  .uy-welkom, .uy-overons, .uy-spellen, .uy-voordelen, .uy-inschrijven, .uy-faq, .uy-recensies, .uy-verantwoord, .uy-contact {
    padding: 4rem 1rem;
  }
  
  .uy-welkom h1 {
    font-size: 2.5rem;
  }
  
  .uy-welkom_highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .uy-overons_blocks {
    gap: 3rem;
  }
  
  .uy-spellen_grid {
    flex-direction: column;
    align-items: center;
  }
  
  .uy-spellen_card {
    max-width: 400px;
    width: 100%;
  }
  
  .uy-voordelen_grid {
    flex-direction: column;
    align-items: center;
  }
  
  .uy-voordelen_card {
    max-width: 400px;
    width: 100%;
  }
  
  .uy-faq_grid {
    flex-direction: column;
  }
  
  .uy-faq_categorie {
    max-width: 100%;
  }
  
  .uy-recensies_grid {
    flex-direction: column;
    align-items: center;
  }
  
  .uy-recensies_card {
    max-width: 400px;
    width: 100%;
  }
  
  .uy-verantwoord_partners {
    flex-direction: column;
  }
  
  .uy-contact_container {
    flex-direction: column;
  }

  .uy-contact_detail {
    padding: 1rem 0.3rem;
  }

  .uy-contact_detail a {
    font-size: 1rem;
  }
  
  .uy-footer_top {
    flex-direction: column;
    text-align: center;
  }
  
  .uy-footer_links {
    justify-content: center;
  }
  
  .uy-footer_bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .uy-cookies_content {
    flex-direction: column;
    text-align: center;
  }
  
  .uy-leeftijd_content {
    padding: 2rem;
  }
  
  .uy-leeftijd_knoppen {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .uy-navigator_inner {
    padding: 0.8rem;
  }
  
  .uy-content {
    padding: 0.3rem;
  }
  
  .uy-welkom, .uy-overons, .uy-spellen, .uy-voordelen, .uy-inschrijven, .uy-faq, .uy-recensies, .uy-verantwoord, .uy-contact {
    padding: 3rem 0.5rem;
  }
  
  .uy-welkom h1 {
    font-size: 2rem;
  }
  
  .uy-welkom p {
    font-size: 1rem;
  }
  
  .uy-overons_text h3 {
    font-size: 1.5rem;
  }
  
  .uy-overons_minicards {
    flex-direction: column;
  }
  
  .uy-spellen_card {
    min-width: 100%;
  }
  
  .uy-voordelen_card {
    min-width: 100%;
  }
  
  .uy-faq_categorie {
    min-width: 100%;
  }
  
  .uy-recensies_card {
    min-width: 100%;
  }
  
  .uy-contact_form {
    padding: 1.5rem;
  }
  
  .uy-footer_container {
    padding: 2rem 1rem 1rem;
  }
  
  .uy-cookies {
    padding: 1rem;
  }
  
  .uy-leeftijd {
    padding: 1rem;
  }
}

@media (max-width: 320px) {
  .uy-content {
    padding: 0.2rem;
  }
  
  .uy-welkom, .uy-overons, .uy-spellen, .uy-voordelen, .uy-inschrijven, .uy-faq, .uy-recensies, .uy-verantwoord, .uy-contact {
    padding: 2rem 0.3rem;
  }
  
  .uy-welkom h1 {
    font-size: 1.8rem;
  }
  
  .uy-footer_container {
    padding: 1.5rem 0.5rem 0.5rem;
  }
}

.uypg-notfound_main {
  padding-top: 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #2a1a3a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uypg-notfound_hero {
  width: 100%;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.uypg-notfound_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
  animation: uypg-notfound-pulse 8s ease-in-out infinite;
}

@keyframes uypg-notfound-pulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.uypg-notfound_container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.uypg-notfound_content {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem 3rem;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.uypg-notfound_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff00cc, #00ffcc, #ffcc00);
  background-size: 200% 200%;
  animation: uypg-notfound-gradient 3s ease infinite;
}

@keyframes uypg-notfound-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.uypg-notfound_icon {
  font-size: 6rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-notfound-icon 3s ease-in-out infinite;
}

@keyframes uypg-notfound-icon {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 20px rgba(255, 0, 204, 0.5));
  }
  25% { 
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(0, 255, 204, 0.6));
  }
  50% { 
    transform: scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.7));
  }
  75% { 
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 25px rgba(255, 0, 204, 0.6));
  }
}

.uypg-notfound_content h1 {
  font-family: 'Prata', serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-notfound-title 4s ease-in-out infinite;
}

@keyframes uypg-notfound-title {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(255, 0, 204, 0.4);
  }
  33% { 
    text-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
  }
  66% { 
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
  }
}

.uypg-notfound_message {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.uypg-notfound_animation {
  position: relative;
  height: 200px;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uypg-notfound_orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  animation: uypg-notfound-orb 4s ease-in-out infinite;
}

.uypg-notfound_orb-1 {
  width: 100px;
  height: 100px;
  opacity: 0.3;
  animation-delay: 0s;
}

.uypg-notfound_orb-2 {
  width: 150px;
  height: 150px;
  opacity: 0.2;
  animation-delay: 1s;
}

.uypg-notfound_orb-3 {
  width: 200px;
  height: 200px;
  opacity: 0.1;
  animation-delay: 2s;
}

@keyframes uypg-notfound-orb {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    filter: blur(10px);
  }
  50% { 
    transform: scale(1.2) rotate(180deg);
    filter: blur(15px);
  }
}

.uypg-notfound_character {
  position: relative;
  z-index: 3;
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-notfound-character 3s ease-in-out infinite;
}

@keyframes uypg-notfound-character {
  0%, 100% { 
    transform: translateY(0) scale(1);
  }
  25% { 
    transform: translateY(-10px) scale(1.05);
  }
  50% { 
    transform: translateY(0) scale(1);
  }
  75% { 
    transform: translateY(-5px) scale(1.02);
  }
}

.uypg-notfound_stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.uypg-notfound_stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.uypg-notfound_stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 204, 0.2);
}

.uypg-notfound_stat i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-notfound_stat span {
  font-weight: 600;
  font-size: 0.95rem;
}

.uypg-notfound_actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.uypg-notfound_button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.uypg-notfound_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.uypg-notfound_button:hover::before {
  left: 100%;
}

.uypg-notfound_primary {
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  color: #0a0a1a;
}

.uypg-notfound_primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 0, 204, 0.4);
}

.uypg-notfound_secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.uypg-notfound_secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 255, 204, 0.3);
}

.uypg-notfound_help {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.uypg-notfound_help-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.uypg-notfound_help-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 0, 204, 0.2);
}

.uypg-notfound_help-item i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.uypg-notfound_help-item div {
  flex: 1;
  text-align: left;
}

.uypg-notfound_help-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ffcc;
}

.uypg-notfound_help-item p {
  margin: 0 0 0.8rem 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.uypg-notfound_help-item a {
  color: #ff00cc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.uypg-notfound_help-item a:hover {
  color: #00ffcc;
}

.uypg-notfound_help-item span {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.uypg-notfound_features {
  margin: 4rem 0 3rem;
}

.uypg-notfound_features h2 {
  font-family: 'Prata', serif;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-notfound_features-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.uypg-notfound_feature {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.uypg-notfound_feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 255, 204, 0.2);
}

.uypg-notfound_feature i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.uypg-notfound_feature h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-notfound_feature p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.uypg-notfound_search {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-notfound_search h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffcc00;
}

.uypg-notfound_search-box {
  display: flex;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.uypg-notfound_search-box:focus-within {
  border-color: #ff00cc;
  box-shadow: 0 0 0 2px rgba(255, 0, 204, 0.3);
  transform: translateY(-2px);
}

.uypg-notfound_search-input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  outline: none;
}

.uypg-notfound_search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.uypg-notfound_search-button {
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  border: none;
  color: #0a0a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.uypg-notfound_search-button:hover {
  background: linear-gradient(135deg, #00ffcc, #ff00cc);
  transform: scale(1.05);
}

.uypg-notfound_search-suggestions {
  font-size: 0.9rem;
  opacity: 0.7;
}

.uypg-notfound_search-suggestions span {
  color: #ff00cc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.uypg-notfound_search-suggestions span:hover {
  color: #00ffcc;
}

@media (max-width: 768px) {
  .uypg-notfound_hero {
    padding: 2rem 1rem;
  }
  
  .uypg-notfound_content {
    padding: 3rem 2rem;
  }
  
  .uypg-notfound_content h1 {
    font-size: 3rem;
  }
  
  .uypg-notfound_message {
    font-size: 1.1rem;
  }
  
  .uypg-notfound_animation {
    height: 150px;
  }
  
  .uypg-notfound_orb-1 {
    width: 80px;
    height: 80px;
  }
  
  .uypg-notfound_orb-2 {
    width: 120px;
    height: 120px;
  }
  
  .uypg-notfound_orb-3 {
    width: 160px;
    height: 160px;
  }
  
  .uypg-notfound_actions {
    flex-direction: column;
    align-items: center;
  }
  
  .uypg-notfound_button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .uypg-notfound_help {
    flex-direction: column;
  }
  
  .uypg-notfound_help-item {
    min-width: 100%;
    padding:  2rem 0.5rem;
  }
  
  .uypg-notfound_features-grid {
    flex-direction: column;
  }
  
  .uypg-notfound_feature {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .uypg-notfound_hero {
    padding: 1rem 0.5rem;
  }
  
  .uypg-notfound_content {
    padding: 2rem 1rem;
  }
  
  .uypg-notfound_content h1 {
    font-size: 2.5rem;
  }
  
  .uypg-notfound_icon {
    font-size: 4rem;
  }
  
  .uypg-notfound_stats {
    flex-direction: column;
    align-items: center;
  }
  
  .uypg-notfound_stat {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .uypg-notfound_help-item {
    flex-direction: column;
    text-align: center;
  }
  
  .uypg-notfound_help-item div {
    text-align: center;
  }
}

.uypg-responsible_main {
  padding-top: 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a2a1a 100%);
  min-height: 100vh;
}

.uypg-responsible_hero {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2) 0%, rgba(255, 204, 0, 0.15) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.uypg-responsible_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 255, 204, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 204, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: uypg-responsible-shift 10s ease-in-out infinite alternate;
}

@keyframes uypg-responsible-shift {
  0% { 
    background-position: 10% 20%, 90% 80%, 50% 50%;
  }
  100% { 
    background-position: 20% 10%, 80% 90%, 60% 60%;
  }
}

.uypg-responsible_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.uypg-responsible_header {
  text-align: center;
}

.uypg-responsible_header h1 {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-responsible-glow 4s ease-in-out infinite;
}

@keyframes uypg-responsible-glow {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
  }
  50% { 
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.6),
                 0 0 40px rgba(0, 255, 204, 0.3);
  }
}

.uypg-responsible_subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.uypg-responsible_icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 4rem;
}

.uypg-responsible_icons i {
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-responsible-bounce 2s ease-in-out infinite;
}

.uypg-responsible_icons i:nth-child(2) {
  animation-delay: 0.3s;
}

.uypg-responsible_icons i:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes uypg-responsible-bounce {
  0%, 100% { 
    transform: translateY(0) scale(1);
  }
  50% { 
    transform: translateY(-15px) scale(1.1);
  }
}

.uypg-responsible_content {
  padding: 4rem 2rem;
}

.uypg-responsible_intro {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-responsible_intro-content {
  flex: 1;
}

.uypg-responsible_intro-content h2 {
  font-family: 'Prata', serif;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  color: #00ffcc;
}

.uypg-responsible_intro-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.uypg-responsible_stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.uypg-responsible_stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  flex: 1;
  min-width: 180px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-responsible_stat:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-5px);
}

.uypg-responsible_stat i {
  font-size: 2.5rem;
  color: #ffcc00;
}

.uypg-responsible_stat-number {
  display: block;
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 0.3rem;
}

.uypg-responsible_stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.uypg-responsible_intro-image {
  flex: 1;
  text-align: center;
}

.uypg-responsible_intro-image img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 400px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 255, 204, 0.2);
  transition: all 0.4s ease;
}

.uypg-responsible_intro-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

.uypg-responsible_sections {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.uypg-responsible_section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 3.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.uypg-responsible_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.uypg-responsible_section:hover::before {
  transform: scaleX(1);
}

.uypg-responsible_section:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 255, 204, 0.25);
}

.uypg-responsible_section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.uypg-responsible_section-header i {
  font-size: 3.2rem;
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-responsible_section-header h2 {
  font-family: 'Prata', serif;
  font-size: 2.4rem;
  color: #ffcc00;
  margin: 0;
}

.uypg-responsible_section-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.uypg-responsible_behaviors {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-responsible_behavior {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.uypg-responsible_behavior::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 255, 204, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.uypg-responsible_behavior:hover::before {
  left: 100%;
}

.uypg-responsible_behavior:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 255, 204, 0.2);
}

.uypg-responsible_behavior-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.uypg-responsible_behavior-icon i {
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-responsible_behavior h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-responsible_behavior p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-responsible_features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.uypg-responsible_feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.uypg-responsible_feature:hover {
  border-left-color: #00ffcc;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-responsible_feature i {
  font-size: 3rem;
  color: #ffcc00;
  flex-shrink: 0;
}

.uypg-responsible_feature-content {
  flex: 1;
}

.uypg-responsible_feature-content h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #00ffcc;
}

.uypg-responsible_feature-content p {
  margin: 0 0 0.5rem 0;
  opacity: 0.8;
}

.uypg-responsible_feature-content span {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.uypg-responsible_faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.uypg-responsible_faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.uypg-responsible_faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.uypg-responsible_faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uypg-responsible_faq-question:hover {
  background: rgba(0, 255, 204, 0.1);
}

.uypg-responsible_faq-question h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin: 0;
  color: #ffcc00;
}

.uypg-responsible_faq-question i {
  font-size: 1.5rem;
  color: #00ffcc;
  transition: transform 0.3s ease;
}

.uypg-responsible_faq-item.active .uypg-responsible_faq-question i {
  transform: rotate(45deg);
}

.uypg-responsible_faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.uypg-responsible_faq-item.active .uypg-responsible_faq-answer {
  padding: 0 2rem 2rem;
  max-height: 315px;
}

.uypg-responsible_faq-answer p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-responsible_partners {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-responsible_partner {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.uypg-responsible_partner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
}

.uypg-responsible_partner:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 255, 204, 0.2);
}

.uypg-responsible_partner-logo {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.uypg-responsible_partner-logo i {
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-responsible_partner h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-responsible_partner p {
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-responsible_partner-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  color: #0a0a1a;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.uypg-responsible_partner-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 255, 204, 0.3);
}

.uypg-responsible_resources {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-responsible_resource {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-responsible_resource:hover {
  transform: translateY(-5px);
  background: rgba(255, 204, 0, 0.1);
}

.uypg-responsible_resource i {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 1.5rem;
}

.uypg-responsible_resource h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-responsible_resource p {
  margin-bottom: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-responsible_resource span {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.uypg-responsible_parental {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.uypg-responsible_parental-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.uypg-responsible_parental-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-responsible_parental-item i {
  font-size: 2.5rem;
  color: #ffcc00;
  flex-shrink: 0;
}

.uypg-responsible_parental-item div {
  flex: 1;
}

.uypg-responsible_parental-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ffcc;
}

.uypg-responsible_parental-item p {
  margin: 0;
  opacity: 0.8;
}

.uypg-responsible_age-warning {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 4px solid #ff0000;
}

.uypg-responsible_age-warning i {
  font-size: 2.5rem;
  color: #ff0000;
  flex-shrink: 0;
}

.uypg-responsible_age-warning p {
  margin: 0;
  font-weight: 600;
  line-height: 1.6;
}

.uypg-responsible_support {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-responsible_support-option {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-responsible_support-option:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.uypg-responsible_support-option i {
  font-size: 2.5rem;
  color: #00ffcc;
  flex-shrink: 0;
}

.uypg-responsible_support-option div {
  flex: 1;
}

.uypg-responsible_support-option h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #ffcc00;
}

.uypg-responsible_support-option p {
  margin: 0 0 1rem 0;
  opacity: 0.8;
}

.uypg-responsible_support-link {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.uypg-responsible_support-link:hover {
  color: #ffcc00;
}

.uypg-responsible_support-option span {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.uypg-responsible_emergency {
  background: rgba(255, 0, 0, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  margin-top: 3rem;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.uypg-responsible_emergency h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff0000;
}

.uypg-responsible_emergency p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.uypg-responsible_emergency-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.uypg-responsible_emergency-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 0, 0, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.uypg-responsible_emergency-link:hover {
  background: rgba(255, 0, 0, 0.3);
  transform: translateY(-3px);
}

.uypg-responsible_improvements {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-responsible_improvement {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-responsible_improvement:hover {
  transform: translateY(-5px);
  background: rgba(0, 255, 204, 0.1);
}

.uypg-responsible_improvement i {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 1.5rem;
}

.uypg-responsible_improvement h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-responsible_improvement p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.uypg-responsible_commitment {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 204, 0, 0.1));
  border-radius: 20px;
  margin-top: 3rem;
  border: 2px solid rgba(0, 255, 204, 0.3);
}

.uypg-responsible_commitment i {
  font-size: 4rem;
  background: linear-gradient(135deg, #00ffcc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.uypg-responsible_commitment p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 1024px) {
  .uypg-responsible_intro {
    flex-direction: column;
    text-align: center;
  }
  
  .uypg-responsible_stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .uypg-responsible_hero {
    padding: 3rem 1rem;
  }
  
  .uypg-responsible_header h1 {
    font-size: 2.5rem;
  }
  
  .uypg-responsible_content {
    padding: 2rem 1rem;
  }
  
  .uypg-responsible_intro {
    padding: 2rem 1.5rem;
  }
  
  .uypg-responsible_section {
    padding: 2.5rem 1.5rem;
  }
  
  .uypg-responsible_section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .uypg-responsible_section-header h2 {
    font-size: 2rem;
  }
  
  .uypg-responsible_behaviors,
  .uypg-responsible_partners,
  .uypg-responsible_resources,
  .uypg-responsible_improvements {
    flex-direction: column;
  }
  
  .uypg-responsible_behavior,
  .uypg-responsible_partner,
  .uypg-responsible_resource,
  .uypg-responsible_improvement {
    min-width: 100%;
  }
  
  .uypg-responsible_support {
    flex-direction: column;
  }
  
  .uypg-responsible_support-option {
    min-width: 100%;
    flex-direction: column;
    padding: 2.5rem 0.5rem;
  }
  
  .uypg-responsible_commitment {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .uypg-responsible_hero {
    padding: 2rem 0.5rem;
  }
  
  .uypg-responsible_header h1 {
    font-size: 2rem;
  }
  
  .uypg-responsible_subtitle {
    font-size: 1.1rem;
  }
  
  .uypg-responsible_content {
    padding: 1rem 0.5rem;
  }
  
  .uypg-responsible_intro {
    padding: 1.5rem 1rem;
  }
  
  .uypg-responsible_section {
    padding: 2rem 1rem;
  }
  
  .uypg-responsible_section-header h2 {
    font-size: 1.7rem;
  }
  
  .uypg-responsible_feature,
  .uypg-responsible_parental-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .uypg-responsible_age-warning {
    flex-direction: column;
    text-align: center;
  }
}

.uypg-cookies_main {
  padding-top: 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #2a1a2a 100%);
  min-height: 100vh;
}

.uypg-cookies_hero {
  background: linear-gradient(135deg, rgba(255, 0, 204, 0.15) 0%, rgba(0, 255, 204, 0.1) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.uypg-cookies_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 0, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
  animation: uypg-cookies-pulse 8s ease-in-out infinite;
}

@keyframes uypg-cookies-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.uypg-cookies_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.uypg-cookies_header h1 {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-cookies-shimmer 3s ease-in-out infinite;
}

@keyframes uypg-cookies-shimmer {
  0%, 100% { 
    filter: drop-shadow(0 0 10px rgba(255, 0, 204, 0.3));
  }
  50% { 
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.5));
  }
}

.uypg-cookies_intro {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.uypg-cookies_icon {
  font-size: 4.5rem;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-cookies-rotate 6s linear infinite;
}

@keyframes uypg-cookies-rotate {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.uypg-cookies_content {
  padding: 3rem 2rem;
}

.uypg-cookies_info {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.uypg-cookies_info-item {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.uypg-cookies_info-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 0, 204, 0.1);
  box-shadow: 0 15px 40px rgba(255, 0, 204, 0.2);
}

.uypg-cookies_info-item i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.uypg-cookies_info-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #ffcc00;
}

.uypg-cookies_info-item p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

.uypg-cookies_sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.uypg-cookies_section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.uypg-cookies_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 0, 204, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.uypg-cookies_section:hover::before {
  left: 100%;
}

.uypg-cookies_section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 0, 204, 0.25);
}

.uypg-cookies_section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.uypg-cookies_section-header i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-cookies_section-header h2 {
  font-family: 'Prata', serif;
  font-size: 2.2rem;
  color: #ffcc00;
  margin: 0;
}

.uypg-cookies_section-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.uypg-cookies_types {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-cookies_type {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.uypg-cookies_type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
}

.uypg-cookies_type:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(255, 0, 204, 0.2);
}

.uypg-cookies_type-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.uypg-cookies_type-icon i {
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-cookies_type h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.uypg-cookies_type p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-cookies_type-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.uypg-cookies_type-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-cookies_type-list li:last-child {
  border-bottom: none;
}

.uypg-cookies_type-list li i {
  color: #ff00cc;
  font-size: 1.1rem;
}

.uypg-cookies_data {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.uypg-cookies_data-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.uypg-cookies_data-item:hover {
  border-left-color: #ff00cc;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-cookies_data-item i {
  font-size: 2.5rem;
  color: #ff00cc;
  flex-shrink: 0;
}

.uypg-cookies_data-item div {
  flex: 1;
}

.uypg-cookies_data-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffcc00;
}

.uypg-cookies_data-item p {
  margin: 0;
  opacity: 0.8;
}

.uypg-cookies_security {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-cookies_security-feature {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-cookies_security-feature:hover {
  transform: translateY(-5px);
  background: rgba(0, 255, 204, 0.1);
}

.uypg-cookies_security-feature i {
  font-size: 2.5rem;
  color: #00ffcc;
  margin-bottom: 1.5rem;
}

.uypg-cookies_security-feature h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-cookies_security-feature p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.uypg-cookies_durations {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-cookies_duration {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.uypg-cookies_duration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
}

.uypg-cookies_duration:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.uypg-cookies_duration-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.uypg-cookies_duration-header i {
  font-size: 2.5rem;
  color: #ff00cc;
}

.uypg-cookies_duration-header h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  color: #ffcc00;
  margin: 0;
}

.uypg-cookies_duration p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-cookies_duration-time {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
  color: #0a0a1a;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.uypg-cookies_thirdparty {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.uypg-cookies_thirdparty-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.uypg-cookies_thirdparty-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-cookies_thirdparty-item i {
  font-size: 2.5rem;
  color: #ff00cc;
  flex-shrink: 0;
}

.uypg-cookies_thirdparty-item div {
  flex: 1;
}

.uypg-cookies_thirdparty-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffcc00;
}

.uypg-cookies_thirdparty-item p {
  margin: 0 0 0.5rem 0;
  opacity: 0.8;
}

.uypg-cookies_thirdparty-item span {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.uypg-cookies_controls {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-cookies_control {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-cookies_control:hover {
  transform: translateY(-5px);
  background: rgba(255, 0, 204, 0.1);
}

.uypg-cookies_control i {
  font-size: 2.5rem;
  color: #ff00cc;
  margin-bottom: 1.5rem;
}

.uypg-cookies_control h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.uypg-cookies_control p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-cookies_control ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.uypg-cookies_control ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.uypg-cookies_control ul li:before {
  content: '•';
  color: #ff00cc;
  position: absolute;
  left: 0;
}

.uypg-cookies_control ul li:last-child {
  border-bottom: none;
}

.uypg-cookies_note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 0, 204, 0.1);
  border-radius: 10px;
  margin-top: 2rem;
  border-left: 4px solid #ff00cc;
}

.uypg-cookies_note i {
  font-size: 1.5rem;
  color: #ff00cc;
  flex-shrink: 0;
}

.uypg-cookies_note p {
  margin: 0;
  font-weight: 600;
}

.uypg-cookies_contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-cookies_contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.uypg-cookies_contact-info:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-cookies_contact-info i {
  font-size: 2.5rem;
  color: #3a0630;
  flex-shrink: 0;
}

.uypg-cookies_contact-info div {
  flex: 1;
}

.uypg-cookies_contact-info h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #ffcc00;
}

.uypg-cookies_contact-info p {
  margin: 0 0 1rem 0;
  opacity: 0.8;
}

.uypg-cookies_email {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #ff00cc, #ffcc00);
  color: #0a0a1a;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.uypg-cookies_email:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 204, 0.3);
}

.uypg-cookies_contact-info span {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.uypg-cookies_closing {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-cookies_closing p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .uypg-cookies_hero {
    padding: 3rem 1rem;
  }
  
  .uypg-cookies_header h1 {
    font-size: 2.3rem;
  }
  
  .uypg-cookies_content {
    padding: 2rem 1rem;
  }
  
  .uypg-cookies_info {
    flex-direction: column;
  }
  
  .uypg-cookies_info-item {
    min-width: 100%;
  }
  
  .uypg-cookies_section {
    padding: 2rem 1.5rem;
  }
  
  .uypg-cookies_section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .uypg-cookies_section-header h2 {
    font-size: 1.8rem;
  }
  
  .uypg-cookies_types,
  .uypg-cookies_security,
  .uypg-cookies_durations,
  .uypg-cookies_controls,
  .uypg-cookies_contact {
    flex-direction: column;
  }
  
  .uypg-cookies_type,
  .uypg-cookies_security-feature,
  .uypg-cookies_duration,
  .uypg-cookies_control,
  .uypg-cookies_contact-info {
    min-width: 100%;
  }
  
  .uypg-cookies_data-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .uypg-cookies_hero {
    padding: 2rem 0.5rem;
  }
  
  .uypg-cookies_header h1 {
    font-size: 1.9rem;
  }
  
  .uypg-cookies_intro {
    font-size: 1.1rem;
  }
  
  .uypg-cookies_content {
    padding: 1rem 0.5rem;
  }
  
  .uypg-cookies_section {
    padding: 1.5rem 1rem;
  }

  .uypg-cookies_section,
  .uypg-cookies_contact-info,
  .uypg-cookies_email {
    flex-wrap: wrap;
    padding: 2.5rem 0.5rem;
  }

  .uypg-cookies_email {
    font-size: 18px;
  }
  
  .uypg-cookies_section-header h2 {
    font-size: 1.6rem;
  }
  
  .uypg-cookies_info-item,
  .uypg-cookies_thirdparty-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.uypg-terms_main {
  padding-top: 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
  min-height: 100vh;
}

.uypg-terms_hero {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(255, 0, 204, 0.1) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.uypg-terms_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ffcc' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: uypg-terms-float 25s infinite linear;
}

@keyframes uypg-terms-float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-100px, -100px) rotate(360deg); }
}

.uypg-terms_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.uypg-terms_header {
  text-align: center;
}

.uypg-terms_header h1 {
  font-family: 'Prata', serif;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00ffcc, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-terms-pulse 4s ease-in-out infinite;
}

@keyframes uypg-terms-pulse {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.4),
                 0 0 40px rgba(255, 0, 204, 0.2);
  }
  50% { 
    text-shadow: 0 0 30px rgba(255, 0, 204, 0.6),
                 0 0 60px rgba(0, 255, 204, 0.3);
  }
}

.uypg-terms_subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.uypg-terms_decorative {
  font-size: 5rem;
  background: linear-gradient(135deg, #00ffcc, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-terms-rotate 8s linear infinite;
}

@keyframes uypg-terms-rotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.uypg-terms_content {
  padding: 3rem 2rem;
}

.uypg-terms_navigation {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 120px;
  border: 2px solid transparent;
}

.uypg-terms_nav-item:hover {
  background: rgba(255, 0, 204, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 0, 204, 0.3);
}

.uypg-terms_nav-item.active {
  background: linear-gradient(135deg, rgba(255, 0, 204, 0.2), rgba(0, 255, 204, 0.2));
  border-color: #ff00cc;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 204, 0.3);
}

.uypg-terms_nav-item i {
  font-size: 2rem;
  background: linear-gradient(135deg, #00ffcc, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-terms_nav-item span {
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}

.uypg-terms_sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.uypg-terms_section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  display: none;
}

.uypg-terms_section.active {
  display: block;
  animation: uypg-terms-fadeIn 0.6s ease-out;
}

@keyframes uypg-terms-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.uypg-terms_section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_section-header i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-terms_section-header h2 {
  font-family: 'Prata', serif;
  font-size: 2.3rem;
  color: #00ffcc;
  margin: 0;
}

.uypg-terms_section-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.uypg-terms_points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.uypg-terms_point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.uypg-terms_point:hover {
  border-left-color: #ff00cc;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-terms_point i {
  font-size: 2rem;
  color: #00ffcc;
  margin-top: 0.5rem;
}

.uypg-terms_point div {
  flex: 1;
}

.uypg-terms_point h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #00ffcc;
}

.uypg-terms_point p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

.uypg-terms_cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-terms_card {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_card:hover {
  transform: translateY(-8px);
  background: rgba(255, 0, 204, 0.1);
  box-shadow: 0 15px 35px rgba(255, 0, 204, 0.2);
}

.uypg-terms_card i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.uypg-terms_card h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-terms_card p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.uypg-terms_rules {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.uypg-terms_rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_rule:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-3px);
}

.uypg-terms_rule i {
  font-size: 1.5rem;
  color: #ff00cc;
}

.uypg-terms_note {
  font-style: italic;
  background: rgba(255, 0, 204, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #ff00cc;
  margin-top: 2rem;
}

.uypg-terms_protection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.uypg-terms_protection-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.uypg-terms_protection-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-terms_protection-item i {
  font-size: 2.5rem;
  color: #ff00cc;
}

.uypg-terms_protection-item div {
  flex: 1;
}

.uypg-terms_protection-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ffcc;
}

.uypg-terms_protection-item p {
  margin: 0;
  opacity: 0.8;
}

.uypg-terms_liability {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-terms_liability-item {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_liability-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 0, 204, 0.1);
}

.uypg-terms_liability-item i {
  font-size: 2.5rem;
  color: #ff00cc;
  margin-bottom: 1.5rem;
}

.uypg-terms_liability-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-terms_liability-item p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.uypg-terms_changes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.uypg-terms_change {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.uypg-terms_change:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.uypg-terms_change i {
  font-size: 2.5rem;
  color: #00ffcc;
}

.uypg-terms_change div {
  flex: 1;
}

.uypg-terms_change h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ffcc;
}

.uypg-terms_change p {
  margin: 0;
  opacity: 0.8;
}

.uypg-terms_legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-terms_legal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_legal-item:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-3px);
}

.uypg-terms_legal-item i {
  font-size: 1.5rem;
  color: #ff00cc;
}

.uypg-terms_contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-terms_contact-method {
  flex: 1;
  min-width: 290px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_contact-method:hover {
  transform: translateY(-5px);
  background: rgba(255, 0, 204, 0.1);
}

.uypg-terms_contact-method i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.uypg-terms_contact-method h3 {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-terms_contact-method a {
  color: #ff00cc;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.uypg-terms_contact-method p {
  margin: 0.5rem 0;
  opacity: 0.8;
}

.uypg-terms_contact-method span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.uypg-terms_closing {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.uypg-terms_closing-item {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-terms_closing-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 255, 204, 0.1);
}

.uypg-terms_closing-item i {
  font-size: 2.5rem;
  color: #ff00cc;
  margin-bottom: 1rem;
}

.uypg-terms_closing-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-terms_closing-item p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.uypg-terms_acceptance {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 0, 204, 0.1), rgba(0, 255, 204, 0.1));
  border-radius: 15px;
  margin-top: 2rem;
  border: 2px solid rgba(255, 0, 204, 0.3);
}

.uypg-terms_acceptance i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.uypg-terms_acceptance p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .uypg-terms_navigation {
    gap: 0.8rem;
  }
  
  .uypg-terms_nav-item {
    min-width: 100px;
    padding: 1rem 0.5rem;
  }
  
  .uypg-terms_nav-item i {
    font-size: 1.7rem;
  }
  
  .uypg-terms_nav-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .uypg-terms_hero {
    padding: 3rem 1rem;
  }
  
  .uypg-terms_header h1 {
    font-size: 2.3rem;
  }
  
  .uypg-terms_content {
    padding: 2rem 1rem;
  }
  
  .uypg-terms_navigation {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .uypg-terms_nav-item {
    flex-direction: row;
    justify-content: flex-start;
    min-width: 100%;
    text-align: left;
  }
  
  .uypg-terms_section {
    padding: 2rem 1.5rem;
  }
  
  .uypg-terms_section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .uypg-terms_section-header h2 {
    font-size: 1.8rem;
  }
  
  .uypg-terms_cards,
  .uypg-terms_liability,
  .uypg-terms_contact,
  .uypg-terms_closing {
    flex-direction: column;
  }
  
  .uypg-terms_point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .uypg-terms_acceptance {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .uypg-terms_hero {
    padding: 2rem 0.5rem;
  }
  
  .uypg-terms_header h1 {
    font-size: 1.9rem;
  }
  
  .uypg-terms_subtitle {
    font-size: 1.1rem;
  }
  
  .uypg-terms_content {
    padding: 1rem 0.5rem;
  }
  
  .uypg-terms_section {
    padding: 1.5rem 1rem;
  }
  
  .uypg-terms_section-header h2 {
    font-size: 1.6rem;
  }

  .uypg-terms_protection-item,
  .uypg-terms_protection-item,
  .uypg-terms_change {
    flex-direction: column;
  }
  
  .uypg-terms_card,
  .uypg-terms_liability-item,
  .uypg-terms_contact-method,
  .uypg-terms_closing-item {
    min-width: 100%;
  }

  .uypg-terms_contact-method,
  .uypg-terms_liability-item {
    padding: 2.5rem 0.5rem;
  }
  
  .uypg-terms_rules,
  .uypg-terms_legal {
    flex-direction: column;
  }
}

.uypg-privacy_main {
  padding-top: 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 100%);
  min-height: 100vh;
}

.uypg-privacy_header {
  background: linear-gradient(135deg, rgba(255, 0, 204, 0.1) 0%, rgba(0, 255, 204, 0.1) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.uypg-privacy_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff00cc' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: uypg-float 20s infinite linear;
}

@keyframes uypg-float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

.uypg-privacy_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.uypg-privacy_header h1 {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-glow 3s ease-in-out infinite alternate;
}

@keyframes uypg-glow {
  0% { text-shadow: 0 0 20px rgba(255, 0, 204, 0.3); }
  100% { text-shadow: 0 0 30px rgba(0, 255, 204, 0.5); }
}

.uypg-privacy_intro {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.uypg-privacy_icon {
  font-size: 4rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: uypg-bounce 2s ease-in-out infinite;
}

@keyframes uypg-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.uypg-privacy_content {
  padding: 4rem 2rem;
}

.uypg-privacy_sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.uypg-privacy_section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.uypg-privacy_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 0, 204, 0.1), rgba(0, 255, 204, 0.1));
  transition: left 0.6s ease;
  z-index: -1;
}

.uypg-privacy_section:hover::before {
  left: 0;
}

.uypg-privacy_section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 204, 0.2);
}

.uypg-privacy_section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.uypg-privacy_section-header i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uypg-privacy_section-header h2 {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #00ffcc;
  margin: 0;
}

.uypg-privacy_section-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.uypg-privacy_list {
  list-style: none;
  padding: 0;
}

.uypg-privacy_list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.uypg-privacy_list li:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
  border-radius: 10px;
}

.uypg-privacy_list li i {
  color: #ff00cc;
  font-size: 1.2rem;
}

.uypg-privacy_grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-privacy_feature {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-privacy_feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 0, 204, 0.1);
}

.uypg-privacy_feature i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.uypg-privacy_feature h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-privacy_feature p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

.uypg-privacy_security {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-privacy_security-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.uypg-privacy_security-item:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateX(5px);
}

.uypg-privacy_security-item i {
  color: #00ffcc;
  font-size: 1.3rem;
}

.uypg-privacy_timeline {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.uypg-privacy_timeline li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.uypg-privacy_timeline li:hover {
  border-left-color: #ff00cc;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.uypg-privacy_timeline li i {
  font-size: 1.5rem;
  color: #ff00cc;
}

.uypg-privacy_timeline li div {
  flex: 1;
}

.uypg-privacy_timeline li strong {
  display: block;
  color: #00ffcc;
  margin-bottom: 0.3rem;
}

.uypg-privacy_timeline li span {
  opacity: 0.8;
  font-size: 0.9rem;
}

.uypg-privacy_sharing {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.uypg-privacy_sharing-item {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-privacy_sharing-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 0, 204, 0.1);
}

.uypg-privacy_sharing-item i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.uypg-privacy_sharing-item h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

.uypg-privacy_sharing-item p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

.uypg-privacy_rights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.uypg-privacy_right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.uypg-privacy_right:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-3px);
}

.uypg-privacy_right i {
  color: #ff00cc;
  font-size: 1.3rem;
}

.uypg-privacy_contact {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uypg-privacy_email {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff00cc, #00ffcc);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.uypg-privacy_email:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 204, 0.3);
}

.uypg-privacy_contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.uypg-privacy_contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  transition: all 0.3s ease;
}

.uypg-privacy_contact-item:hover {
  background: rgba(255, 0, 204, 0.1);
  transform: translateX(5px);
}

.uypg-privacy_contact-item i {
  font-size: 2rem;
  color: #00ffcc;
}

.uypg-privacy_contact-item div {
  flex: 1;
}

.uypg-privacy_contact-item strong {
  display: block;
  color: #00ffcc;
  margin-bottom: 0.3rem;
}

.uypg-privacy_contact-item span {
  opacity: 0.8;
  font-size: 0.9rem;
}

.uypg-privacy_closing {
  font-style: italic;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .uypg-privacy_header {
    padding: 3rem 1rem;
  }
  
  .uypg-privacy_header h1 {
    font-size: 2.2rem;
  }
  
  .uypg-privacy_content {
    padding: 2rem 1rem;
  }
  
  .uypg-privacy_section {
    padding: 2rem 1.5rem;
  }
  
  .uypg-privacy_section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .uypg-privacy_section-header h2 {
    font-size: 1.6rem;
  }
  
  .uypg-privacy_grid,
  .uypg-privacy_sharing {
    flex-direction: column;
  }
  
  .uypg-privacy_rights {
    flex-direction: column;
  }
  
  .uypg-privacy_contact-info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .uypg-privacy_header {
    padding: 2rem 0.5rem;
  }
  
  .uypg-privacy_header h1 {
    font-size: 1.8rem;
  }
  
  .uypg-privacy_content {
    padding: 1rem 0.5rem;
  }
  
  .uypg-privacy_section {
    padding: 1.5rem 1rem;
  }
  
  .uypg-privacy_feature,
  .uypg-privacy_sharing-item,
  .uypg-privacy_contact-item {
    min-width: 100%;
  }

  .uypg-privacy_feature {
    padding: 2rem 0.5rem;
  }

  .uypg-privacy_contact,
  .uypg-privacy_email {
    padding: 1rem 0.4rem;
  }

  .uypg-privacy_email {
    flex-wrap: wrap;
    font-size: 16px;    
  }
}