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

:root {
  --wl-gradient-primary: linear-gradient(135deg, #0f172a, #1d4ed8, #780ee9);
  --wl-gradient-secondary: linear-gradient(45deg, #22d3ee, #2563eb, #6e38f8);
  --wl-gradient-tertiary: linear-gradient(120deg, #22c55e, #0ea5e9, #8125eb);
  --wl-color-accent: #2563eb;
  --wl-color-light: #f8fafc;
  --wl-color-dark: #0f172a;
  --wl-color-text: #1e293b;
  --wl-color-success: #22c55e;
  --wl-color-info: #38bdf8;
  --wl-color-warning: #f59e0b;
  --wl-color-error: #b91c1c;
  --wl-shadow-soft: 0 8px 32px rgba(15, 23, 42, 0.12);
  --wl-shadow-medium: 0 15px 35px rgba(15, 23, 42, 0.18);
  --wl-shadow-strong: 0 25px 50px rgba(15, 23, 42, 0.25);
  --wl-border-radius: 16px;
  --wl-transition-fast: 0.3s ease;
  --wl-transition-medium: 0.5s ease;
  --wl-transition-slow: 0.8s ease;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--wl-color-text);
  background: var(--wl-gradient-primary);
  min-height: 100vh;
  position: relative;
}

.az-background_image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/nova-core/nova-media/well-bg-img.webp') center/cover no-repeat;
  z-index: -1;
}

.az-navigation_header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  position: relative;
  top: 0;
  z-index: 1000;
}

.az-navigation_container {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.az-navigation_logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  color: var(--wl-color-light);
}

.az-navigation_logo img {
  width: 100%;
  max-width: 40px;
  height: 100%;
  max-height: 40px;
}

.az-navigation_menu {
  display: flex;
  gap: 2rem;
}

.az-navigation_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wl-color-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--wl-transition-fast);
  padding: 0.5rem 1rem;
  border-radius: var(--wl-border-radius);
}

.az-navigation_link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.az-navigation_toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.az-navigation_toggle span {
  width: 25px;
  height: 3px;
  background: var(--wl-color-light);
  transition: var(--wl-transition-fast);
  border-radius: 2px;
}

main {
  max-width: 1610px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--wl-shadow-strong);
  border-radius: var(--wl-border-radius);
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.az-promo_gaming {
  padding: 6rem 2rem;
  background: var(--wl-gradient-secondary);
  color: var(--wl-color-light);
  text-align: center;
}

.az-promo_container {
  max-width: 1200px;
  margin: 0 auto;
}

.az-promo_gaming h1 {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
}

.az-promo_description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  min-height: 4.5rem;
}

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

.az-promo_card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--wl-border-radius);
  flex: 1 1 300px;
  max-width: 350px;
  transition: var(--wl-transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.az-promo_card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.az-promo_card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.az-promo_card h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.az-promo_card p {
  line-height: 1.6;
}

.az-promo_button {
  display: inline-block;
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--wl-transition-medium);
  border: 2px solid transparent;
}

.az-promo_button:hover {
  background: transparent;
  color: var(--wl-color-light);
  border-color: var(--wl-color-light);
  transform: scale(1.05);
}

.az-about_journey {
  padding: 6rem 2rem;
  background: var(--wl-color-light);
}

.az-about_container {
  max-width: 1200px;
  margin: 0 auto;
}

.az-about_journey h2 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--wl-color-dark);
  min-height: 3.5rem;
}

.az-about_blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.az-about_block {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.az-about_block:nth-child(even) {
  flex-direction: row;
}

.az-about_image {
  flex: 1;
}

.az-about_image img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 400px;
  border-radius: var(--wl-border-radius);
  box-shadow: var(--wl-shadow-medium);
}

.az-about_content {
  flex: 1;
}

.az-about_content h3 {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--wl-color-dark);
  min-height: 2.5rem;
}

.az-about_content p {
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.az-about_minicards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.az-about_minicard {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wl-gradient-tertiary);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  color: var(--wl-color-light);
  font-weight: 500;
}

.az-about_minicard i {
  font-size: 1.2rem;
}

.az-about_link {
  display: inline-block;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--wl-transition-fast);
}

.az-about_link:hover {
  transform: translateY(-3px);
  box-shadow: var(--wl-shadow-soft);
}

.az-gaming_experience {
  padding: 6rem 2rem;
  background: var(--wl-gradient-tertiary);
}

.az-gaming_container {
  max-width: 1200px;
  margin: 0 auto;
}

.az-gaming_experience h2 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--wl-color-light);
  min-height: 3.5rem;
}

.az-gaming_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.az-gaming_card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--wl-border-radius);
  overflow: hidden;
  box-shadow: var(--wl-shadow-medium);
  transition: var(--wl-transition-medium);
  flex: 1 1 310px;
  max-width: 360px;
  position: relative;
}

.az-gaming_card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--wl-shadow-strong);
}

.az-gaming_badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.az-gaming_card img {
  width: 100%;
  max-width: 360px;
  height: 100%;
  max-height: 210px;
}

.az-gaming_content {
  padding: 1.5rem;
  text-align: center;
}

.az-gaming_content h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--wl-color-dark);
  min-height: 2.5rem;
}

.az-gaming_content i {
  font-size: 2rem;
  color: var(--wl-color-accent);
  margin-bottom: 1rem;
  display: block;
}

.az-gaming_button {
  display: inline-block;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--wl-transition-fast);
  border: 2px solid transparent;
}

.az-gaming_button:hover {
  background: transparent;
  color: var(--wl-color-accent);
  border-color: var(--wl-color-accent);
}

.az-features_showcase {
  padding: 6rem 2rem;
  background: var(--wl-color-light);
}

.az-features_container {
  max-width: 1200px;
  margin: 0 auto;
}

.az-features_showcase h2 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--wl-color-dark);
  min-height: 3.5rem;
}

.az-features_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.az-features_card {
  background: var(--wl-gradient-secondary);
  color: var(--wl-color-light);
  padding: 2.5rem 2rem;
  border-radius: var(--wl-border-radius);
  flex: 1 1 350px;
  max-width: 380px;
  text-align: center;
  transition: var(--wl-transition-medium);
  box-shadow: var(--wl-shadow-soft);
}

.az-features_card:hover {
  transform: rotate(3deg) scale(1.05);
  box-shadow: var(--wl-shadow-medium);
}

.az-features_card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.az-features_card h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.az-features_card p {
  line-height: 1.6;
  font-size: 1.1rem;
}

.az-newsletter_subscription {
  padding: 6rem 2rem;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
}

.az-newsletter_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.az-newsletter_content {
  flex: 1 1 400px;
}

.az-newsletter_content h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.az-newsletter_content p {
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.az-newsletter_benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.az-newsletter_benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.az-newsletter_formcontainer {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--wl-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.az-newsletter_form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.az-newsletter_inputgroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.az-newsletter_inputgroup input {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--wl-color-light);
  font-size: 1rem;
  transition: var(--wl-transition-fast);
}

.az-newsletter_inputgroup input:focus {
  outline: none;
  border-color: var(--wl-color-light);
  background: rgba(255, 255, 255, 0.2);
}

.az-newsletter_inputgroup input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.az-newsletter_error {
  color: var(--wl-color-error);
  font-size: 0.9rem;
  min-height: 1.2rem;
  display: none;
}

.az-newsletter_checkgroup {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.az-newsletter_checkgroup input {
  margin-top: 0.25rem;
}

.az-newsletter_checkgroup label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.az-newsletter_checkgroup a {
  color: var(--wl-color-light);
  text-decoration: underline;
}

.az-newsletter_button {
  padding: 1rem 2rem;
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--wl-transition-fast);
}

.az-newsletter_button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: var(--wl-shadow-soft);
}

.az-newsletter_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.az-newsletter_success {
  text-align: center;
  display: none;
}

.az-newsletter_success i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--wl-color-success);
}

.az-newsletter_success h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  min-height: 2.2rem;
}

.az-newsletter_success p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.az-newsletter_successbuttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.az-newsletter_successbuttons button {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--wl-color-light);
  background: transparent;
  color: var(--wl-color-light);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--wl-transition-fast);
  font-weight: 600;
}

.az-newsletter_successbuttons button:hover {
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
}

.az-newsletter_animation {
  flex: 0 0 100px;
  text-align: center;
}

.az-newsletter_animation svg {
  width: 80px;
  height: 80px;
  color: var(--wl-color-light);
  animation: wl-rotate 8s linear infinite;
}

@keyframes wl-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.az-faq_section {
  padding: 6rem 2rem;
  background: var(--wl-color-light);
}

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

.az-faq_section h2 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--wl-color-dark);
  min-height: 3.5rem;
}

.az-faq_columns {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.az-faq_column {
  flex: 1;
}

.az-faq_column h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--wl-color-dark);
  text-align: center;
  min-height: 2.2rem;
}

.az-faq_item {
  margin-bottom: 1.5rem;
  border: 2px solid rgba(138, 43, 226, 0.1);
  border-radius: var(--wl-border-radius);
  overflow: hidden;
  transition: var(--wl-transition-fast);
}

.az-faq_item:hover {
  border-color: rgba(138, 43, 226, 0.3);
}

.az-faq_question {
  padding: 1.5rem;
  background: rgba(138, 43, 226, 0.05);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--wl-transition-fast);
}

.az-faq_question:hover {
  background: rgba(138, 43, 226, 0.1);
}

.az-faq_question i {
  transition: var(--wl-transition-fast);
}

.az-faq_question.state-active i {
  transform: rotate(180deg);
}

.az-faq_answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--wl-transition-medium);
}

.az-faq_answer.state-active {
  padding: 1.5rem;
  max-height: 500px;
}

.az-faq_answer p {
  line-height: 1.6;
}

.az-faq_contact {
  display: block;
  text-align: center;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--wl-transition-fast);
  max-width: 300px;
  margin: 0 auto;
}

.az-faq_contact:hover {
  transform: translateY(-3px);
  box-shadow: var(--wl-shadow-soft);
}

.az-welcome_experience {
  padding: 6rem 2rem;
  background: var(--wl-gradient-secondary);
  color: var(--wl-color-light);
}

.az-welcome_container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.az-welcome_experience h2 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  min-height: 3.5rem;
}

.az-welcome_description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  min-height: 4rem;
}

.az-welcome_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.az-welcome_card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: var(--wl-border-radius);
  flex: 1 1 300px;
  max-width: 350px;
  transition: var(--wl-transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.az-welcome_card:hover {
  transform: translateY(-10px) rotate(2deg);
  background: rgba(255, 255, 255, 0.2);
}

.az-welcome_card h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.az-welcome_card p {
  margin-bottom: 2rem;
  line-height: 1.6;
  min-height: 55px;
}

.az-welcome_card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.az-welcome_link {
  display: inline-block;
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--wl-transition-fast);
  border: 2px solid transparent;
}

.az-welcome_link:hover {
  background: transparent;
  color: var(--wl-color-light);
  border-color: var(--wl-color-light);
}

.az-testimonials_showcase {
  padding: 6rem 2rem;
  background: var(--wl-color-light);
}

.az-testimonials_container {
  max-width: 1200px;
  margin: 0 auto;
}

.az-testimonials_showcase h2 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--wl-color-dark);
  min-height: 3.5rem;
}

.az-testimonials_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.az-testimonial_card {
  background: var(--wl-gradient-tertiary);
  color: var(--wl-color-light);
  padding: 2rem;
  border-radius: var(--wl-border-radius);
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: var(--wl-shadow-medium);
  transition: var(--wl-transition-medium);
  position: relative;
  overflow: hidden;
}

.az-testimonial_card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--wl-shadow-strong);
}

.az-testimonial_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--wl-gradient-primary);
}

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

.az-testimonial_header img {
  width: 100%;
  max-width: 60px;
  height: 100%;
  max-height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.az-testimonial_info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.az-testimonial_name {
  font-weight: 600;
  font-size: 1.1rem;
}

.az-testimonial_city {
  font-size: 0.9rem;
  opacity: 0.9;
}

.az-testimonial_rating {
  display: flex;
  gap: 0.25rem;
  color: #facc15;
}

.az-testimonial_text {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
}

.az-testimonial_text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2rem;
  opacity: 0.7;
}

.az-testimonial_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.az-testimonial_date {
  font-weight: 500;
}

.az-responsibility_commitment {
  padding: 6rem 2rem;
  background: var(--wl-color-light);
}

.az-responsibility_container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.az-responsibility_commitment h2 {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--wl-color-dark);
  min-height: 3.5rem;
}

.az-responsibility_content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.az-responsibility_content a {
  color: var(--wl-color-accent);
  text-decoration: none;
  font-weight: 600;
}

.az-responsibility_content a:hover {
  text-decoration: underline;
}

.az-responsibility_link {
  display: inline-block;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--wl-transition-fast);
}

.az-responsibility_link:hover {
  transform: translateY(-3px);
  box-shadow: var(--wl-shadow-soft);
}

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

.az-responsibility_partner {
  flex: 0 1 auto;
}

.az-responsibility_partner img {
  border-radius: 12px;
  transition: var(--wl-transition-fast);
  box-shadow: var(--wl-shadow-soft);
}

.az-responsibility_partner img:hover {
  transform: scale(1.05);
  box-shadow: var(--wl-shadow-medium);
}

.az-contact_form {
  padding: 6rem 2rem;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
}

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

.az-contact_formarea {
  flex: 1 1 500px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--wl-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.az-contact_formarea h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  min-height: 3rem;
}

.az-contact_formmain {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.az-contact_inputgroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.az-contact_inputgroup input,
.az-contact_inputgroup textarea {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--wl-color-light);
  font-size: 1rem;
  transition: var(--wl-transition-fast);
  font-family: 'Nunito Sans', sans-serif;
}

.az-contact_inputgroup input:focus,
.az-contact_inputgroup textarea:focus {
  outline: none;
  border-color: var(--wl-color-light);
  background: rgba(255, 255, 255, 0.2);
}

.az-contact_inputgroup input::placeholder,
.az-contact_inputgroup textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.az-contact_inputgroup input#az-contact_phone {
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
}

.az-contact_inputgroup input#az-contact_phone::placeholder {
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: normal;
}

.az-contact_inputgroup textarea {
  resize: vertical;
  min-height: 120px;
}

.az-contact_error {
  color: var(--wl-color-error);
  font-size: 0.9rem;
  min-height: 1.2rem;
  display: none;
}

.az-contact_checkgroup {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.az-contact_checkgroup input {
  margin-top: 0.25rem;
}

.az-contact_checkgroup label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.az-contact_checkgroup a {
  color: var(--wl-color-light);
  text-decoration: underline;
}

.az-contact_button {
  padding: 1rem 2rem;
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--wl-transition-fast);
  margin-top: 1rem;
}

.az-contact_button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: var(--wl-shadow-soft);
}

.az-contact_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.az-contact_success {
  text-align: center;
  display: none;
}

.az-contact_success i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--wl-color-success);
}

.az-contact_success h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  min-height: 2.2rem;
}

.az-contact_success p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.az-contact_success button {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--wl-color-light);
  background: transparent;
  color: var(--wl-color-light);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--wl-transition-fast);
  font-weight: 600;
}

.az-contact_success button:hover {
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
}

.az-contact_info {
  flex: 1 1 400px;
}

.az-contact_info h3 {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}

.az-contact_info p {
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.az-contact_infocards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.az-contact_infocard {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--wl-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--wl-transition-fast);
}

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

.az-contact_infocard i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--wl-color-info);
}

.az-contact_infocard h4 {
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  min-height: 1.6rem;
}

.az-contact_infocard p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.az-contact_animation {
  flex: 0 0 100px;
  text-align: center;
  align-self: center;
}

.az-contact_animation svg {
  width: 80px;
  height: 80px;
  color: var(--wl-color-light);
  animation: wl-pulse 2s ease-in-out infinite alternate;
}

@keyframes wl-pulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.az-site_footer {
  background: rgba(15, 23, 42, 0.92);
  color: var(--wl-color-light);
  padding: 3rem 0 1.5rem;
}

.az-footer_container {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.az-footer_brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.az-footer_brand span {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.az-footer_links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.az-footer_links a {
  color: var(--wl-color-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--wl-transition-fast);
}

.az-footer_links a:hover {
  color: var(--wl-color-info);
}

.az-footer_contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wl-color-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--wl-transition-fast);
}

.az-footer_contact a:hover {
  color: var(--wl-color-info);
}

.az-footer_copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

.az-cookies_notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  color: var(--wl-color-light);
  padding: 1.5rem 0;
  z-index: 1001;
  display: none;
}

.az-cookies_container {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.az-cookies_container p {
  flex: 1;
  margin: 0;
  line-height: 1.5;
}

.az-cookies_container a {
  color: var(--wl-color-info);
  text-decoration: underline;
}

.az-cookies_accept {
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wl-transition-fast);
  flex-shrink: 0;
}

.az-cookies_accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--wl-shadow-soft);
}

.az-age_verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.995);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

.az-age_container {
  background: var(--wl-gradient-secondary);
  color: var(--wl-color-light);
  padding: 3rem;
  border-radius: var(--wl-border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--wl-shadow-strong);
  animation: wl-scaleIn 0.5s ease-out;
}

@keyframes wl-scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.az-age_container h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  min-height: 2.8rem;
}

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

.az-age_buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.az-age_confirm {
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wl-transition-fast);
  flex: 1;
  max-width: 200px;
}

.az-age_confirm:hover {
  transform: translateY(-3px);
  box-shadow: var(--wl-shadow-soft);
}

.az-age_decline {
  background: transparent;
  color: var(--wl-color-light);
  border: 2px solid var(--wl-color-light);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wl-transition-fast);
  flex: 1;
  max-width: 200px;
}

.az-age_decline:hover {
  background: var(--wl-color-light);
  color: var(--wl-color-accent);
}

.az-scroll_top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--wl-gradient-primary);
  color: var(--wl-color-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--wl-transition-fast);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--wl-shadow-medium);
}

.az-scroll_top.state-visible {
  opacity: 1;
  visibility: visible;
}

.az-scroll_top:hover {
  transform: translateY(-5px);
  box-shadow: var(--wl-shadow-strong);
}

@media (max-width: 1024px) {
  .az-promo_gaming h1,
  .az-about_journey h2,
  .az-gaming_experience h2,
  .az-features_showcase h2,
  .az-faq_section h2,
  .az-welcome_experience h2,
  .az-testimonials_showcase h2,
  .az-responsibility_commitment h2 {
    font-size: 2.5rem;
  }
  
  .az-about_block {
    flex-direction: column;
    gap: 2rem;
  }
  
  .az-about_block:nth-child(even) {
    flex-direction: column;
  }
  
  .az-gaming_cards {
    gap: 1.5rem;
  }
  
  .az-faq_columns {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .az-navigation_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  
  .az-navigation_menu.state-active {
    display: flex;
  }
  
  .az-navigation_toggle {
    display: flex;
  }
  
  .az-navigation_toggle.state-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .az-navigation_toggle.state-active span:nth-child(2) {
    opacity: 0;
  }
  
  .az-navigation_toggle.state-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .az-promo_gaming,
  .az-about_journey,
  .az-gaming_experience,
  .az-features_showcase,
  .az-newsletter_subscription,
  .az-faq_section,
  .az-welcome_experience,
  .az-testimonials_showcase,
  .az-responsibility_commitment,
  .az-contact_form {
    padding: 4rem 1rem;
  }
  
  .az-promo_gaming h1,
  .az-about_journey h2,
  .az-gaming_experience h2,
  .az-features_showcase h2,
  .az-faq_section h2,
  .az-welcome_experience h2,
  .az-testimonials_showcase h2,
  .az-responsibility_commitment h2 {
    font-size: 2rem;
  }
  
  .az-promo_description,
  .az-welcome_description {
    font-size: 1.1rem;
  }
  
  .az-newsletter_container,
  .az-contact_container {
    flex-direction: column;
    gap: 2rem;
  }

  .az-gaming_card {
    min-height: 455px;
  }
  
  .az-features_grid {
    gap: 1.5rem;
  }
  
  .az-features_card {
    flex: 1 1 300px;
  }
  
  .az-testimonials_grid {
    gap: 1.5rem;
  }
  
  .az-testimonial_card {
    flex: 1 1 350px;
  }
  
  .az-responsibility_partners {
    gap: 1.5rem;
  }
  
  .az-footer_main {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .az-cookies_container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .az-age_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .az-age_confirm,
  .az-age_decline {
    max-width: 250px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .az-navigation_container {
    padding: 0 1rem;
  }
  
  .az-promo_gaming,
  .az-about_journey,
  .az-gaming_experience,
  .az-features_showcase,
  .az-newsletter_subscription,
  .az-faq_section,
  .az-welcome_experience,
  .az-testimonials_showcase,
  .az-responsibility_commitment,
  .az-contact_form {
    padding: 3rem 0.5rem;
  }
  
  .az-promo_gaming h1,
  .az-about_journey h2,
  .az-gaming_experience h2,
  .az-features_showcase h2,
  .az-faq_section h2,
  .az-welcome_experience h2,
  .az-testimonials_showcase h2,
  .az-responsibility_commitment h2 {
    font-size: 1.8rem;
  }
  
  .az-promo_card,
  .az-gaming_card,
  .az-features_card,
  .az-welcome_card,
  .az-testimonial_card {
    flex: 1 1 100%;
  }
  
  .az-about_minicards {
    justify-content: center;
  }
  
  .az-newsletter_formcontainer,
  .az-contact_formarea {
    padding: 1.5rem;
  }

  .az-responsibility_partners {
    flex-direction: column;
    gap: 1rem;
  }

  .az-responsibility_partner img {
    width: 100%;
    min-width: 219px;
    max-width: 220px;
  }
  
  .az-footer_container {
    padding: 0 1rem;
  }
  
  .az-footer_links {
    justify-content: center;
  }
  
  .az-age_container {
    padding: 2rem 1.5rem;
  }
  
  .az-scroll_top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 320px) {
  .az-promo_gaming,
  .az-about_journey,
  .az-gaming_experience,
  .az-features_showcase,
  .az-newsletter_subscription,
  .az-faq_section,
  .az-welcome_experience,
  .az-testimonials_showcase,
  .az-responsibility_commitment,
  .az-contact_form {
    padding: 2rem 0.3rem;
  }
  
  .az-promo_gaming h1,
  .az-about_journey h2,
  .az-gaming_experience h2,
  .az-features_showcase h2,
  .az-faq_section h2,
  .az-welcome_experience h2,
  .az-testimonials_showcase h2,
  .az-responsibility_commitment h2 {
    font-size: 1.6rem;
  }
  
  .az-promo_description,
  .az-welcome_description {
    font-size: 1rem;
  }
  
  .az-promo_card,
  .az-gaming_card,
  .az-features_card,
  .az-welcome_card,
  .az-testimonial_card {
    padding: 1.5rem;
  }
  
  .az-newsletter_formcontainer,
  .az-contact_formarea {
    padding: 1rem;
  }
  
  .az-footer_main {
    gap: 1rem;
  }
  
  .az-footer_links {
    gap: 1rem;
  }
}

.azpg-notfound_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d4ed8 0%, #312e81 50%, #38bdf8 100%);
  position: relative;
  overflow: hidden;
}

.azpg-notfound_main::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='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: wlpg-notfound-float 30s linear infinite;
}

@keyframes wlpg-notfound-float {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

.azpg-notfound_hero {
  padding: 6rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.azpg-notfound_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.azpg-notfound_content {
  flex: 1;
  color: white;
}

.azpg-notfound_content h1 {
  font-family: 'Marcellus', serif;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-notfound_message {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
}

.azpg-notfound_animation {
  margin-bottom: 3rem;
  text-align: center;
}

.azpg-notfound_animation i {
  font-size: 8rem;
  color: #facc15;
  animation: wlpg-notfound-search 3s ease-in-out infinite;
}

@keyframes wlpg-notfound-search {
  0%, 100% { 
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
  25% { 
    transform: translateX(-20px) rotate(-10deg);
    opacity: 0.7;
  }
  50% { 
    transform: translateX(20px) rotate(10deg);
    opacity: 0.7;
  }
  75% { 
    transform: translateX(-10px) rotate(-5deg);
    opacity: 0.9;
  }
}

.azpg-notfound_button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #0f172a;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.azpg-notfound_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;
}

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

.azpg-notfound_button:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.azpg-notfound_image {
  flex: 1;
  text-align: center;
}

.azpg-notfound_image img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 400px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: wlpg-notfound-float-image 4s ease-in-out infinite;
}

@keyframes wlpg-notfound-float-image {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.azpg-notfound_suggestions {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

.azpg-notfound_suggestionscontainer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.azpg-notfound_suggestions h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.azpg-notfound_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.azpg-notfound_card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.azpg-notfound_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1d4ed8, #312e81, #38bdf8);
  background-size: 200% 100%;
  animation: wlpg-notfound-slide 3s ease-in-out infinite;
}

@keyframes wlpg-notfound-slide {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

.azpg-notfound_card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.azpg-notfound_card i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wlpg-notfound-pulse 2s ease-in-out infinite;
}

@keyframes wlpg-notfound-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.azpg-notfound_card h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.azpg-notfound_card p {
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .azpg-notfound_container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .azpg-notfound_content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .azpg-notfound_hero {
    padding: 4rem 1rem 2rem;
  }
  
  .azpg-notfound_content h1 {
    font-size: 2.8rem;
  }
  
  .azpg-notfound_message {
    font-size: 1.2rem;
  }
  
  .azpg-notfound_animation i {
    font-size: 6rem;
  }
  
  .azpg-notfound_button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .azpg-notfound_suggestions {
    padding: 3rem 1rem;
  }
  
  .azpg-notfound_suggestions h2 {
    font-size: 2rem;
  }
  
  .azpg-notfound_cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .azpg-notfound_card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .azpg-notfound_content h1 {
    font-size: 2.2rem;
  }
  
  .azpg-notfound_message {
    font-size: 1.1rem;
  }
  
  .azpg-notfound_animation i {
    font-size: 4rem;
  }
  
  .azpg-notfound_button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .azpg-notfound_suggestions h2 {
    font-size: 1.8rem;
  }
  
  .azpg-notfound_card {
    padding: 2rem 1.25rem;
  }
  
  .azpg-notfound_card i {
    font-size: 2.5rem;
  }
  
  .azpg-notfound_card h3 {
    font-size: 1.5rem;
  }
}

.azpg-responsible_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 50%, #22c55e 100%);
}

.azpg-responsible_hero {
  padding: 5rem 2rem 3rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  text-align: center;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.azpg-responsible_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='%23ffffff' fill-opacity='0.2'%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: wlpg-responsible-float 20s linear infinite;
}

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

.azpg-responsible_container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.azpg-responsible_hero h1 {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.azpg-responsible_intro {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #1e293b;
  opacity: 0.9;
}

.azpg-responsible_hero i {
  font-size: 4rem;
  color: var(--wl-color-success);
  animation: wlpg-responsible-heartbeat 1.5s ease-in-out infinite;
}

@keyframes wlpg-responsible-heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

.azpg-responsible_sections {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.azpg-responsible_section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 35px;
  padding: 4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.azpg-responsible_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #2563eb, #38bdf8, #22c55e);
  background-size: 200% 100%;
  animation: wlpg-responsible-slide 4s ease-in-out infinite;
}

@keyframes wlpg-responsible-slide {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

.azpg-responsible_section:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.azpg-responsible_header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 3px solid rgba(37, 99, 235, 0.3);
  position: relative;
}

.azpg-responsible_header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transition: width 0.6s ease;
}

.azpg-responsible_section:hover .azpg-responsible_header::after {
  width: 100%;
}

.azpg-responsible_header i {
  font-size: 3.5rem;
  color: #22c55e;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wlpg-responsible-spin 10s linear infinite;
}

@keyframes wlpg-responsible-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.azpg-responsible_header h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.8rem;
  color: #0f172a;
  margin: 0;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-responsible_points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
}

.azpg-responsible_point {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
  border-radius: 30px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.azpg-responsible_point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.12));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.azpg-responsible_point:hover {
  border-color: #2563eb;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.22);
}

.azpg-responsible_icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.4s ease;
}

.azpg-responsible_point:hover .azpg-responsible_icon {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.38);
}

.azpg-responsible_icon i {
  font-size: 2.5rem;
  color: white;
}

.azpg-responsible_text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.azpg-responsible_text h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-responsible_text p {
  line-height: 1.8;
  color: #1e293b;
  margin: 0;
  font-size: 1.15rem;
}

.azpg-responsible_contact {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.azpg-responsible_contactcard {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
  padding: 4rem;
  border-radius: 35px;
  text-align: center;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.azpg-responsible_contactcard::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='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: wlpg-responsible-float 15s linear infinite;
}

.azpg-responsible_contactcard i:first-child {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
  position: relative;
  z-index: 1;
}

.azpg-responsible_contactcard h3 {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.azpg-responsible_contactcard p {
  margin-bottom: 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.azpg-responsible_contactcard a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: var(--wl-color-accent);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.azpg-responsible_contactcard a:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .azpg-responsible_points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .azpg-responsible_hero {
    padding: 4rem 1rem 2rem;
  }
  
  .azpg-responsible_hero h1 {
    font-size: 2.5rem;
  }
  
  .azpg-responsible_intro {
    font-size: 1.1rem;
  }
  
  .azpg-responsible_content {
    padding: 2rem 1rem;
  }
  
  .azpg-responsible_section {
    padding: 3rem 2rem;
  }
  
  .azpg-responsible_header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .azpg-responsible_point {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .azpg-responsible_icon {
    align-self: center;
  }
  
  .azpg-responsible_contactcard {
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .azpg-responsible_hero h1 {
    font-size: 2rem;
  }
  
  .azpg-responsible_hero i {
    font-size: 3rem;
  }
  
  .azpg-responsible_header h2 {
    font-size: 2.2rem;
  }
  
  .azpg-responsible_section {
    padding: 2.5rem 1.5rem;
  }
  
  .azpg-responsible_point {
    padding: 2.5rem 2rem;
  }
  
  .azpg-responsible_icon {
    width: 80px;
    height: 80px;
  }
  
  .azpg-responsible_icon i {
    font-size: 2rem;
  }
  
  .azpg-responsible_text h3 {
    font-size: 1.6rem;
  }

  .azpg-responsible_contactcard {
    padding: 2.5rem 0.3rem;
  }

  .azpg-responsible_contactcard a {
    flex-direction: column;
    gap: 0.5rem;    
    font-size: 0.94rem;
  }

  .azpg-responsible_contactcard.azpg-responsible_contactcard i:first-child {
    font-size: 2rem;
    margin-bottom: 0;
  }
}

.azpg-cookies_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #bae6fd 0%, #cffafe 100%);
}

.azpg-cookies_hero {
  padding: 5rem 2rem 3rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  text-align: center;
  color: #0f172a;
  position: relative;
}

.azpg-cookies_hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #bae6fd, #cffafe, #bae6fd);
  animation: wlpg-cookies-slide 3s ease-in-out infinite;
}

@keyframes wlpg-cookies-slide {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

.azpg-cookies_container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.azpg-cookies_hero h1 {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0f172a, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-cookies_intro {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #1e293b;
  opacity: 0.9;
}

.azpg-cookies_hero i {
  font-size: 4rem;
  color: var(--wl-color-accent);
  animation: wlpg-cookies-bounce 2s ease-in-out infinite;
}

@keyframes wlpg-cookies-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.azpg-cookies_content {
  padding: 4rem 2rem;
}

.azpg-cookies_sections {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.azpg-cookies_section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.azpg-cookies_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #bae6fd, #cffafe, #bae6fd);
  background-size: 200% 100%;
  animation: wlpg-cookies-slide 3s ease-in-out infinite;
}

.azpg-cookies_section:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.azpg-cookies_header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(168, 237, 234, 0.5);
  position: relative;
}

.azpg-cookies_header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #bae6fd, #cffafe);
  transition: width 0.5s ease;
}

.azpg-cookies_section:hover .azpg-cookies_header::after {
  width: 100%;
}

.azpg-cookies_header i {
  font-size: 3rem;
  color: #38bdf8;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-cookies_header h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  color: #0f172a;
  margin: 0;
}

.azpg-cookies_points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.azpg-cookies_point {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(168, 237, 234, 0.1), rgba(254, 214, 227, 0.1));
  border-radius: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.azpg-cookies_point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 237, 234, 0.2), rgba(254, 214, 227, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.azpg-cookies_point:hover::before {
  opacity: 1;
}

.azpg-cookies_point:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.azpg-cookies_number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.azpg-cookies_point:hover .azpg-cookies_number {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
}

.azpg-cookies_text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.azpg-cookies_text h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0f172a, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-cookies_text p {
  line-height: 1.7;
  color: #1e293b;
  margin: 0;
  font-size: 1.1rem;
}

.azpg-cookies_contact {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.azpg-cookies_contactcard {
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: white;
  padding: 3.5rem;
  border-radius: 30px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.azpg-cookies_contactcard::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: wlpg-cookies-shine 3s ease-in-out infinite;
}

@keyframes wlpg-cookies-shine {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

.azpg-cookies_contactcard i:first-child {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.azpg-cookies_contactcard h3 {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.azpg-cookies_contactcard p {
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.azpg-cookies_contactcard a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: #38bdf8;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.azpg-cookies_contactcard a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .azpg-cookies_points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .azpg-cookies_hero {
    padding: 4rem 1rem 2rem;
  }
  
  .azpg-cookies_hero h1 {
    font-size: 2.5rem;
  }
  
  .azpg-cookies_intro {
    font-size: 1.1rem;
  }
  
  .azpg-cookies_content {
    padding: 2rem 1rem;
  }
  
  .azpg-cookies_section {
    padding: 2.5rem 2rem;
  }
  
  .azpg-cookies_header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .azpg-cookies_point {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .azpg-cookies_number {
    align-self: center;
  }
  
  .azpg-cookies_contactcard {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .azpg-cookies_hero h1 {
    font-size: 2rem;
  }
  
  .azpg-cookies_hero i {
    font-size: 3rem;
  }
  
  .azpg-cookies_header h2 {
    font-size: 2rem;
  }
  
  .azpg-cookies_section {
    padding: 2rem 1.5rem;
  }
  
  .azpg-cookies_point {
    padding: 2rem;
  }
  
  .azpg-cookies_number {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  
  .azpg-cookies_text h3 {
    font-size: 1.4rem;
  }

  .azpg-cookies_contactcard {
    padding: 2.5rem 0.3rem;
  }

  .azpg-cookies_contactcard a {
    flex-direction: column;
    gap: 0.5rem;    
  }

  .azpg-cookies_contactcard.azpg-cookies_contactcard i:first-child {
    font-size: 2rem;
    margin-bottom: 0;
  }
}

.azpg-terms_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
}

.azpg-terms_hero {
  padding: 5rem 2rem 3rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.azpg-terms_hero::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='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: wlpg-terms-float 20s linear infinite;
}

@keyframes wlpg-terms-float {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

.azpg-terms_container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.azpg-terms_hero h1 {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.azpg-terms_intro {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.azpg-terms_hero i {
  font-size: 4rem;
  color: #facc15;
  animation: wlpg-terms-spin 8s linear infinite;
}

@keyframes wlpg-terms-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.azpg-terms_content {
  padding: 4rem 2rem;
}

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

.azpg-terms_section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.azpg-terms_section::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;
}

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

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

.azpg-terms_header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid rgba(37, 99, 235, 0.3);
  position: relative;
}

.azpg-terms_header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transition: width 0.3s ease;
}

.azpg-terms_section:hover .azpg-terms_header::after {
  width: 100%;
}

.azpg-terms_header i {
  font-size: 2.8rem;
  color: #2563eb;
  background: linear-gradient(135deg, #2563eb, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-terms_header h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.4rem;
  color: #0f172a;
  margin: 0;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-terms_points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.azpg-terms_point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(14, 165, 233, 0.06));
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.azpg-terms_point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.azpg-terms_point:hover::before {
  transform: scaleX(1);
}

.azpg-terms_point:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
}

.azpg-terms_icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #facc15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.azpg-terms_icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #2563eb, #facc15);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  animation: wlpg-terms-pulse 2s ease-in-out infinite;
}

@keyframes wlpg-terms-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.azpg-terms_icon i {
  font-size: 2rem;
  color: white;
}

.azpg-terms_text h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.azpg-terms_text p {
  line-height: 1.7;
  color: #1e293b;
  margin: 0;
}

.azpg-terms_text a {
  color: var(--wl-color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.azpg-terms_text a:hover {
  color: var(--wl-color-info);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .azpg-terms_points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .azpg-terms_hero {
    padding: 4rem 1rem 2rem;
  }
  
  .azpg-terms_hero h1 {
    font-size: 2.5rem;
  }
  
  .azpg-terms_intro {
    font-size: 1.1rem;
  }
  
  .azpg-terms_content {
    padding: 2rem 1rem;
  }
  
  .azpg-terms_section {
    padding: 2rem;
  }
  
  .azpg-terms_header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .azpg-terms_point {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .azpg-terms_icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .azpg-terms_hero h1 {
    font-size: 2rem;
  }
  
  .azpg-terms_hero i {
    font-size: 3rem;
  }
  
  .azpg-terms_header h2 {
    font-size: 1.8rem;
  }
  
  .azpg-terms_section {
    padding: 1.5rem;
  }
  
  .azpg-terms_point {
    padding: 1.5rem;
  }
  
  .azpg-terms_icon {
    width: 60px;
    height: 60px;
  }
  
  .azpg-terms_icon i {
    font-size: 1.5rem;
  }

  .azpg-terms_text a {
    font-size: 0.9rem;
  }
}

.azpg-privacy_main {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d4ed8 0%, #312e81 100%);
}

.azpg-privacy_hero {
  padding: 5rem 2rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  color: white;
}

.azpg-privacy_container {
  max-width: 800px;
  margin: 0 auto;
}

.azpg-privacy_hero h1 {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.azpg-privacy_intro {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.azpg-privacy_hero i {
  font-size: 4rem;
  color: #facc15;
  animation: wlpg-float 3s ease-in-out infinite;
}

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

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

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

.azpg-privacy_section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.azpg-privacy_section:hover {
  transform: translateY(-5px);
}

.azpg-privacy_header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #1d4ed8;
}

.azpg-privacy_header i {
  font-size: 2.5rem;
  color: #1d4ed8;
}

.azpg-privacy_header h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  color: #0f172a;
  margin: 0;
}

.azpg-privacy_points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.azpg-privacy_point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.azpg-privacy_point:hover {
  background: rgba(37, 99, 235, 0.12);
  transform: translateX(10px);
}

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

.azpg-privacy_text h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.azpg-privacy_text p {
  line-height: 1.6;
  color: #1e293b;
  margin: 0;
}

.azpg-privacy_contact {
  display: flex;
  justify-content: center;
}

.azpg-privacy_contactcard {
  background: linear-gradient(135deg, #1d4ed8, #312e81);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.azpg-privacy_contactcard i:first-child {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.azpg-privacy_contactcard h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.azpg-privacy_contactcard p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.azpg-privacy_contactcard a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #1d4ed8;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.azpg-privacy_contactcard a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .azpg-privacy_hero {
    padding: 4rem 1rem 2rem;
  }
  
  .azpg-privacy_hero h1 {
    font-size: 2.5rem;
  }
  
  .azpg-privacy_intro {
    font-size: 1.1rem;
  }
  
  .azpg-privacy_content {
    padding: 2rem 1rem;
  }
  
  .azpg-privacy_section {
    padding: 1.5rem;
  }
  
  .azpg-privacy_header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .azpg-privacy_point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .azpg-privacy_contactcard {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .azpg-privacy_hero h1 {
    font-size: 2rem;
  }
  
  .azpg-privacy_hero i {
    font-size: 3rem;
  }
  
  .azpg-privacy_header h2 {
    font-size: 1.8rem;
  }
  
  .azpg-privacy_section {
    padding: 1rem;
  }
  
  .azpg-privacy_point {
    padding: 1rem;
  }

  .azpg-privacy_contactcard {
    padding: 2.5rem 0.3rem;
  }

  .azpg-privacy_contactcard a {
    flex-direction: column;
    gap: 0.5rem;    
  }

  .azpg-privacy_contactcard.azpg-privacy_contactcard i:first-child {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
