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

:root {
  --yz-gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --yz-gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  --yz-gradient-tertiary: linear-gradient(135deg, #00cdac 0%, #02aab0 100%);
  --yz-gradient-quaternary: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
  --yz-color-dark: #1a1a2e;
  --yz-color-light: #ffffff;
  --yz-color-accent: #4361ee;
  --yz-color-success: #4cc9f0;
  --yz-color-warning: #f72585;
  --yz-color-text: #16213e;
  --yz-color-background: #f8f9fa;
  --yz-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --yz-shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --yz-shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
  --yz-border-radius: 12px;
  --yz-transition: all 0.3s ease;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--yz-color-text);
  background-color: var(--yz-color-background);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  min-height: 4.2rem;
}

h2 {
  font-size: 2.5rem;
  min-height: 3rem;
}

h3 {
  font-size: 1.75rem;
  min-height: 2.1rem;
}

h4 {
  font-size: 1.25rem;
  min-height: 1.5rem;
}

p {
  min-height: 1.5rem;
}

a {
  color: var(--yz-color-accent);
  text-decoration: none;
  transition: var(--yz-transition);
}

a:hover {
  color: var(--yz-color-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.yz-age_verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.yz-age_content {
  background: var(--yz-color-light);
  padding: 40px;
  border-radius: var(--yz-border-radius);
  text-align: center;
  max-width: 500px;
  box-shadow: var(--yz-shadow-strong);
  animation: yz-scaleIn 0.5s ease;
}

.yz-age_icon {
  font-size: 3rem;
  color: var(--yz-color-accent);
  margin-bottom: 20px;
}

.yz-age_title {
  margin-bottom: 15px;
  color: var(--yz-color-dark);
}

.yz-age_text {
  margin-bottom: 25px;
  color: var(--yz-color-text);
}

.yz-age_buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.yz-age_confirm, .yz-age_decline {
  padding: 12px 24px;
  border: none;
  border-radius: var(--yz-border-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--yz-transition);
}

.yz-age_confirm {
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
}

.yz-age_decline {
  background: var(--yz-color-background);
  color: var(--yz-color-text);
}

.yz-age_confirm:hover {
  transform: translateY(-2px);
  box-shadow: var(--yz-shadow-medium);
}

.yz-age_decline:hover {
  background: #e9ecef;
}

.yz-cookies_notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yz-color-light);
  padding: 20px;
  border-radius: var(--yz-border-radius);
  box-shadow: var(--yz-shadow-strong);
  z-index: 9998;
  max-width: 90%;
  width: 600px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: yz-slideUp 0.5s ease;
}

.yz-cookies_icon {
  font-size: 1.5rem;
  color: var(--yz-color-accent);
  flex-shrink: 0;
}

.yz-cookies_text {
  flex-grow: 1;
  margin-bottom: 0;
}

.yz-cookies_accept {
  padding: 8px 16px;
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
  border: none;
  border-radius: var(--yz-border-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--yz-transition);
  flex-shrink: 0;
}

.yz-cookies_accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--yz-shadow-medium);
}

.yz-header_main {
  background: var(--yz-color-light);
  box-shadow: var(--yz-shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.yz-header_container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yz-header_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Gilda Display', serif;
  font-size: 1.5rem;
  color: var(--yz-color-dark);
}

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

.yz-header_nav {
  display: flex;
  gap: 30px;
}

.yz-header_link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yz-color-text);
  font-weight: 500;
}

.yz-header_link:hover {
  color: var(--yz-color-accent);
}

.yz-header_toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  padding: 0;
}

.yz-toggle_line {
  height: 3px;
  width: 100%;
  background: var(--yz-color-dark);
  border-radius: 3px;
  transition: var(--yz-transition);
}

.yz-welcome_section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.yz-welcome_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/yz-core/yz-images/yz-bg-image-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
}

.yz-welcome_content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: var(--yz-color-light);
}

.yz-welcome_content h1 {
  margin-bottom: 20px;
}

.yz-welcome_content > p {
  margin-bottom: 50px;
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.yz-welcome_features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.yz-welcome_card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--yz-border-radius);
  transition: var(--yz-transition);
}

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

.yz-welcome_card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--yz-color-dark);
}

.yz-welcome_card h3 {
  margin-bottom: 10px;
  color: var(--yz-color-dark);
}

.yz-welcome_card p {
  color: rgba(10, 10, 10, 0.9);
}

.yz-welcome_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yz-color-light);
  color: var(--yz-color-accent);
  padding: 15px 30px;
  border-radius: var(--yz-border-radius);
  font-weight: 500;
  transition: var(--yz-transition);
}

.yz-welcome_button:hover {
  transform: translateY(-3px);
  box-shadow: var(--yz-shadow-medium);
  color: var(--yz-color-dark);
}

.yz-gaming_paradise {
  padding: 100px 20px;
  background: var(--yz-color-background);
}

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

.yz-gaming_container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.yz-gaming_container > p {
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.yz-gaming_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.yz-game_card {
  background: var(--yz-color-light);
  border-radius: var(--yz-border-radius);
  overflow: hidden;
  box-shadow: var(--yz-shadow-soft);
  transition: var(--yz-transition);
}

.yz-game_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--yz-shadow-medium);
}

.yz-game_image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.yz-game_image img {
  width: 100%;
  max-width: 585px;
  height: 100%;
  max-height: 200px;
  transition: var(--yz-transition);
}

.yz-game_card:hover .yz-game_image img {
  transform: scale(1.07);
}

.yz-game_badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.yz-game_popular {
  background: var(--yz-gradient-secondary);
  color: var(--yz-color-light);
}

.yz-game_new {
  background: var(--yz-gradient-tertiary);
  color: var(--yz-color-light);
}

.yz-game_recommended {
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
}

.yz-game_premium {
  background: var(--yz-gradient-quaternary);
  color: var(--yz-color-light);
}

.yz-game_card h3 {
  padding: 20px 20px 10px;
  color: var(--yz-color-dark);
}

.yz-game_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 20px 20px;
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
  font-weight: 500;
}

.yz-our_journey {
  padding: 100px 20px;
  background: var(--yz-color-light);
}

.yz-journey_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.yz-journey_content h2 {
  margin-bottom: 20px;
}

.yz-journey_content > p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.yz-journey_highlight {
  background: var(--yz-color-background);
  padding: 20px;
  border-radius: var(--yz-border-radius);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.yz-journey_highlight i {
  font-size: 2rem;
  color: var(--yz-color-accent);
}

.yz-journey_stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.yz-stat_item {
  text-align: center;
  padding: 15px;
  background: var(--yz-color-background);
  border-radius: var(--yz-border-radius);
}

.yz-stat_number {
  display: block;
  font-family: 'Gilda Display', serif;
  font-size: 2rem;
  color: var(--yz-color-accent);
  margin-bottom: 5px;
}

.yz-stat_label {
  font-size: 0.9rem;
  color: var(--yz-color-text);
}

.yz-journey_visual {
  position: relative;
  border-radius: var(--yz-border-radius);
  overflow: hidden;
  box-shadow: var(--yz-shadow-medium);
}

.yz-journey_visual img {
  width: 100%;
  height: auto;
  display: block;
}

.yz-journey_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.8);
  color: var(--yz-color-light);
  padding: 20px;
  text-align: center;
}

.yz-journey_overlay i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.yz-journey_overlay h4 {
  margin-bottom: 5px;
}

.yz-player_community {
  padding: 100px 20px;
  background: var(--yz-color-background);
}

.yz-community_container {
  max-width: 1200px;
  margin: 0 auto;
}

.yz-community_container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.yz-community_container > p {
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.yz-testimonials_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.yz-testimonial_card {
  background: var(--yz-color-light);
  padding: 30px;
  border-radius: var(--yz-border-radius);
  box-shadow: var(--yz-shadow-soft);
  transition: var(--yz-transition);
}

.yz-testimonial_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--yz-shadow-medium);
}

.yz-testimonial_header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.yz-testimonial_header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.yz-testimonial_info h4 {
  margin-bottom: 5px;
}

.yz-testimonial_rating {
  display: flex;
  gap: 3px;
  color: #ffc107;
}

.yz-testimonial_quote {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  color: var(--yz-color-accent);
  opacity: 0.3;
}

.yz-testimonial_card p {
  margin-bottom: 20px;
  font-style: italic;
}

.yz-testimonial_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #6c757d;
}

.yz-subscribe_section {
  padding: 100px 20px;
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
}

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

.yz-subscribe_content h2 {
  margin-bottom: 20px;
}

.yz-subscribe_content > p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.yz-subscribe_benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.yz-benefit_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.yz-benefit_item i {
  font-size: 1.5rem;
}

.yz-subscribe_form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--yz-border-radius);
  margin-bottom: 30px;
}

.yz-form_group {
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 3px solid var(--yz-color-success);
  border-radius: var(--yz-border-radius);
}

.yz-form_group input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: var(--yz-border-radius);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
}

.yz-form_error {
  display: block;
  color: var(--yz-color-warning);
  font-size: 0.8rem;
  margin-top: 5px;
  margin-left: 15px;
  min-height: 1rem;
}

.yz-form_checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.yz-form_checkbox input {
  width: auto;
}

.yz-form_checkbox label {
  font-size: 0.9rem;
}

.yz-form_checkbox label a {
  font-size: 0.9rem;
  color: var(--yz-color-warning);
}

#yz-subscribe_button {
  width: 100%;
  padding: 12px;
  background: var(--yz-color-light);
  color: var(--yz-color-accent);
  border: none;
  border-radius: var(--yz-border-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--yz-transition);
}

#yz-subscribe_button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--yz-shadow-medium);
}

#yz-subscribe_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.yz-subscribe_success, .yz-subscribe_already {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--yz-border-radius);
}

.yz-subscribe_success i, .yz-subscribe_already i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.yz-subscribe_success h3, .yz-subscribe_already h3 {
  margin-bottom: 10px;
}

.yz-subscribe_already p {
  margin-bottom: 20px;
}

.yz-already_buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.yz-already_buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: var(--yz-border-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--yz-transition);
}

#yz-unsubscribe_button {
  background: var(--yz-color-light);
  color: var(--yz-color-accent);
}

#yz-change_email {
  background: transparent;
  color: var(--yz-color-light);
  border: 1px solid var(--yz-color-light);
}

.yz-already_buttons button:hover {
  transform: translateY(-2px);
}

.yz-responsibility_section {
  padding: 100px 20px;
  background: var(--yz-color-light);
}

.yz-responsibility_container {
  max-width: 1200px;
  margin: 0 auto;
}

.yz-responsibility_container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.yz-responsibility_container > p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.1rem;
}

.yz-responsibility_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  color: var(--yz-color-accent);
  font-weight: 500;
}

.yz-responsibility_link:hover {
  color: var(--yz-color-dark);
}

.yz-responsibility_partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.yz-partner_item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--yz-color-success);
  border-radius: var(--yz-border-radius);
}

.yz-partner_item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.yz-partner_item img {
  width: 100%;
  max-width: 125px;
  height: 100%;
  min-height: 64px;
  max-height: 65px;
  transition: var(--yz-transition);
}

.yz-partner_item a:hover img {
  transform: scale(1.05);
}

.yz-faq_section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.yz-faq_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/yz-core/yz-images/yz-bg-image-2.jpg');
  background-size: cover;
  background-position: center;
  color: var(--yz-color-background);
  opacity: 0.3;
  z-index: -1;
}

.yz-faq_container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--yz-color-dark);
}

.yz-faq_container h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--yz-color-dark);
}

.yz-faq_columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.yz-faq_column h3 {
  margin-bottom: 20px;
  color: var(--yz-color-dark);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.yz-faq_item {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--yz-border-radius);
  overflow: hidden;
}

.yz-faq_question {
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  color: var(--yz-color-dark);
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--yz-transition);
}

.yz-faq_question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.yz-faq_answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.yz-faq_answer p {
  padding: 15px 0;
}

.yz-faq_question.active + .yz-faq_answer {
  max-height: 300px;
}

.yz-faq_question.active i {
  transform: rotate(45deg);
}

.yz-faq_contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yz-color-light);
  color: var(--yz-color-accent);
  padding: 15px 30px;
  border-radius: var(--yz-border-radius);
  font-weight: 500;
  transition: var(--yz-transition);
  margin: 0 auto;
}

.yz-faq_contact:hover {
  transform: translateY(-3px);
  box-shadow: var(--yz-shadow-medium);
  color: var(--yz-color-dark);
}

.yz-contact_section {
  padding: 100px 20px;
  background: var(--yz-color-background);
}

.yz-contact_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.yz-contact_content h2 {
  margin-bottom: 20px;
}

.yz-contact_content > p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.yz-contact_info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.yz-info_item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.yz-info_item i {
  font-size: 1.5rem;
  color: var(--yz-color-accent);
  margin-top: 5px;
}

.yz-info_item h4 {
  margin-bottom: 5px;
}

.yz-contact_form {
  background: var(--yz-color-light);
  padding: 30px;
  border-radius: var(--yz-border-radius);
  box-shadow: var(--yz-shadow-soft);
}

.yz-contact_form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yz-contact_form textarea {
  width: 100%;
  resize: vertical;
  font-size: 18px;
  min-height: 120px;
  padding-top: 10px;
  padding-left: 10px;
  font-family: 'Manrope', sans-serif;
  border-radius: var(--yz-border-radius);
}

#yz-contact_submit {
  padding: 12px;
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
  border: none;
  border-radius: var(--yz-border-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--yz-transition);
}

#yz-contact_submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--yz-shadow-medium);
}

#yz-contact_submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.yz-footer_main {
  background: var(--yz-color-dark);
  color: var(--yz-color-light);
  padding: 50px 20px 20px;
}

.yz-footer_container {
  max-width: 1200px;
  margin: 0 auto;
}

.yz-footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yz-footer_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Gilda Display', serif;
  font-size: 1.5rem;
}

.yz-footer_logo img {
  height: 40px;
  width: auto;
}

.yz-footer_nav {
  display: flex;
  gap: 20px;
}

.yz-footer_nav a {
  color: var(--yz-color-light);
  font-size: 0.9rem;
}

.yz-footer_nav a:hover {
  color: var(--yz-color-accent);
}

.yz-footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.yz-success_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--yz-transition);
}

.yz-success_modal.active {
  opacity: 1;
  visibility: visible;
}

.yz-success_content {
  background: var(--yz-color-light);
  padding: 40px;
  border-radius: var(--yz-border-radius);
  max-width: 500px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: var(--yz-transition);
}

.yz-success_modal.active .yz-success_content {
  transform: translateY(0);
}

.yz-success_content i {
  font-size: 3rem;
  color: var(--yz-color-success);
  margin-bottom: 15px;
  display: block;
}

.yz-success_content h3 {
  margin-bottom: 10px;
}

.yz-success_content p {
  margin-bottom: 20px;
}

#yz-success_email {
  font-weight: 500;
  color: var(--yz-color-accent);
}

#yz-success_close {
  padding: 10px 20px;
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
  border: none;
  border-radius: var(--yz-border-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--yz-transition);
}

#yz-success_close:hover {
  transform: translateY(-2px);
  box-shadow: var(--yz-shadow-medium);
}

.yz-scroll_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--yz-gradient-primary);
  color: var(--yz-color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--yz-transition);
  z-index: 99;
}

.yz-scroll_top.active {
  opacity: 1;
  visibility: visible;
}

.yz-scroll_top:hover {
  transform: translateY(-5px);
  box-shadow: var(--yz-shadow-medium);
}

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

@keyframes yz-slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .yz-welcome_features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .yz-testimonials_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .yz-faq_columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .yz-header_nav {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    background: var(--yz-color-light);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--yz-shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--yz-transition);
  }
  
  .yz-header_nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .yz-header_toggle {
    display: flex;
  }
  
  .yz-header_toggle.active .yz-toggle_top {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .yz-header_toggle.active .yz-toggle_middle {
    opacity: 0;
  }
  
  .yz-header_toggle.active .yz-toggle_bottom {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .yz-header_container {
    flex-wrap: wrap;
  }
  
  .yz-header_logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .yz-welcome_features {
    grid-template-columns: 1fr;
  }
  
  .yz-gaming_grid {
    grid-template-columns: 1fr;
  }
  
  .yz-journey_container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .yz-journey_stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .yz-subscribe_benefits {
    flex-direction: column;
    gap: 20px;
  }
  
  .yz-responsibility_partners {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .yz-contact_container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .yz-footer_top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .yz-footer_nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .yz-footer_bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .yz-cookies_notice {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .yz-welcome_section, .yz-gaming_paradise, .yz-our_journey, .yz-player_community, .yz-subscribe_section, .yz-responsibility_section, .yz-faq_section, .yz-contact_section {
    padding: 60px 15px;
  }
  
  .yz-age_content {
    padding: 30px 20px;
  }
  
  .yz-age_buttons {
    flex-direction: column;
  }
  
  .yz-journey_stats {
    grid-template-columns: 1fr;
  }
  
  .yz-responsibility_partners {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  
  .yz-testimonial_header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .yz-testimonial_header img {
    margin-right: 0;
  }
  
  .yz-testimonial_footer {
    flex-direction: column;
    gap: 10px;
  }
  
  .yz-already_buttons {
    flex-direction: column;
  }
  
  .yz-footer_nav {
    flex-direction: column;
  }
}

@media (max-width: 324px) {
    .yz-header_nav {
    top: 145px;
  }
} 

.kmpg-notfound_main {
  background: linear-gradient(135deg, #fdfcfb 0%, #f2f1ef 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kmpg-notfound_hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.kmpg-notfound_icon {
  font-size: 6rem;
  color: #6a11cb;
  margin-bottom: 20px;
  animation: kmpg-bounce 2s infinite;
}

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

.kmpg-notfound_hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-family: 'Gilda Display', serif;
  color: #1a1a2e;
}

.kmpg-notfound_hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #4a5568;
}

.kmpg-notfound_content {
  padding: 40px 20px 80px;
}

.kmpg-notfound_container {
  max-width: 1000px;
  margin: 0 auto;
}

.kmpg-notfound_message {
  text-align: center;
  margin-bottom: 60px;
}

.kmpg-notfound_message h2 {
  font-family: 'Gilda Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.kmpg-notfound_message p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 20px;
}

.kmpg-notfound_actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.kmpg-notfound_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kmpg-notfound_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106, 17, 203, 0.3);
  color: white;
}

.kmpg-notfound_secondary {
  background: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
}

.kmpg-notfound_secondary:hover {
  box-shadow: 0 10px 25px rgba(244, 107, 69, 0.3);
}

.kmpg-notfound_features {
  text-align: center;
}

.kmpg-notfound_features h3 {
  font-family: 'Gilda Display', serif;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #1a1a2e;
}

.kmpg-notfound_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.kmpg-notfound_feature {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kmpg-notfound_feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kmpg-notfound_feature i {
  font-size: 2.5rem;
  color: #6a11cb;
  margin-bottom: 15px;
  display: block;
}

.kmpg-notfound_feature h4 {
  font-family: 'Gilda Display', serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.kmpg-notfound_feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

@media (max-width: 768px) {
  .kmpg-notfound_hero h1 {
    font-size: 2.5rem;
  }
  
  .kmpg-notfound_icon {
    font-size: 4rem;
  }
  
  .kmpg-notfound_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .kmpg-notfound_actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .kmpg-notfound_hero {
    padding: 40px 15px 30px;
  }
  
  .kmpg-notfound_hero h1 {
    font-size: 2rem;
  }
  
  .kmpg-notfound_hero p {
    font-size: 1rem;
  }
  
  .kmpg-notfound_content {
    padding: 30px 15px 60px;
  }
  
  .kmpg-notfound_message h2 {
    font-size: 1.8rem;
  }
  
  .kmpg-notfound_feature {
    padding: 20px;
  }
}

.kmpg-responsible_main {
  background: linear-gradient(135deg, #f9f9f9 0%, #eef2f5 100%);
  min-height: 100vh;
}

.kmpg-responsible_hero {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.kmpg-responsible_hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Gilda Display', serif;
}

.kmpg-responsible_hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.kmpg-responsible_content {
  padding: 80px 20px;
}

.kmpg-responsible_container {
  max-width: 1000px;
  margin: 0 auto;
}

.kmpg-responsible_item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 50px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.kmpg-responsible_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kmpg-responsible_item:nth-child(odd) {
  background: linear-gradient(to right, white, #f8f9ff);
}

.kmpg-responsible_item:nth-child(even) {
  background: linear-gradient(to right, #f8f9ff, white);
}

.kmpg-responsible_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
}

.kmpg-responsible_text h2 {
  font-family: 'Gilda Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.kmpg-responsible_text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

@media (max-width: 768px) {
  .kmpg-responsible_hero {
    padding: 60px 20px;
  }
  
  .kmpg-responsible_hero h1 {
    font-size: 2.5rem;
  }
  
  .kmpg-responsible_item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .kmpg-responsible_icon {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .kmpg-responsible_hero h1 {
    font-size: 2rem;
  }
  
  .kmpg-responsible_content {
    padding: 60px 15px;
  }
  
  .kmpg-responsible_item {
    padding: 20px;
  }
  
  .kmpg-responsible_text h2 {
    font-size: 1.5rem;
  }
}

.kmpg-cookies_main {
  background: linear-gradient(135deg, #e6f7ff 0%, #c3e6fc 100%);
  min-height: 100vh;
}

.kmpg-cookies_hero {
  background: linear-gradient(135deg, #00cdac 0%, #02aab0 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.kmpg-cookies_hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Gilda Display', serif;
}

.kmpg-cookies_hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.kmpg-cookies_content {
  padding: 80px 20px;
}

.kmpg-cookies_container {
  max-width: 1000px;
  margin: 0 auto;
}

.kmpg-cookies_item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.kmpg-cookies_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kmpg-cookies_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, #00cdac, #02aab0);
  border-radius: 3px;
}

.kmpg-cookies_icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00cdac 0%, #02aab0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
}

.kmpg-cookies_text h2 {
  font-family: 'Gilda Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.kmpg-cookies_text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

@media (max-width: 768px) {
  .kmpg-cookies_hero {
    padding: 60px 20px;
  }
  
  .kmpg-cookies_hero h1 {
    font-size: 2.5rem;
  }
  
  .kmpg-cookies_item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .kmpg-cookies_icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .kmpg-cookies_hero h1 {
    font-size: 2rem;
  }
  
  .kmpg-cookies_content {
    padding: 60px 15px;
  }
  
  .kmpg-cookies_item {
    padding: 20px;
  }
  
  .kmpg-cookies_text h2 {
    font-size: 1.5rem;
  }
}

.kmpg-terms_main {
  background: linear-gradient(135deg, #fdfcfb 0%, #f5f1e6 100%);
  min-height: 100vh;
}

.kmpg-terms_hero {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.kmpg-terms_hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Gilda Display', serif;
}

.kmpg-terms_hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.kmpg-terms_content {
  padding: 80px 20px;
}

.kmpg-terms_container {
  max-width: 1000px;
  margin: 0 auto;
}

.kmpg-terms_item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kmpg-terms_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #ff6b6b, #ff8e53);
}

.kmpg-terms_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kmpg-terms_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
}

.kmpg-terms_text h2 {
  font-family: 'Gilda Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.kmpg-terms_text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

@media (max-width: 768px) {
  .kmpg-terms_hero {
    padding: 60px 20px;
  }
  
  .kmpg-terms_hero h1 {
    font-size: 2.5rem;
  }
  
  .kmpg-terms_item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .kmpg-terms_icon {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .kmpg-terms_hero h1 {
    font-size: 2rem;
  }
  
  .kmpg-terms_content {
    padding: 60px 15px;
  }
  
  .kmpg-terms_item {
    padding: 25px;
  }
  
  .kmpg-terms_text h2 {
    font-size: 1.5rem;
  }
}

.kmpg-privacy_main {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
}

.kmpg-privacy_hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.kmpg-privacy_hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Gilda Display', serif;
}

.kmpg-privacy_hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.kmpg-privacy_content {
  padding: 80px 20px;
}

.kmpg-privacy_container {
  max-width: 1000px;
  margin: 0 auto;
}

.kmpg-privacy_item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kmpg-privacy_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kmpg-privacy_icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.kmpg-privacy_text h2 {
  font-family: 'Gilda Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.kmpg-privacy_text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

@media (max-width: 768px) {
  .kmpg-privacy_hero {
    padding: 60px 20px;
  }
  
  .kmpg-privacy_hero h1 {
    font-size: 2.5rem;
  }
  
  .kmpg-privacy_item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .kmpg-privacy_icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .kmpg-privacy_hero h1 {
    font-size: 2rem;
  }
  
  .kmpg-privacy_content {
    padding: 60px 15px;
  }
  
  .kmpg-privacy_item {
    padding: 20px;
  }
  
  .kmpg-privacy_text h2 {
    font-size: 1.5rem;
  }
}