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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Public Sans', sans-serif;
  font-size: 1.6rem;
  background-color: #f9f9ff;
  color: #1a1a1a;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ytp-header__top-bar {
  background-color: #e0e7ff;
  padding: 1rem 0;
  text-align: center;
  font-size: 1.4rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.ytp-header__top-icon {
  font-size: 1.6rem;
  color: #1e4ed8;
}

.ytp-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.ytp-header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ytp-header__logo-title {
  font-family: 'Mate SC', serif;
  font-size: 2.4rem;
  color: #1e3a8a;
}

.ytp-header__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.ytp-header__nav a {
  font-weight: 500;
  color: #1e3a8a;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.ytp-header__nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #1e3a8a;
}

.ytp-header__nav a:hover {
  color: #1e4ed8;
}

.ytp-header__nav-icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.ytp-header__nav a:hover .ytp-header__nav-icon {
  transform: scale(1.2);
}

.ytp-header__bottom {
  background-color: #dbeafe;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.4rem;
  color: #1e4ed8;
  font-weight: 500;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

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

@media (max-width: 1280px) {
  .ytp-header__main {
    flex-direction: column;
    align-items: flex-start;
  }
  .ytp-header__nav {
    margin-top: 1rem;
    justify-content: center;
  }
}

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

@media (max-width: 768px) {
  .ytp-header__main {
    align-items: center;
  }
  .ytp-header__nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .ytp-header__logo-title {
    font-size: 2rem;
  }
  .ytp-header__nav a {
    font-size: 1.4rem;
  }
  .ytp-header__nav-icon {
    font-size: 1.4rem;
  }
}

@media (max-width: 320px) {
  .ytp-header__top-bar,
  .ytp-header__bottom {
    font-size: 1.2rem;
  }
}

.ytp-welcome {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../ytp-img/ytp-background-image-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ytp-welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.ytp-welcome__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 10rem 2rem;
  animation: fadeInUp 1.2s ease-out forwards;
}

.ytp-welcome__title {
  font-family: 'Mate SC', serif;
  font-size: 4.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ytp-welcome__icon-title {
  font-size: 3.6rem;
  color: #fbbf24;
}

.ytp-welcome__description {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 2rem auto;
  line-height: 1.8;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.ytp-welcome__icon {
  font-size: 2.4rem;
  color: #fbbf24;
  min-width: 2.4rem;
  min-height: 2.4rem;
  margin-top: 0.2rem;
}

.ytp-welcome__button {
  display: inline-block;
  background-color: #1e4ed8;
  color: #fff;
  font-weight: 500;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ytp-welcome__button:hover {
  background-color: #1e3a8a;
}

.ytp-welcome__button-icon {
  font-size: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1280px) {
  .ytp-welcome__title {
    font-size: 4rem;
  }
  .ytp-welcome__icon-title {
    font-size: 3.2rem;
  }
  .ytp-welcome__icon {
    font-size: 2rem;
  }
  .ytp-welcome__button-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .ytp-welcome {
    padding: 8rem 2rem;
  }
}

@media (max-width: 768px) {
  .ytp-welcome__title {
    font-size: 3.2rem;
    flex-direction: column;
    text-align: center;
  }

  .ytp-welcome__description {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ytp-welcome__icon {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .ytp-welcome__title {
    font-size: 2.8rem;
  }

  .ytp-welcome__description {
    font-size: 1.4rem;
  }

  .ytp-welcome__button {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
  }
}

@media (max-width: 320px) {
  .ytp-welcome__title {
    font-size: 2.4rem;
  }

  .ytp-welcome__description {
    font-size: 1.3rem;
  }
}

.ytp-about {
  width: 100%;
  background-color: #f0f6ff;
  padding: 10rem 0;
}

.ytp-about__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ytp-about__inner {
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  align-items: center;
}

.ytp-about__text {
  flex: 1 1 45%;
  min-width: 300px;
}

.ytp-about__title {
  font-family: 'Mate SC', serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ytp-about__icon-title {
  font-size: 3.2rem;
  color: #1e4ed8;
}

.ytp-about__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.ytp-about__icon {
  font-size: 2.4rem;
  color: #1e4ed8;
  min-width: 2.4rem;
  min-height: 2.4rem;
  margin-top: 0.2rem;
}

.ytp-about__button {
  display: inline-block;
  background-color: #1e4ed8;
  color: #fff;
  font-weight: 500;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.ytp-about__button:hover {
  background-color: #1e3a8a;
}

.ytp-about__button-icon {
  font-size: 2rem;
}

.ytp-about__image {
  flex: 1 1 45%;
  min-width: 300px;
}

.ytp-about__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.ytp-about__image img:hover {
  transform: scale(1.03);
}

@media (max-width: 1280px) {
  .ytp-about__title {
    font-size: 3.6rem;
  }
  .ytp-about__icon-title {
    font-size: 2.8rem;
  }
  .ytp-about__icon {
    font-size: 2rem;
  }
  .ytp-about__button-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .ytp-about {
    padding: 8rem 0;
  }
}

@media (max-width: 768px) {
  .ytp-about__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 4rem;
  }

  .ytp-about__text {
    flex: none;
    text-align: center;
  }

  .ytp-about__image {
    flex: none;
  }

  .ytp-about__title {
    font-size: 3.2rem;
    justify-content: center;
  }

  .ytp-about__description {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ytp-about__icon {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .ytp-about {
    padding: 6rem 0;
  }

  .ytp-about__title {
    font-size: 2.8rem;
  }

  .ytp-about__description {
    font-size: 1.4rem;
  }

  .ytp-about__button {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
  }
}

@media (max-width: 320px) {
  .ytp-about__title {
    font-size: 2.4rem;
  }

  .ytp-about__description {
    font-size: 1.3rem;
  }
}

.ytp-advantages {
  width: 100%;
  padding: 12rem 0;
  background-color: #fff;
}

.ytp-advantages__wrapper {
  text-align: center;
}

.ytp-advantages__title {
  font-family: 'Mate SC', serif;
  font-size: 4rem;
  color: #1e3a8a;
  margin-bottom: 8rem;
}

.ytp-advantages__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.ytp-advantages__card {
  flex: 1 1 calc(25% - 3rem);
  max-width: calc(25% - 3rem);
  background-color: #f3f4f6;
  border-radius: 12px;
  padding: 3rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ytp-advantages__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ytp-advantages__icon {
  font-size: 3.2rem;
  color: #1e4ed8;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

.ytp-advantages__subtitle {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-weight: 500;
}

.ytp-advantages__text {
  font-size: 1.5rem;
  color: #374151;
  line-height: 1.7;
}

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

@media (max-width: 1280px) {
  .ytp-advantages {
    padding: 10rem 0;
  }
  .ytp-advantages__title {
    font-size: 3.6rem;
    margin-bottom: 6rem;
  }
}

@media (max-width: 1024px) {
  .ytp-advantages__card {
    flex: 1 1 calc(33.333% - 3rem);
    max-width: calc(33.333% - 3rem);
  }
}

@media (max-width: 768px) {
  .ytp-advantages__card {
    flex: 1 1 calc(50% - 3rem);
    max-width: calc(50% - 3rem);
  }
}

@media (max-width: 480px) {
  .ytp-advantages__title {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
  .ytp-advantages__card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .ytp-advantages__subtitle {
    font-size: 1.8rem;
  }
  .ytp-advantages__text {
    font-size: 1.4rem;
  }
  .ytp-advantages__icon {
    font-size: 2.8rem;
  }
}

@media (max-width: 320px) {
  .ytp-advantages__title {
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
}

.ytp-game {
  width: 100%;
  padding: 12rem 0;
  background-color: #f3f9ff;
}

.ytp-game__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ytp-game__inner {
  display: flex;
  gap: 6rem;
  flex-wrap: wrap;
  align-items: center;
}

.ytp-game__text {
  flex: 1 1 45%;
  min-width: 300px;
}

.ytp-game__title {
  font-family: 'Mate SC', serif;
  font-size: 4.2rem;
  color: #1e3a8a;
  margin-bottom: 2.5rem;
}

.ytp-game__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 3.5rem;
}

.ytp-game__button {
  display: inline-block;
  background-color: #1e4ed8;
  color: #fff;
  font-weight: 500;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.ytp-game__button:hover {
  background-color: #1e3a8a;
}

.ytp-game__image {
  flex: 1 1 45%;
  min-width: 300px;
}

.ytp-game__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.ytp-game__image img:hover {
  transform: scale(1.03);
}

@media (max-width: 1280px) {
  .ytp-game {
    padding: 10rem 0;
  }
  .ytp-game__title {
    font-size: 3.8rem;
  }
}

@media (max-width: 1024px) {
  .ytp-game__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 4rem;
  }

  .ytp-game__text {
    text-align: center;
  }

  .ytp-game__image {
    flex: none;
  }
}

@media (max-width: 768px) {
  .ytp-game__title {
    font-size: 3.2rem;
  }
  .ytp-game__description {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ytp-game {
    padding: 8rem 0;
  }
  .ytp-game__title {
    font-size: 2.8rem;
  }
  .ytp-game__description {
    font-size: 1.4rem;
  }
  .ytp-game__button {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
  }
}

@media (max-width: 320px) {
  .ytp-game__title {
    font-size: 2.4rem;
  }
  .ytp-game__description {
    font-size: 1.3rem;
  }
}

.ytp-faq {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 14rem 0;
}

.ytp-faq__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../ytp-img/ytp-background-image-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0.3);
}

.ytp-faq__wrapper {
  text-align: center;
  color: #fff;
}

.ytp-faq__title {
  font-family: 'Mate SC', serif;
  font-size: 4.8rem;
  margin-bottom: 8rem;
  animation: fadeInUp 1s ease-out forwards;
}

.ytp-faq__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.ytp-faq__card {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.ytp-faq__card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.ytp-faq__icon {
  font-size: 2.8rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

.ytp-faq__subtitle {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.ytp-faq__text {
  font-size: 1.5rem;
  color: #e5e7eb;
  line-height: 1.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1280px) {
  .ytp-faq__title {
    font-size: 4rem;
    margin-bottom: 7rem;
  }
}

@media (max-width: 1024px) {
  .ytp-faq__card {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .ytp-faq__title {
    font-size: 3.6rem;
    margin-bottom: 6rem;
  }

  .ytp-faq__card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ytp-faq__title {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }

  .ytp-faq__subtitle {
    font-size: 1.8rem;
  }

  .ytp-faq__text {
    font-size: 1.4rem;
  }

  .ytp-faq__icon {
    font-size: 2.4rem;
  }
}

@media (max-width: 320px) {
  .ytp-faq__title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }

  .ytp-faq__subtitle {
    font-size: 1.6rem;
  }

  .ytp-faq__text {
    font-size: 1.3rem;
  }
}

.ytp-reviews {
  width: 100%;
  padding: 12rem 0;
  background-color: #fff;
}

.ytp-reviews__wrapper {
  text-align: center;
}

.ytp-reviews__title {
  font-family: 'Mate SC', serif;
  font-size: 4.2rem;
  color: #1e3a8a;
  margin-bottom: 8rem;
}

.ytp-reviews__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.ytp-reviews__card {
  flex: 1 1 calc(33.333% - 2.66rem);
  max-width: calc(33.333% - 2.66rem);
  background-color: #f3f4f6;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ytp-reviews__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ytp-reviews__icon {
  font-size: 2.8rem;
  color: #1e4ed8;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.ytp-reviews__avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid #dbeafe;
}

.ytp-reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ytp-reviews__name {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ytp-reviews__date {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.ytp-reviews__text {
  font-size: 1.5rem;
  color: #374151;
  line-height: 1.7;
}

@media (max-width: 1280px) {
  .ytp-reviews__title {
    font-size: 3.8rem;
    margin-bottom: 7rem;
  }
}

@media (max-width: 1024px) {
  .ytp-reviews__card {
    flex: 1 1 calc(50% - 2.66rem);
    max-width: calc(50% - 2.66rem);
  }
}

@media (max-width: 768px) {
  .ytp-reviews__title {
    font-size: 3.2rem;
    margin-bottom: 6rem;
  }

  .ytp-reviews__card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ytp-reviews__title {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }

  .ytp-reviews__card {
    padding: 2.5rem 2rem;
  }

  .ytp-reviews__name {
    font-size: 1.8rem;
  }

  .ytp-reviews__date {
    font-size: 1.3rem;
  }

  .ytp-reviews__text {
    font-size: 1.4rem;
  }

  .ytp-reviews__icon {
    font-size: 2.4rem;
  }
}

@media (max-width: 320px) {
  .ytp-reviews__title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }

  .ytp-reviews__name {
    font-size: 1.6rem;
  }

  .ytp-reviews__date {
    font-size: 1.2rem;
  }

  .ytp-reviews__text {
    font-size: 1.3rem;
  }
}

.ytp-contact {
  width: 100%;
  padding: 12rem 0;
  background-color: #f9fafb;
}

.ytp-contact__wrapper {
  text-align: center;
}

.ytp-contact__inner {
  display: flex;
  gap: 6rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ytp-contact__info {
  flex: 1 1 calc(35% - 4rem);
  max-width: 500px;
  background-color: #e0e7ff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  transition: background-color 0.3s ease;
}

.ytp-contact__info:hover {
  background-color: #dbeafe;
}

.ytp-contact__subtitle {
  font-family: 'Mate SC', serif;
  font-size: 2.8rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.ytp-contact__text {
  font-size: 1.6rem;
  color: #374151;
  margin-bottom: 2rem;
}

.ytp-contact__list {
  text-align: left;
}

.ytp-contact__item {
  font-size: 1.5rem;
  color: #374151;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ytp-contact__icon {
  font-size: 1.6rem;
  color: #1e4ed8;
}

.ytp-contact__form-wrapper {
  flex: 1 1 calc(65% - 4rem);
  max-width: 500px;
  background-color: #f3f4f6;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  position: relative;
}

.ytp-contact__form-title {
  font-family: 'Mate SC', serif;
  font-size: 2.8rem;
  color: #1e3a8a;
  margin-bottom: 2.5rem;
}

.ytp-contact__field {
  text-align: left;
  margin-bottom: 2rem;
}

.ytp-contact__label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.ytp-contact__input {
  width: 100%;
  padding: 1rem;
  font-size: 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.ytp-contact__input:focus {
  border-color: #1e4ed8;
  outline: none;
}

.ytp-contact__error {
  color: #ef4444;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  height: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ytp-contact__checkbox {
  text-align: left;
  margin-bottom: 2rem;
}

.ytp-contact__checkbox input[type="checkbox"] {
  margin-right: 1rem;
  transform: scale(1.2);
}

.ytp-contact__checkbox label {
  font-size: 1.4rem;
  color: #111827;
}

.ytp-contact__checkbox a {
  color: #1e4ed8;
  text-decoration: underline;
}

.ytp-contact__button {
  display: inline-block;
  background-color: #1e4ed8;
  color: #fff;
  font-weight: 500;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  cursor: not-allowed;
  opacity: 0.6;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ytp-contact__button.active {
  cursor: pointer;
  background-color: #1e3a8a;
  opacity: 1;
}

.ytp-contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background-color: #d1fae5;
  border-radius: 12px;
  animation: fadeInUp 1s ease-out forwards;
}

.ytp-contact__success-icon {
  font-size: 3rem;
  color: #047857;
  margin-bottom: 1rem;
}

.ytp-contact__success-text {
  font-size: 1.6rem;
  color: #064e3b;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ytp-contact__inner {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .ytp-contact__form-wrapper,
  .ytp-contact__info {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ytp-contact {
    padding: 10rem 0;
  }

  .ytp-contact__subtitle,
  .ytp-contact__form-title {
    font-size: 2.4rem;
  }

  .ytp-contact__text,
  .ytp-contact__item,
  .ytp-contact__label,
  .ytp-contact__checkbox label {
    font-size: 1.4rem;
  }

  .ytp-contact__success-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .ytp-contact__inner {
    gap: 3rem;
  }

  .ytp-contact__form-title {
    font-size: 2rem;
  }

  .ytp-contact__text,
  .ytp-contact__item,
  .ytp-contact__label,
  .ytp-contact__checkbox label {
    font-size: 1.3rem;
  }

  .ytp-contact__success-text {
    font-size: 1.3rem;
  }
}

.ytp-footer {
  width: 100%;
  background-color: #f3f4f6;
  color: #111827;
}

.ytp-footer__top {
  display: flex;
  gap: 4rem;
  padding: 8rem 0 4rem;
  flex-wrap: wrap;
}

.ytp-footer__block {
  flex: 1 1 calc(50% - 2rem);
  width: 300px;
}

.ytp-footer__subtitle {
  font-family: 'Mate SC', serif;
  font-size: 2.8rem;
  color: #1e3a8a;
  margin-bottom: 2rem;
}

.ytp-footer__text {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ytp-footer__text:last-child {
  margin-bottom: 0;
}

.ytp-footer__partner-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.ytp-footer__partner-links a {
  font-size: 1.5rem;
  color: #1e4ed8;
  transition: color 0.3s ease;
}

.ytp-footer__partner-links a:hover {
  color: #1e3a8a;
}

.ytp-footer__age-restriction {
  text-align: center;
  margin: 0 auto;
}

.ytp-footer__age-restriction img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.ytp-footer__age-restriction img:hover {
  transform: scale(1.1);
}

.ytp-footer__divider {
  height: 4px;
  background: linear-gradient(90deg, #1e4ed8, #dbeafe, #1e4ed8);
  margin: 4rem 0;
}

.ytp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding-bottom: 6rem;
}

.ytp-footer__copyright,
.ytp-footer__legal,
.ytp-footer__about {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 250px;
}

.ytp-footer__copyright p,
.ytp-footer__about p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4b5563;
}

.ytp-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ytp-footer__legal a {
  font-size: 1.4rem;
  color: #1e3a8a;
  transition: color 0.3s ease;
}

.ytp-footer__legal a:hover {
  color: #1e4ed8;
}

@media (max-width: 1024px) {
  .ytp-footer__top {
    flex-direction: column;
    gap: 3rem;
  }

  .ytp-footer__block {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .ytp-footer__top {
    padding: 6rem 0 3rem;
  }

  .ytp-footer__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .ytp-footer__copyright,
  .ytp-footer__legal,
  .ytp-footer__about {
    flex: 1 1 100%;
  }

  .ytp-footer__text {
    font-size: 1.4rem;
  }

  .ytp-footer__partner-links a {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .ytp-footer__subtitle {
    font-size: 2.4rem;
  }

  .ytp-footer__top {
    justify-content: center;
    align-items: center;
  }

  .ytp-footer__block {
    width: 285px;
    text-align: center;
  }

  .ytp-footer__text,
  .ytp-footer__partner-links a,
  .ytp-footer__copyright p,
  .ytp-footer__legal a,
  .ytp-footer__about p {
    font-size: 1.1rem;
  }

  .ytp-footer__partner-links {
    gap: 0.8rem;
  }

  .ytp-footer__age-restriction img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 320px) {
  .ytp-footer__subtitle {
    font-size: 2rem;
  }

  .ytp-footer__block {
    width: 262px;
    text-align: center;
  }

  .ytp-footer__text,
  .ytp-footer__partner-links a,
  .ytp-footer__copyright p,
  .ytp-footer__legal a,
  .ytp-footer__about p {
    font-size: 1.2rem;
  }

  .ytp-footer__partner-links a {
    word-break: break-word;
  }
}

.ytp-age__modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.99);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.ytp-age__wrapper {
  max-width: 500px;
  width: 100%;
  padding: 2rem;
}

.ytp-age__content {
  background-color: #fff;
  padding: 4rem 3rem;
  border-radius: 12px;
  text-align: center;
  animation: fadeInUp 0.6s ease-out forwards;
}

.ytp-age__title {
  font-family: 'Mate SC', serif;
  font-size: 3.2rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.ytp-age__description {
  font-size: 1.6rem;
  color: #4b5563;
  margin-bottom: 3rem;
}

.ytp-age__actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.ytp-age__confirm {
  background-color: #1e4ed8;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 8px;
  padding: 1.2rem 2.5rem;
  transition: background-color 0.3s ease;
}

.ytp-age__confirm:hover {
  background-color: #1e3a8a;
}

.ytp-age__decline {
  background-color: #ef4444;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 8px;
  padding: 1.2rem 2.5rem;
  transition: background-color 0.3s ease;
}

.ytp-age__decline:hover {
  background-color: #dc2626;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .ytp-age__content {
    padding: 3rem 2rem;
  }

  .ytp-age__title {
    font-size: 2.8rem;
  }

  .ytp-age__description {
    font-size: 1.5rem;
  }

  .ytp-age__actions {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ytp-age__confirm,
  .ytp-age__decline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ytp-age__title {
    font-size: 2.4rem;
  }

  .ytp-age__description {
    font-size: 1.4rem;
  }
}

.ytp-cookie__banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  background-color: #f3f4f6;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  display: flex;
  justify-content: center;
}

.ytp-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.ytp-cookie__text {
  font-size: 1.4rem;
  color: #111827;
  flex: 1 1 250px;
  text-align: left;
}

.ytp-cookie__link {
  color: #1e4ed8;
  font-weight: 500;
  text-decoration: underline;
}

.ytp-cookie__button {
  background-color: #1e4ed8;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 8px;
  padding: 1rem 2rem;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.ytp-cookie__button:hover {
  background-color: #1e3a8a;
}

@media (max-width: 768px) {
  .ytp-cookie__text {
    font-size: 1.3rem;
  }

  .ytp-cookie__button {
    font-size: 1.3rem;
    padding: 0.9rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .ytp-cookie__inner {
    justify-content: center;
    align-items: center;
  }

  .ytp-cookie__banner {
    padding: 1.2rem 1.5rem;
  }

  .ytp-cookie__text {
    text-align: center;
    font-size: 1.2rem;
  }

  .ytp-cookie__button {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}

.ytp-back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 190px;
  width: 5rem;
  height: 5rem;
  background-color: #1e4ed8;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
}

.ytp-back-to-top:hover {
  background-color: #1e3a8a;
  transform: scale(1.1);
}

.ytp-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .ytp-back-to-top {
    width: 4rem;
    height: 4rem;
    right: 1.5rem;
    bottom: 190px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .ytp-back-to-top {
    width: 4rem;
    height: 4rem;
    right: 1rem;
    bottom: 190px;
    font-size: 2rem;
  }
}

.ytppg-cookiepolicy__header {
  width: 100%;
  padding: 10rem 0;
  background-color: #dbeafe;
}

.ytppg-cookiepolicy__title {
  font-family: 'Mate SC', serif;
  font-size: 4.2rem;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 3rem;
}

.ytppg-cookiepolicy__description {
  font-size: 1.6rem;
  color: #374151;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ytppg-cookiepolicy__content {
  width: 100%;
  padding: 12rem 0;
  background-color: #f9f9ff;
}

.ytppg-cookiepolicy__section {
  margin-bottom: 6rem;
}

.ytppg-cookiepolicy__subtitle {
  font-family: 'Mate SC', serif;
  font-size: 2.8rem;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ytppg-cookiepolicy__icon {
  font-size: 2.4rem;
  color: #1e4ed8;
}

.ytppg-cookiepolicy__text {
  font-size: 1.6rem;
  color: #374151;
  line-height: 1.8;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .ytppg-cookiepolicy__header {
    padding: 8rem 0;
  }

  .ytppg-cookiepolicy__title {
    font-size: 3.6rem;
  }

  .ytppg-cookiepolicy__description {
    font-size: 1.5rem;
  }

  .ytppg-cookiepolicy__content {
    padding: 10rem 0;
  }
}

@media (max-width: 768px) {
  .ytppg-cookiepolicy__header {
    padding: 7rem 0;
  }

  .ytppg-cookiepolicy__title {
    font-size: 3rem;
  }

  .ytppg-cookiepolicy__description {
    font-size: 1.4rem;
  }

  .ytppg-cookiepolicy__section {
    margin-bottom: 5rem;
  }

  .ytppg-cookiepolicy__subtitle {
    font-size: 2.4rem;
  }

  .ytppg-cookiepolicy__text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .ytppg-cookiepolicy__header {
    padding: 6rem 0;
  }

  .ytppg-cookiepolicy__title {
    font-size: 2.6rem;
  }

  .ytppg-cookiepolicy__description {
    font-size: 1.3rem;
  }

  .ytppg-cookiepolicy__content {
    padding: 8rem 0;
  }

  .ytppg-cookiepolicy__section {
    margin-bottom: 4rem;
  }

  .ytppg-cookiepolicy__subtitle {
    font-size: 2.2rem;
  }

  .ytppg-cookiepolicy__text {
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .ytppg-cookiepolicy__title {
    font-size: 2.4rem;
  }

  .ytppg-cookiepolicy__description {
    font-size: 1.2rem;
  }

  .ytppg-cookiepolicy__subtitle {
    font-size: 2rem;
  }

  .ytppg-cookiepolicy__text {
    font-size: 1.2rem;
  }
}

.ytppg-privacypolicy__header {
  width: 100%;
  padding: 10rem 0;
  background-color: #dbeafe;
}

.ytppg-privacypolicy__title {
  font-family: 'Mate SC', serif;
  font-size: 4.2rem;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 3rem;
}

.ytppg-privacypolicy__description {
  font-size: 1.6rem;
  color: #374151;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ytppg-privacypolicy__content {
  width: 100%;
  padding: 12rem 0;
  background-color: #f9f9ff;
}

.ytppg-privacypolicy__section {
  margin-bottom: 6rem;
}

.ytppg-privacypolicy__subtitle {
  font-family: 'Mate SC', serif;
  font-size: 2.8rem;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ytppg-privacypolicy__icon {
  font-size: 2.4rem;
  color: #1e4ed8;
}

.ytppg-privacypolicy__text {
  font-size: 1.6rem;
  color: #374151;
  line-height: 1.8;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .ytppg-privacypolicy__header {
    padding: 8rem 0;
  }

  .ytppg-privacypolicy__title {
    font-size: 3.6rem;
  }

  .ytppg-privacypolicy__description {
    font-size: 1.5rem;
  }

  .ytppg-privacypolicy__content {
    padding: 10rem 0;
  }
}

@media (max-width: 768px) {
  .ytppg-privacypolicy__header {
    padding: 7rem 0;
  }

  .ytppg-privacypolicy__title {
    font-size: 3rem;
  }

  .ytppg-privacypolicy__description {
    font-size: 1.4rem;
  }

  .ytppg-privacypolicy__section {
    margin-bottom: 5rem;
  }

  .ytppg-privacypolicy__subtitle {
    font-size: 2.4rem;
  }

  .ytppg-privacypolicy__text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .ytppg-privacypolicy__header {
    padding: 6rem 0;
  }

  .ytppg-privacypolicy__title {
    font-size: 2.6rem;
  }

  .ytppg-privacypolicy__description {
    font-size: 1.3rem;
  }

  .ytppg-privacypolicy__content {
    padding: 8rem 0;
  }

  .ytppg-privacypolicy__section {
    margin-bottom: 4rem;
  }

  .ytppg-privacypolicy__subtitle {
    font-size: 2.2rem;
  }

  .ytppg-privacypolicy__text {
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .ytppg-privacypolicy__title {
    font-size: 2.4rem;
  }

  .ytppg-privacypolicy__description {
    font-size: 1.2rem;
  }

  .ytppg-privacypolicy__subtitle {
    font-size: 2rem;
  }

  .ytppg-privacypolicy__text {
    font-size: 1.2rem;
  }
}

.ytppg-responsible__header {
  width: 100%;
  padding: 10rem 0;
  background-color: #dbeafe;
}

.ytppg-responsible__title {
  font-family: 'Mate SC', serif;
  font-size: 4.2rem;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 3rem;
}

.ytppg-responsible__description {
  font-size: 1.6rem;
  color: #374151;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ytppg-responsible__content {
  width: 100%;
  padding: 12rem 0;
  background-color: #f9f9ff;
}

.ytppg-responsible__section {
  margin-bottom: 6rem;
}

.ytppg-responsible__subtitle {
  font-family: 'Mate SC', serif;
  font-size: 2.8rem;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ytppg-responsible__icon {
  font-size: 2.4rem;
  color: #1e4ed8;
}

.ytppg-responsible__text {
  font-size: 1.6rem;
  color: #374151;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.ytppg-responsible__text a {
  color: #1e4ed8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .ytppg-responsible__header {
    padding: 8rem 0;
  }

  .ytppg-responsible__title {
    font-size: 3.6rem;
  }

  .ytppg-responsible__description {
    font-size: 1.5rem;
  }

  .ytppg-responsible__content {
    padding: 10rem 0;
  }
}

@media (max-width: 768px) {
  .ytppg-responsible__header {
    padding: 7rem 0;
  }

  .ytppg-responsible__title {
    font-size: 3rem;
  }

  .ytppg-responsible__description {
    font-size: 1.4rem;
  }

  .ytppg-responsible__section {
    margin-bottom: 5rem;
  }

  .ytppg-responsible__subtitle {
    font-size: 2.4rem;
  }

  .ytppg-responsible__text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .ytppg-responsible__header {
    padding: 6rem 0;
  }

  .ytppg-responsible__title {
    font-size: 2.6rem;
  }

  .ytppg-responsible__description {
    font-size: 1.3rem;
  }

  .ytppg-responsible__content {
    padding: 8rem 0;
  }

  .ytppg-responsible__section {
    margin-bottom: 4rem;
  }

  .ytppg-responsible__subtitle {
    font-size: 2.2rem;
  }

  .ytppg-responsible__text {
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .ytppg-responsible__title {
    font-size: 2.4rem;
  }

  .ytppg-responsible__description {
    font-size: 1.2rem;
  }

  .ytppg-responsible__subtitle {
    font-size: 2rem;
  }

  .ytppg-responsible__text {
    font-size: 1.2rem;
  }
}