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

:root {
  --yd-sparkle-gradient: linear-gradient(135deg, #ff00cc, #3333ff, #00ccff);
  --yd-story-gradient: linear-gradient(45deg, #ff3366, #ffcc00, #66ff33);
  --yd-adventure-gradient: linear-gradient(225deg, #9933ff, #ff3399, #ff6633);
  --yd-glow-gradient: linear-gradient(90deg, #00ffcc, #ff00cc, #ccff00);
  --yd-newsletter-gradient: linear-gradient(135deg, #ff6600, #ff0066, #6600ff);
  --yd-questions-gradient: linear-gradient(45deg, #33ccff, #ff33cc, #ccff33);
  --yd-joy-gradient: linear-gradient(225deg, #ff3333, #33ff33, #3333ff);
  --yd-voices-gradient: linear-gradient(90deg, #cc00ff, #00ccff, #ffcc00);
  --yd-care-gradient: linear-gradient(135deg, #00ff99, #9900ff, #ff9900);
  --yd-connect-gradient: linear-gradient(45deg, #ff0066, #6600ff, #00ff66);
  --yd-footprint-color: #1a1a2e;
  --yd-notice-color: #16213e;
  --yd-verify-color: #0f3460;
  --yd-text-light: #ffffff;
  --yd-text-dark: #333333;
  --yd-font-heading: 'Bona Nova', serif;
  --yd-font-body: 'Barlow', sans-serif;
}

body {
  font-family: var(--yd-font-body);
  line-height: 1.6;
  color: var(--yd-text-dark);
  overflow-x: hidden;
}

.yd-header_navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.yd-header_logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--yd-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yd-text-dark);
}

.yd-header_logo img {
  height: 40px;
  width: auto;
}

.yd-header_nav {
  display: flex;
  gap: 2rem;
}

.yd-header_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--yd-text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.yd-header_link:hover {
  color: #ff00cc;
  transform: translateY(-2px);
}

.yd-header_link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yd-sparkle-gradient);
  transition: width 0.3s ease;
}

.yd-header_link:hover::after {
  width: 100%;
}

.yd-header_burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.yd-header_burger span {
  width: 25px;
  height: 3px;
  background: var(--yd-text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .yd-header_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .yd-header_nav.active {
    display: flex;
  }
  
  .yd-header_burger {
    display: flex;
  }
  
  .yd-header_burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .yd-header_burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .yd-header_burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .yd-header_container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .yd-header_logo {
    order: 1;
  }
  
  .yd-header_nav {
    order: 3;
  }
  
  .yd-header_burger {
    order: 2;
  }
}

.yd-sparkle_welcome {
  background: var(--yd-sparkle-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 2rem;
}

.yd-sparkle_welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/yd-core/yd-images/yd-logo-background-image.webp') center/cover no-repeat;
  opacity: 0.2;
  animation: yd-sparkle_float 20s ease-in-out infinite;
}

@keyframes yd-sparkle_float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.yd-sparkle_content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.yd-sparkle_content h1 {
  font-family: var(--yd-font-heading);
  font-size: 4rem;
  color: var(--yd-text-light);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: yd-sparkle_textGlow 3s ease-in-out infinite alternate;
}

@keyframes yd-sparkle_textGlow {
  from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5); }
  to { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.8); }
}

.yd-sparkle_content p {
  font-size: 1.3rem;
  color: var(--yd-text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

.yd-sparkle_card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.yd-sparkle_card::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.5s ease;
}

.yd-sparkle_card:hover::before {
  left: 100%;
}

.yd-sparkle_card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.yd-sparkle_card i {
  font-size: 3rem;
  color: var(--yd-text-light);
  margin-bottom: 1rem;
  display: block;
}

.yd-sparkle_card h3 {
  font-family: var(--yd-font-heading);
  color: var(--yd-text-light);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.yd-sparkle_card p {
  color: var(--yd-text-light);
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.yd-sparkle_button {
  display: inline-block;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.yd-sparkle_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--yd-sparkle-gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.yd-sparkle_button:hover::before {
  left: 0;
}

.yd-sparkle_button:hover {
  color: var(--yd-text-light);
  border-color: var(--yd-text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .yd-sparkle_content h1 {
    font-size: 3rem;
  }
  
  .yd-sparkle_features {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .yd-sparkle_welcome {
    padding: 8rem 1rem 2rem;
  }
  
  .yd-sparkle_content h1 {
    font-size: 2.5rem;
  }
  
  .yd-sparkle_content p {
    font-size: 1.1rem;
  }
  
  .yd-sparkle_card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .yd-sparkle_content h1 {
    font-size: 2rem;
  }
  
  .yd-sparkle_card {
    padding: 1.5rem;
  }
}

.yd-story_journey {
  padding: 6rem 2rem;
  background: var(--yd-story-gradient);
  position: relative;
  overflow: hidden;
}

.yd-story_container {
  max-width: 1640px;
  margin: 0 auto;
}

.yd-story_block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.yd-story_block:last-child {
  margin-bottom: 0;
}

.yd-story_reverse {
  flex-direction: row-reverse;
}

.yd-story_image {
  flex: 1;
  position: relative;
}

.yd-story_image img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.yd-story_image:hover img {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.yd-story_text {
  flex: 1;
  color: var(--yd-text-light);
}

.yd-story_text-end {
  text-align: end;
}

.yd-story_text h2 {
  font-family: var(--yd-font-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-story_text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.yd-story_minicards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.yd-story_mini {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 120px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.yd-story_mini:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.yd-story_mini i {
  font-size: 2rem;
  color: var(--yd-text-light);
  margin-bottom: 0.5rem;
  display: block;
}

.yd-story_mini span {
  font-weight: 600;
  font-size: 0.9rem;
}

.yd-story_link {
  display: inline-block;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.yd-story_link:hover {
  background: transparent;
  color: var(--yd-text-light);
  border-color: var(--yd-text-light);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .yd-story_block {
    gap: 3rem;
  }
  
  .yd-story_text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .yd-story_journey {
    padding: 4rem 1rem;
  }
  
  .yd-story_block {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .yd-story_reverse {
    flex-direction: column;
  }
  
  .yd-story_text h2 {
    font-size: 2rem;
  }
  
  .yd-story_minicards {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .yd-story_text h2 {
    font-size: 1.8rem;
  }
  
  .yd-story_mini {
    flex: 1 1 100px;
    padding: 0.8rem;
  }
}

.yd-adventure_games {
  padding: 6rem 2rem;
  background: var(--yd-adventure-gradient);
  text-align: center;
}

.yd-adventure_games h2 {
  font-family: var(--yd-font-heading);
  font-size: 3.5rem;
  color: var(--yd-text-light);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-adventure_container {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.yd-adventure_card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  flex: 1 1 300px;
  width: 100%;
  min-width: 260px;
  max-width: 350px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.yd-adventure_card:hover {
  transform: translateY(-15px) scale(1.03);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.yd-adventure_card h3 {
  min-height: 93px;
}

.yd-adventure_badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.yd-adventure_card img {
  width: 100%;
  max-width: 350px;
  height: 100%;
  max-height: 287px;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.yd-adventure_card:hover img {
  transform: scale(1.1);
}

.yd-adventure_card h3 {
  font-family: var(--yd-font-heading);
  color: var(--yd-text-light);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.yd-adventure_button {
  display: inline-block;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.yd-adventure_button:hover {
  background: transparent;
  color: var(--yd-text-light);
  border-color: var(--yd-text-light);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .yd-adventure_container {
    gap: 1.5rem;
  }
  
  .yd-adventure_card {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .yd-adventure_games {
    padding: 4rem 1rem;
  }
  
  .yd-adventure_games h2 {
    font-size: 2.5rem;
  }
  
  .yd-adventure_container {
    flex-direction: column;
    align-items: center;
  }
  
  .yd-adventure_card {
    flex: 1 1 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .yd-adventure_games h2 {
    font-size: 2rem;
  }
  
  .yd-adventure_card {
    padding: 1.5rem;
  }
}

.yd-glow_advantages {
  background: var(--yd-glow-gradient);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.yd-glow_content {
  max-width: 1640px;
  margin: 0 auto;
  text-align: center;
}

.yd-glow_content h2 {
  font-family: var(--yd-font-heading);
  font-size: 3.5rem;
  color: var(--yd-text-light);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-glow_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.yd-glow_card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 350px;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.yd-glow_card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(0deg);
  transition: transform 0.6s ease;
}

.yd-glow_card:hover::before {
  transform: rotate(180deg);
}

.yd-glow_card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.yd-glow_card i {
  font-size: 3.5rem;
  color: var(--yd-text-light);
  margin-bottom: 1.5rem;
  display: block;
}

.yd-glow_card h3 {
  font-family: var(--yd-font-heading);
  color: var(--yd-text-light);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.yd-glow_card p {
  color: var(--yd-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .yd-glow_cards {
    gap: 1.5rem;
  }
  
  .yd-glow_card {
    flex: 1 1 300px;
  }
}

@media (max-width: 768px) {
  .yd-glow_advantages {
    padding: 4rem 1rem;
  }
  
  .yd-glow_content h2 {
    font-size: 2.5rem;
  }
  
  .yd-glow_cards {
    flex-direction: column;
    align-items: center;
  }
  
  .yd-glow_card {
    flex: 1 1 100%;
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .yd-glow_content h2 {
    font-size: 2rem;
  }
  
  .yd-glow_card {
    padding: 2rem 1.5rem;
  }
}

.yd-newsletter_subscribe {
  padding: 6rem 2rem;
  background: var(--yd-newsletter-gradient);
  position: relative;
  overflow: hidden;
}

.yd-newsletter_container {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
}

.yd-newsletter_content {
  flex: 1;
  min-width: 300px;
  color: var(--yd-text-light);
}

.yd-newsletter_content h2 {
  font-family: var(--yd-font-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-newsletter_content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.yd-newsletter_content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.yd-newsletter_content li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.yd-newsletter_content i {
  color: #00ff00;
}

.yd-newsletter_form {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.yd-newsletter_input-group,
.yd-newsletter_checkbox-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.yd-newsletter_input-group input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yd-text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.yd-newsletter_input-group input:focus {
  outline: none;
  border-color: var(--yd-text-light);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.yd-newsletter_input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.yd-newsletter_error {
  color: #0e0d0d;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  display: none;
}

.yd-newsletter_checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.yd-newsletter_checkbox-group input {
  margin-top: 0.2rem;
}

.yd-newsletter_checkbox-group label {
  color: var(--yd-text-light);
  font-size: 0.9rem;
}

.yd-newsletter_checkbox-group a {
  color: var(--yd-text-light);
  text-decoration: underline;
}

.yd-newsletter_form button {
  width: 100%;
  padding: 1rem;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yd-newsletter_form button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.yd-newsletter_form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.yd-newsletter_success,
.yd-newsletter_already {
  display: none;
  text-align: center;
  color: var(--yd-text-light);
}

.yd-newsletter_success h3,
.yd-newsletter_already h3 {
  font-family: var(--yd-font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.yd-newsletter_actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.yd-newsletter_actions button {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--yd-text-light);
  border-radius: 10px;
  background: transparent;
  color: var(--yd-text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.yd-newsletter_actions button:hover {
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
}

.yd-newsletter_decoration {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  width: 200px;
  height: 200px;
  animation: yd-newsletter_spin 20s linear infinite;
}

@keyframes yd-newsletter_spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.yd-newsletter_benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.yd-newsletter_benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yd-text-light);
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.yd-newsletter_benefit i {
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .yd-newsletter_container {
    gap: 3rem;
  }
  
  .yd-newsletter_content h2 {
    font-size: 2.5rem;
  }
  
  .yd-newsletter_decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .yd-newsletter_subscribe {
    padding: 4rem 1rem;
  }
  
  .yd-newsletter_container {
    flex-direction: column;
  }
  
  .yd-newsletter_form {
    padding: 2rem;
  }
  
  .yd-newsletter_benefits {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .yd-newsletter_content h2 {
    font-size: 2rem;
  }
  
  .yd-newsletter_form {
    padding: 1.5rem;
  }
  
  .yd-newsletter_actions {
    flex-direction: column;
  }
}

.yd-questions_faq {
  padding: 6rem 2rem;
  background: var(--yd-questions-gradient);
  position: relative;
  overflow: hidden;
}

.yd-questions_content {
  max-width: 1640px;
  margin: 0 auto;
  text-align: center;
}

.yd-questions_content h2 {
  font-family: var(--yd-font-heading);
  font-size: 3.5rem;
  color: var(--yd-text-light);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-questions_blocks {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.yd-questions_block {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 300px;
}

.yd-questions_block h3 {
  font-family: var(--yd-font-heading);
  color: var(--yd-text-light);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.yd-questions_item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.5rem;
}

.yd-questions_item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.yd-questions_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.yd-questions_question:hover {
  color: rgba(255, 255, 255, 0.9);
}

.yd-questions_question span {
  color: var(--yd-text-light);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  flex: 1;
  padding-right: 1rem;
}

.yd-questions_question i {
  color: var(--yd-text-light);
  transition: transform 0.3s ease;
}

.yd-questions_item.active .yd-questions_question i {
  transform: rotate(180deg);
}

.yd-questions_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-align: left;
}

.yd-questions_item.active .yd-questions_answer {
  max-height: 200px;
}

.yd-questions_answer p {
  color: var(--yd-text-light);
  padding: 1rem 0;
  opacity: 0.9;
  line-height: 1.6;
}

.yd-questions_contact {
  display: inline-block;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.yd-questions_contact:hover {
  background: transparent;
  color: var(--yd-text-light);
  border-color: var(--yd-text-light);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .yd-questions_blocks {
    gap: 2rem;
  }
  
  .yd-questions_block {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .yd-questions_faq {
    padding: 4rem 1rem;
  }
  
  .yd-questions_content h2 {
    font-size: 2.5rem;
  }
  
  .yd-questions_blocks {
    flex-direction: column;
  }
  
  .yd-questions_block {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .yd-questions_content h2 {
    font-size: 2rem;
  }
  
  .yd-questions_block {
    padding: 1.5rem;
  }
  
  .yd-questions_question span {
    font-size: 1rem;
  }
}

.yd-joy_welcome {
  padding: 6rem 2rem;
  background: var(--yd-joy-gradient);
  position: relative;
  overflow: hidden;
}

.yd-joy_content {
  max-width: 1640px;
  margin: 0 auto;
  text-align: center;
}

.yd-joy_content h2 {
  font-family: var(--yd-font-heading);
  font-size: 3.5rem;
  color: var(--yd-text-light);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-joy_content p {
  font-size: 1.3rem;
  color: var(--yd-text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.yd-joy_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.yd-joy_card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.yd-joy_card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yd-text-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.yd-joy_card:hover::after {
  transform: scaleX(1);
}

.yd-joy_card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
}

.yd-joy_card h3 {
  font-family: var(--yd-font-heading);
  color: var(--yd-text-light);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.yd-joy_card p {
  color: var(--yd-text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.yd-joy_card i {
  font-size: 3rem;
  color: var(--yd-text-light);
  margin-bottom: 1.5rem;
  display: block;
}

.yd-joy_card a {
  display: inline-block;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.yd-joy_card a:hover {
  background: transparent;
  color: var(--yd-text-light);
  border-color: var(--yd-text-light);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .yd-joy_cards {
    gap: 1.5rem;
  }
  
  .yd-joy_card {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .yd-joy_welcome {
    padding: 4rem 1rem;
  }
  
  .yd-joy_content h2 {
    font-size: 2.5rem;
  }
  
  .yd-joy_content p {
    font-size: 1.1rem;
  }
  
  .yd-joy_cards {
    flex-direction: column;
    align-items: center;
  }
  
  .yd-joy_card {
    flex: 1 1 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .yd-joy_content h2 {
    font-size: 2rem;
  }
  
  .yd-joy_card {
    padding: 2rem 1.5rem;
  }
}

.yd-voices_reviews {
  padding: 6rem 2rem;
  background: var(--yd-voices-gradient);
  text-align: center;
}

.yd-voices_reviews h2 {
  font-family: var(--yd-font-heading);
  font-size: 3.5rem;
  color: var(--yd-text-light);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-voices_container {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.yd-voices_card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  flex: 1 1 500px;
  max-width: 550px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
}

.yd-voices_card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.yd-voices_header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.yd-voices_header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.yd-voices_info {
  flex: 1;
}

.yd-voices_info h3 {
  color: var(--yd-text-light);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.yd-voices_rating {
  display: flex;
  gap: 0.2rem;
}

.yd-voices_rating i {
  color: #ffd700;
  font-size: 1.1rem;
}

.yd-voices_header i:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  position: absolute;
  top: 0;
  right: 0;
}

.yd-voices_card p {
  color: var(--yd-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

.yd-voices_footer {
  display: flex;
  justify-content: space-between;
  color: var(--yd-text-light);
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

@media (max-width: 1024px) {
  .yd-voices_container {
    gap: 1.5rem;
  }
  
  .yd-voices_card {
    flex: 1 1 450px;
  }
}

@media (max-width: 768px) {
  .yd-voices_reviews {
    padding: 4rem 1rem;
  }
  
  .yd-voices_reviews h2 {
    font-size: 2.5rem;
  }
  
  .yd-voices_container {
    flex-direction: column;
    align-items: center;
  }
  
  .yd-voices_card {
    flex: 1 1 100%;
    max-width: 500px;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .yd-voices_reviews h2 {
    font-size: 2rem;
  }
  
  .yd-voices_card {
    padding: 1.5rem;
  }
  
  .yd-voices_header {
    flex-direction: column;
    text-align: center;
  }
  
  .yd-voices_footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.yd-care_responsible {
  padding: 6rem 2rem;
  background: var(--yd-care-gradient);
  position: relative;
  overflow: hidden;
}

.yd-care_container {
  max-width: 1640px;
  margin: 0 auto;
  text-align: center;
}

.yd-care_container h2 {
  font-family: var(--yd-font-heading);
  font-size: 3.5rem;
  color: var(--yd-text-light);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-care_content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.yd-care_content p {
  color: var(--yd-text-light);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.yd-care_content a {
  color: var(--yd-text-light);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.yd-care_content a:hover {
  color: #ffd700;
}

.yd-care_link {
  display: inline-block;
  background: var(--yd-text-light);
  color: var(--yd-footprint-color) !important;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: 1rem;
}

.yd-care_link:hover {
  background: transparent;
  color: var(--yd-text-light);
  border-color: var(--yd-text-light);
  transform: translateY(-3px);
}

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

.yd-care_partner {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  text-align: center;
}

.yd-care_partner a {
  display: block;
  transition: all 0.3s ease;
}

.yd-care_partner a:hover {
  transform: scale(1.1);
}

.yd-care_partner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.yd-care_age {
  flex: 0 0 auto;
}

.yd-care_age img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--yd-text-light);
}

@media (max-width: 1024px) {
  .yd-care_partners {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .yd-care_responsible {
    padding: 4rem 1rem;
  }
  
  .yd-care_container h2 {
    font-size: 2.5rem;
  }
  
  .yd-care_content {
    padding: 2rem;
  }
  
  .yd-care_partners {
    flex-direction: column;
  }
  
  .yd-care_partner {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .yd-care_container h2 {
    font-size: 2rem;
  }
  
  .yd-care_content {
    padding: 1.5rem;
  }
  
  .yd-care_content p {
    font-size: 1rem;
  }
}

.yd-connect_contact {
  padding: 6rem 2rem;
  background: var(--yd-connect-gradient);
  position: relative;
  overflow: hidden;
}

.yd-connect_container {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.yd-connect_form {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.yd-connect_form h2 {
  font-family: var(--yd-font-heading);
  color: var(--yd-text-light);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-connect_input-group,
.yd-connect_checkbox-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.yd-connect_input-group input,
.yd-connect_input-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yd-text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--yd-font-body);
}

.yd-connect_input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.yd-connect_input-group input:focus,
.yd-connect_input-group textarea:focus {
  outline: none;
  border-color: var(--yd-text-light);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.yd-connect_input-group input::placeholder,
.yd-connect_input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.yd-connect_error {
  color: #0e0d0d;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  display: none;
}

.yd-connect_checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.yd-connect_checkbox-group input {
  margin-top: 0.2rem;
}

.yd-connect_checkbox-group label {
  color: var(--yd-text-light);
  font-size: 0.9rem;
}

.yd-connect_checkbox-group a {
  color: var(--yd-text-light);
  text-decoration: underline;
}

.yd-connect_form button {
  width: 100%;
  padding: 1rem;
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yd-connect_form button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.yd-connect_form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.yd-connect_success {
  display: none;
  text-align: center;
  color: var(--yd-text-light);
}

.yd-connect_success h3 {
  font-family: var(--yd-font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.yd-connect_info {
  flex: 1;
  min-width: 300px;
  color: var(--yd-text-light);
}

.yd-connect_info h3 {
  font-family: var(--yd-font-heading);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.yd-connect_info p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.yd-connect_details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.yd-connect_detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.yd-connect_detail:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.yd-connect_detail i {
  font-size: 2rem;
  margin-top: 0.2rem;
}

.yd-connect_detail h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.yd-connect_detail a,
.yd-connect_detail span {
  color: var(--yd-text-light);
  text-decoration: none;
  opacity: 0.9;
}

.yd-connect_detail a:hover {
  text-decoration: underline;
}

.yd-connect_decoration {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: rgba(255, 255, 255, 0.2);
  width: 150px;
  height: 150px;
  animation: yd-connect_pulse 4s ease-in-out infinite;
}

@keyframes yd-connect_pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.yd-connect_cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.yd-connect_card {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.yd-connect_card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.yd-connect_card i {
  font-size: 2.5rem;
  color: var(--yd-text-light);
  margin-bottom: 1rem;
  display: block;
}

.yd-connect_card h4 {
  color: var(--yd-text-light);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.yd-connect_card p {
  color: var(--yd-text-light);
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .yd-connect_container {
    gap: 3rem;
  }
  
  .yd-connect_decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .yd-connect_contact {
    padding: 4rem 1rem;
  }
  
  .yd-connect_container {
    flex-direction: column;
  }
  
  .yd-connect_form {
    padding: 2rem;
  }
  
  .yd-connect_cards {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .yd-connect_contact,
  .yd-newsletter_subscribe {
    padding: 4rem .2rem;
  }

  .yd-connect_form {
    padding: 1.5rem;
  }
  
  .yd-connect_form h2 {
    font-size: 2rem;
  }
  
  .yd-connect_info h3 {
    font-size: 1.8rem;
  }
}

.yd-footprint_footer {
  background: var(--yd-footprint-color);
  color: var(--yd-text-light);
  padding: 3rem 2rem 1rem;
}

.yd-footprint_container {
  max-width: 1640px;
  margin: 0 auto;
}

.yd-footprint_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.yd-footprint_logo {
  font-family: var(--yd-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.yd-footprint_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.yd-footprint_nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yd-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.yd-footprint_nav a:hover {
  color: #ff00cc;
  transform: translateY(-2px);
}

.yd-footprint_bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .yd-footprint_footer {
    padding: 2rem 1rem 1rem;
  }
  
  .yd-footprint_top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .yd-footprint_nav {
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .yd-footprint_nav {
    flex-direction: column;
    gap: 1rem;
  }
}

.yd-notice_cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yd-notice-color);
  color: var(--yd-text-light);
  padding: 1.5rem 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.yd-notice_cookies.active {
  transform: translateY(0);
}

.yd-notice_content {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.yd-notice_content p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.yd-notice_content a {
  color: var(--yd-text-light);
  text-decoration: underline;
}

.yd-notice_accept {
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.yd-notice_accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .yd-notice_cookies {
    padding: 1rem;
  }
  
  .yd-notice_content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.yd-verify_age {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 52, 96, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
}

.yd-verify_content {
  background: var(--yd-verify-color);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.yd-verify_content h2 {
  font-family: var(--yd-font-heading);
  color: var(--yd-text-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.yd-verify_content p {
  color: var(--yd-text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.yd-verify_buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.yd-verify_confirm {
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
}

.yd-verify_confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.yd-verify_deny {
  background: transparent;
  color: var(--yd-text-light);
  border: 2px solid var(--yd-text-light);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
}

.yd-verify_deny:hover {
  background: var(--yd-text-light);
  color: var(--yd-text-dark);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .yd-verify_age {
    padding: 1rem;
  }
  
  .yd-verify_content {
    padding: 2rem;
  }
  
  .yd-verify_content h2 {
    font-size: 2rem;
  }
  
  .yd-verify_buttons {
    flex-direction: column;
  }
  
  .yd-verify_confirm,
  .yd-verify_deny {
    max-width: none;
  }
}

.ydpg-error_404 {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ydpg-error_container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.ydpg-error_content {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 4rem 3rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-error_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ydpg-error_float 6s ease-in-out infinite;
}

@keyframes ydpg-error_float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -5px) scale(1.02); }
  66% { transform: translate(-5px, 10px) scale(0.98); }
}

.ydpg-error_animation {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 3rem;
}

.ydpg-error_animation i {
  font-size: 8rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
  animation: ydpg-error_bounce 3s ease-in-out infinite;
}

@keyframes ydpg-error_bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  75% { transform: translateY(-10px) rotate(-5deg); }
}

.ydpg-error_orbits {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ydpg-error_orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ydpg-error_orbit-1 {
  width: 120px;
  height: 120px;
  animation: ydpg-error_spin 8s linear infinite;
}

.ydpg-error_orbit-2 {
  width: 160px;
  height: 160px;
  animation: ydpg-error_spin 12s linear infinite reverse;
}

.ydpg-error_orbit-3 {
  width: 200px;
  height: 200px;
  animation: ydpg-error_spin 16s linear infinite;
}

@keyframes ydpg-error_spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ydpg-error_content h1 {
  font-family: 'Bona Nova', serif;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: ydpg-error_glitch 5s ease-in-out infinite;
}

@keyframes ydpg-error_glitch {
  0%, 100% { 
    transform: translate(0, 0);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 0 transparent;
  }
  25% { 
    transform: translate(2px, -1px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 2px 2px 8px rgba(255, 255, 255, 0.5);
  }
  75% { 
    transform: translate(-1px, 1px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), -2px -2px 8px rgba(255, 255, 255, 0.5);
  }
}

.ydpg-error_message {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.ydpg-error_message i {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: block;
}

.ydpg-error_message p {
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.ydpg-error_suggestions {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.ydpg-error_suggestion {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.ydpg-error_suggestion:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}

.ydpg-error_suggestion i {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: block;
}

.ydpg-error_suggestion h3 {
  font-family: 'Bona Nova', serif;
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.ydpg-error_suggestion p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.ydpg-error_actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.ydpg-error_button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  color: #fa709a;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.ydpg-error_button:hover::before {
  left: 100%;
}

.ydpg-error_button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ydpg-error_button-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.ydpg-error_button-secondary:hover {
  background: #ffffff;
  color: #fa709a;
}

.ydpg-error_fun {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.ydpg-error_fun i {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: block;
  animation: ydpg-error_sparkle 2s ease-in-out infinite;
}

@keyframes ydpg-error_sparkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.ydpg-error_fun p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
  font-style: italic;
}

@media (max-width: 1024px) {
  .ydpg-error_404 {
    padding: 6rem 1.5rem 3rem;
  }
  
  .ydpg-error_content {
    padding: 3rem 2rem;
  }
  
  .ydpg-error_content h1 {
    font-size: 3.5rem;
  }
  
  .ydpg-error_suggestions {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ydpg-error_404 {
    padding: 5rem 1rem 2rem;
  }
  
  .ydpg-error_content {
    padding: 9.5rem 1.5rem;
  }
  
  .ydpg-error_content h1 {
    font-size: 3rem;
  }
  
  .ydpg-error_suggestions {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .ydpg-error_actions {
    flex-direction: column;
    align-items: center;
  }
  
  .ydpg-error_button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ydpg-error_content h1 {
    font-size: 2.5rem;
  }
  
  .ydpg-error_animation {
    width: 150px;
    height: 150px;
  }
  
  .ydpg-error_animation i {
    font-size: 6rem;
  }
  
  .ydpg-error_message {
    padding: 1.5rem;
  }
  
  .ydpg-error_message p {
    font-size: 1.1rem;
  }
  
  .ydpg-error_suggestion {
    padding: 1.5rem 1rem;
  }
}

.ydpg-responsible_gaming {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%);
  min-height: 100vh;
}

.ydpg-responsible_container {
  max-width: 1200px;
  margin: 0 auto;
}

.ydpg-responsible_container h1 {
  font-family: 'Bona Nova', serif;
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: ydpg-responsible_pulse 2s ease-in-out infinite;
}

@keyframes ydpg-responsible_pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.ydpg-responsible_intro {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-responsible_intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ydpg-responsible_drift 8s ease-in-out infinite;
}

@keyframes ydpg-responsible_drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, 5px); }
  75% { transform: translate(-5px, 10px); }
}

.ydpg-responsible_intro i {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
}

.ydpg-responsible_intro p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ydpg-responsible_content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.ydpg-responsible_section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.ydpg-responsible_section:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ydpg-responsible_section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #43e97b, #38f9d7, #43e97b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ydpg-responsible_section:hover::after {
  transform: scaleX(1);
}

.ydpg-responsible_header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.ydpg-responsible_header i {
  font-size: 2.8rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ydpg-responsible_section:hover .ydpg-responsible_header i {
  transform: rotate(10deg) scale(1.1);
}

.ydpg-responsible_header h2 {
  font-family: 'Bona Nova', serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin: 0;
}

.ydpg-responsible_points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.ydpg-responsible_point {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.ydpg-responsible_point:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.ydpg-responsible_point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ydpg-responsible_point:hover::before {
  opacity: 1;
}

.ydpg-responsible_point i {
  font-size: 2.2rem;
  color: #ffffff;
  margin-top: 0.3rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.ydpg-responsible_point:hover i {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.ydpg-responsible_point div {
  flex: 1;
  position: relative;
  z-index: 1;
}

.ydpg-responsible_point h3 {
  font-family: 'Bona Nova', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ydpg-responsible_point p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

.ydpg-responsible_point a {
  color: #ffeb3b;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ydpg-responsible_point a:hover {
  color: #ffffff;
}

.ydpg-responsible_contact {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-responsible_contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: ydpg-responsible_glow 3s ease-in-out infinite;
}

@keyframes ydpg-responsible_glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.ydpg-responsible_contact i {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.ydpg-responsible_contact p {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
  line-height: 1.6;
}

.ydpg-responsible_contact a {
  color: #ffeb3b;
  text-decoration: underline;
  font-weight: 600;
}

.ydpg-responsible_contact a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .ydpg-responsible_gaming {
    padding: 7rem 1.5rem 3rem;
  }
  
  .ydpg-responsible_container h1 {
    font-size: 3rem;
  }
  
  .ydpg-responsible_section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .ydpg-responsible_gaming {
    padding: 10rem 1rem 2rem;
  }
  
  .ydpg-responsible_container h1 {
    font-size: 2.5rem;
  }
  
  .ydpg-responsible_intro {
    padding: 2rem;
  }
  
  .ydpg-responsible_header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .ydpg-responsible_point {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ydpg-responsible_container h1 {
    font-size: 2rem;
  }
  
  .ydpg-responsible_intro {
    padding: 1.5rem;
  }
  
  .ydpg-responsible_section {
    padding: 1.5rem;
  }
  
  .ydpg-responsible_header h2 {
    font-size: 1.8rem;
  }
  
  .ydpg-responsible_point h3 {
    font-size: 1.3rem;
  }
  
  .ydpg-responsible_contact {
    padding: 2rem;
  }
}

.ydpg-cookies_policy {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  min-height: 100vh;
}

.ydpg-cookies_container {
  max-width: 1200px;
  margin: 0 auto;
}

.ydpg-cookies_container h1 {
  font-family: 'Bona Nova', serif;
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: ydpg-cookies_rotate 4s ease-in-out infinite;
}

@keyframes ydpg-cookies_rotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
}

.ydpg-cookies_intro {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-cookies_intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ydpg-cookies_float 6s ease-in-out infinite;
}

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

.ydpg-cookies_intro i {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
}

.ydpg-cookies_intro p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ydpg-cookies_content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.ydpg-cookies_section:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.ydpg-cookies_section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4facfe, #00f2fe, #4facfe);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ydpg-cookies_section:hover::after {
  transform: scaleX(1);
}

.ydpg-cookies_header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.ydpg-cookies_header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, transparent);
  animation: ydpg-cookies_slide 3s ease-in-out infinite;
}

@keyframes ydpg-cookies_slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(calc(100% - 100px)); }
}

.ydpg-cookies_header i {
  font-size: 2.8rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 15px;
  flex-shrink: 0;
}

.ydpg-cookies_header h2 {
  font-family: 'Bona Nova', serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin: 0;
}

.ydpg-cookies_points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.ydpg-cookies_point {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.ydpg-cookies_point:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(12px);
  border-color: rgba(255, 255, 255, 0.3);
}

.ydpg-cookies_point::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #4facfe, #00f2fe);
  border-radius: 2px;
  transition: height 0.4s ease;
}

.ydpg-cookies_point:hover::before {
  height: 80%;
}

.ydpg-cookies_point i {
  font-size: 2.2rem;
  color: #ffffff;
  margin-top: 0.3rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ydpg-cookies_point:hover i {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.25);
}

.ydpg-cookies_point div {
  flex: 1;
}

.ydpg-cookies_point h3 {
  font-family: 'Bona Nova', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ydpg-cookies_point p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

.ydpg-cookies_point a {
  color: #ffeb3b;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ydpg-cookies_point a:hover {
  color: #ffffff;
}

.ydpg-cookies_consent {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-cookies_consent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: ydpg-cookies_sparkle 2s ease-in-out infinite;
}

@keyframes ydpg-cookies_sparkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.ydpg-cookies_consent i {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.ydpg-cookies_consent p {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .ydpg-cookies_policy {
    padding: 7rem 1.5rem 3rem;
  }
  
  .ydpg-cookies_container h1 {
    font-size: 3rem;
  }
  
  .ydpg-cookies_section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .ydpg-cookies_policy {
    padding: 10rem 1rem 2rem;
  }
  
  .ydpg-cookies_container h1 {
    font-size: 2.5rem;
  }
  
  .ydpg-cookies_intro {
    padding: 2rem;
  }
  
  .ydpg-cookies_header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .ydpg-cookies_point {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ydpg-cookies_container h1 {
    font-size: 2rem;
  }
  
  .ydpg-cookies_intro {
    padding: 1.5rem;
  }
  
  .ydpg-cookies_section {
    padding: 1.5rem;
  }
  
  .ydpg-cookies_header h2 {
    font-size: 1.8rem;
  }
  
  .ydpg-cookies_point h3 {
    font-size: 1.3rem;
  }
  
  .ydpg-cookies_consent {
    padding: 2rem;
  }
}

.ydpg-terms_usage {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(45deg, #ff6b6b 0%, #ffa726 100%);
  min-height: 100vh;
}

.ydpg-terms_container {
  max-width: 1200px;
  margin: 0 auto;
}

.ydpg-terms_container h1 {
  font-family: 'Bona Nova', serif;
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: ydpg-terms_bounce 2s ease-in-out infinite;
}

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

.ydpg-terms_intro {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-terms_intro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ydpg-terms_pulse 4s ease-in-out infinite;
}

@keyframes ydpg-terms_pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.ydpg-terms_intro i {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
}

.ydpg-terms_intro p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ydpg-terms_content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

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

.ydpg-terms_section:hover::before {
  left: 100%;
}

.ydpg-terms_section:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ydpg-terms_header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.ydpg-terms_header i {
  font-size: 3rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 15px;
}

.ydpg-terms_header h2 {
  font-family: 'Bona Nova', serif;
  font-size: 2.3rem;
  color: #ffffff;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ydpg-terms_points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.ydpg-terms_point {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.ydpg-terms_point::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(45deg, #ffffff, #ffd700);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.ydpg-terms_point:hover::after {
  transform: scaleY(1);
}

.ydpg-terms_point:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(15px);
  border-color: rgba(255, 255, 255, 0.3);
}

.ydpg-terms_point i {
  font-size: 2.2rem;
  color: #ffffff;
  margin-top: 0.3rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem;
  border-radius: 12px;
}

.ydpg-terms_point div {
  flex: 1;
}

.ydpg-terms_point h3 {
  font-family: 'Bona Nova', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.ydpg-terms_point p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

.ydpg-terms_point a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ydpg-terms_point a:hover {
  color: #ffffff;
}

.ydpg-terms_acceptance {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-terms_acceptance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: ydpg-terms_shine 3s ease-in-out infinite;
}

@keyframes ydpg-terms_shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.ydpg-terms_acceptance i {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.ydpg-terms_acceptance p {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .ydpg-terms_usage {
    padding: 7rem 1.5rem 3rem;
  }
  
  .ydpg-terms_container h1 {
    font-size: 3rem;
  }
  
  .ydpg-terms_section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .ydpg-terms_usage {
    padding: 10rem 1rem 2rem;
  }
  
  .ydpg-terms_container h1 {
    font-size: 2.5rem;
  }
  
  .ydpg-terms_intro {
    padding: 2rem;
  }
  
  .ydpg-terms_header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .ydpg-terms_point {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ydpg-terms_container h1 {
    font-size: 2rem;
  }
  
  .ydpg-terms_intro {
    padding: 1.5rem;
  }
  
  .ydpg-terms_section {
    padding: 1.5rem;
  }
  
  .ydpg-terms_header h2 {
    font-size: 1.8rem;
  }
  
  .ydpg-terms_point h3 {
    font-size: 1.3rem;
  }
  
  .ydpg-terms_acceptance {
    padding: 2rem;
  }

  .ydpg-terms_point a {
    font-size: .9rem;
  }
}

.ydpg-privacy_policy {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.ydpg-privacy_container {
  max-width: 1200px;
  margin: 0 auto;
}

.ydpg-privacy_container h1 {
  font-family: 'Bona Nova', serif;
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: ydpg-privacy_glow 3s ease-in-out infinite alternate;
}

@keyframes ydpg-privacy_glow {
  from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3); }
  to { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.6); }
}

.ydpg-privacy_intro {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ydpg-privacy_intro::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: ydpg-privacy_shine 6s linear infinite;
}

@keyframes ydpg-privacy_shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.ydpg-privacy_intro i {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: block;
}

.ydpg-privacy_intro p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ydpg-privacy_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ydpg-privacy_section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ydpg-privacy_section:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ydpg-privacy_header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.ydpg-privacy_header i {
  font-size: 2.5rem;
  color: #ffffff;
}

.ydpg-privacy_header h2 {
  font-family: 'Bona Nova', serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin: 0;
}

.ydpg-privacy_points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ydpg-privacy_point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ydpg-privacy_point:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(10px);
}

.ydpg-privacy_point i {
  font-size: 2rem;
  color: #ffffff;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.ydpg-privacy_point div {
  flex: 1;
}

.ydpg-privacy_point h3 {
  font-family: 'Bona Nova', serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.ydpg-privacy_point p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.ydpg-privacy_point a {
  color: #ffffff;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.ydpg-privacy_point a:hover {
  color: #ffd700;
}

.ydpg-privacy_contact {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ydpg-privacy_contact i {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: block;
}

.ydpg-privacy_contact p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.ydpg-privacy_contact a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.ydpg-privacy_contact a:hover {
  color: #ffd700;
}

@media (max-width: 1024px) {
  .ydpg-privacy_policy {
    padding: 7rem 1.5rem 3rem;
  }
  
  .ydpg-privacy_container h1 {
    font-size: 3rem;
  }
  
  .ydpg-privacy_section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .ydpg-privacy_policy {
    padding: 10rem 1rem 2rem;
  }
  
  .ydpg-privacy_container h1 {
    font-size: 2.5rem;
  }
  
  .ydpg-privacy_intro {
    padding: 2rem;
  }
  
  .ydpg-privacy_header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .ydpg-privacy_point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .ydpg-privacy_container h1 {
    font-size: 2rem;
  }
  
  .ydpg-privacy_intro {
    padding: 1.5rem;
  }
  
  .ydpg-privacy_section {
    padding: 1.5rem;
  }
  
  .ydpg-privacy_header h2 {
    font-size: 1.8rem;
  }
  
  .ydpg-privacy_point h3 {
    font-size: 1.2rem;
  }
}