@charset "UTF-8";
@font-face {
  font-family: "Trebuchet MS";
  src: url("/assets/styles/trebuc.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

:root {
  --color-primary: #9f006f;
  --color-secondary: #f400aa;
  --color-text-dark: #201a29;
  --color-text-light: #ffffff;
  --color-text-muted: #a1a1a1;
  --color-bg-light: #fbfbfb;
  --color-footer-start: #95239b;
  --color-footer-end: #6b1472;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Lato", sans-serif;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

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

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn--primary {
  background: linear-gradient(180deg, #f400aa 0%, #9f006f 100%);
  color: var(--color-text-light);
  text-transform: uppercase;
  max-width: 250px;
  width: 100%;
}
@media (max-width: 768px) {
  .btn--primary {
    max-width: 300px;
  }
}
.btn--primary:hover {
  background: transparent;
  color: #9f006f;
  border-color: #f400aa;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-title {
    font-size: 28px;
  }
}
/* CSS from section:header */
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.site-header__logo img {
  width: 56px;
  height: 56px;
}

.site-header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 41px;
}

.site-header__nav a {
  font-size: 14px;
  color: var(--color-text-dark);
  font-weight: 400;
}

.site-header__nav a.active {
  text-shadow: 0px 0px 4px #ff0feb;
}

.site-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
  .site-header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .site-header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
  }
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px 0;
    text-align: center;
    z-index: 999;
  }
  .site-header__nav.active {
    display: block;
  }
  .site-header__nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .site-header__nav a {
    font-size: 18px;
    font-weight: 500;
  }
}
.site-header__mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.site-header__mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.site-header__mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.site-header__mobile-toggle span {
  transition: all 0.3s ease;
}

/* CSS from section:hero */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 480px;
  padding-top: 80px;
  background-image: url("/assets/img/hero.webp");
  background-size: cover;
  background-position: center;
  color: var(--color-text-light);
}

.hero-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 970px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-section__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.hero-section__subtitle {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }
  .hero-section__title {
    font-size: 24px;
  }
  .hero-section__subtitle {
    font-size: 16px;
  }
}
.party77games-about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.party77games-about-section__container {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 992px) {
  .party77games-about-section__container {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.party77games-about-section__image-wrapper {
  flex: 1;
}
.party77games-about-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 530px;
  width: 100%;
  gap: 24px;
}
@media (max-width: 992px) {
  .party77games-about-section__content {
    align-items: flex-start;
  }
}
.party77games-about-section__content p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 992px) {
  .party77games-about-section__content p {
    font-size: 14px;
  }
}
.party77games-about-section__title {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
}
@media (max-width: 992px) {
  .party77games-about-section__title {
    font-size: 24px;
    text-align: center;
  }
}

.web {
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 992px) {
  .web {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 992px) {
  .mobile {
    display: flex;
  }
}

.party77games-promo-banner {
  height: 300px;
  background-image: url("/assets/img/bg.webp");
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .party77games-promo-banner {
    height: 200px;
  }
}

.party77games-features-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .party77games-features-section {
    padding-bottom: 0;
  }
}
.party77games-features-section__grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 992px) {
  .party77games-features-section__grid {
    gap: 24px;
  }
}

.party77games-feature-item {
  display: flex;
  align-items: center;
  gap: 80px;
}
.party77games-feature-item--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .party77games-feature-item {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .party77games-feature-item--reverse {
    flex-direction: column-reverse;
  }
}
.party77games-feature-item__image-wrapper {
  flex: 0 0 47%;
}
@media (max-width: 992px) {
  .party77games-feature-item__image-wrapper {
    flex-basis: auto;
  }
}
.party77games-feature-item__image-wrapper img {
  border-radius: 20px;
  width: 100%;
}
.party77games-feature-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 992px) {
  .party77games-feature-item__content {
    align-items: flex-start;
  }
}
.party77games-feature-item__content p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 992px) {
  .party77games-feature-item__content p {
    text-align: left;
    font-size: 14px;
  }
}
.party77games-feature-item__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 992px) {
  .party77games-feature-item__title {
    text-align: left;
    font-size: 14px;
    font-style: normal;
  }
}

/* CSS from section:games */
.games-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.games-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}

.game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 0 24px 0;
  text-align: center;
}

.game-card__image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.game-card__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.game-card .btn {
  width: calc(100% - 48px);
}

@media (max-width: 992px) {
  .games-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .games-section__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* CSS from section:footer */
.site-footer {
  background: linear-gradient(180deg, var(--color-footer-start) 0%, var(--color-footer-end) 100%);
  color: #f1f1f1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.site-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.site-footer__disclaimer {
  max-width: 1240px;
  width: 100%;
  font-size: 14px;
  line-height: 1.3;
}

.site-footer__disclaimer p {
  margin: 0 0 16px 0;
}
@media (max-width: 992px) {
  .site-footer__disclaimer p {
    text-align: left;
  }
}

.site-footer__disclaimer p:last-child {
  margin-bottom: 0;
}

.site-footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .site-footer__logos {
    flex-direction: column;
    gap: 16px;
  }
}

.site-footer__logos img {
  height: 40px;
  width: auto;
}

.site-footer__links {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .site-footer__links {
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    gap: 16px;
  }
}

.site-footer__links a {
  font-size: 14px;
}

.site-footer__copyright {
  color: var(--color-text-muted);
  font-size: 14px;
  text-align: center;
}

.site-footer__copyright p {
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer__disclaimer {
    text-align: center;
  }
}
/* CSS from section:contact-form */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.contact-widget {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 900px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 24px; /* Approximate vertical distance between title and email line */
}

.title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #201a29;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.email-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-icon {
  width: 24px;
  height: 24px;
}

.email-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #1a291c;
  margin: 0;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  line-height: 1.3;
  color: #201a29;
}

.form-input,
.form-textarea {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 100px;
  padding: 14px 16px;
  font-size: 16px;
  width: 93%;
  color: #1a291c;
}
@media (max-width: 768px) {
  .form-input,
  .form-textarea {
    width: 90%;
  }
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #999999;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999999;
}

.form-textarea::-moz-placeholder {
  color: #999999;
  padding-left: 10px;
}

.form-textarea::placeholder {
  color: #999999;
  padding-left: 10px;
}

.form-textarea {
  height: 100px;
  resize: vertical;
}

.submit-button {
  background-color: #183153;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  cursor: pointer;
  text-align: center;
  align-self: flex-start;
  width: 246px;
  transition: background-color 0.3s;
}

.submit-button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-widget {
    padding: 20px;
  }
  .submit-button {
    width: 100%;
  }
}
.email-group {
  position: relative;
  /* Warning State */
  /* Error State */
  /* Success State */
}
.email-group .input-wrapper {
  position: relative;
}
.email-group .validation-icon {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.email-group .validation-message {
  font-size: 12px;
  margin-top: 4px;
  height: 16px;
  color: transparent;
  transition: color 0.3s ease;
  font-family: var(--font-main);
}
.email-group.warning .form-input {
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 1px #ffc107;
}
.email-group.warning .validation-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFC107'%3E%3Cpath d='M12 2L1 21h22L12 2zm0 3.5L19.5 19h-15L12 5.5z'/%3E%3Cpath d='M12 16c.8 0 1.5-.7 1.5-1.5S12.8 13 12 13s-1.5.7-1.5 1.5.7 1.5 1.5 1.5z'/%3E%3Cpath d='M12 9c.6 0 1-.4 1-1V7c0-.6-.4-1-1-1s-1 .4-1 1v1c0 .6.4 1 1 1z'/%3E%3C/svg%3E");
  opacity: 1;
}
.email-group.warning .validation-message {
  color: #ffc107;
}
.email-group.error .form-input {
  border-color: #f44336 !important;
  box-shadow: 0 0 0 1px #f44336;
}
.email-group.error .validation-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F44336'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z'/%3E%3Cpath d='M16.6 7.4L12 12l-4.6-4.6-1.4 1.4L10.6 13l-4.6 4.6 1.4 1.4L12 14.6l4.6 4.6 1.4-1.4L13.4 13l4.6-4.6z'/%3E%3C/svg%3E");
  opacity: 1;
}
.email-group.error .validation-message {
  color: #f44336;
}
.email-group.success .form-input {
  border-color: #4caf50 !important;
  box-shadow: 0 0 0 1px #4caf50;
}
.email-group.success .validation-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z'/%3E%3Cpath d='M16.6 7.4L12 12l-2.6-2.6-1.4 1.4L12 14.6l6-6-1.4-1.4z'/%3E%3C/svg%3E");
  opacity: 1;
}
.email-group.success .validation-message {
  color: #4caf50;
}

/* Success Modal Styles */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.success-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: var(--primary-text);
}
.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}
.modal-content p {
  font-family: var(--font-main);
  margin-bottom: 20px;
}

.age-verification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 41, 28, 0.8); /* #1A291C з прозорістю 0.6 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.age-verification__content {
  background-color: var(--color-bg-light);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
}
.age-verification__title {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--color-text-dark);
  text-transform: uppercase;
  text-align: center;
}
.age-verification__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 480px) {
  .age-verification__buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.age-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  max-width: 250px;
  width: 100%;
  text-transform: uppercase;
}
.age-btn--primary {
  background: linear-gradient(180deg, #f400aa 0%, #9f006f 100%);
  color: var(--color-text-light);
}
.age-btn--primary:hover {
  background: transparent;
  color: #9f006f;
  border: 2px solid #f400aa;
}

.age-btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.age-btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-bg-light);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  max-width: 540px;
  width: 100%;
  z-index: 9999;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}
.cookie-banner__text {
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}
.cookie-banner__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  max-height: 50px;
}
@media (max-width: 480px) {
  .cookie-banner__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    right: 10px;
    left: 10px;
    max-width: none;
    width: auto;
    padding: 16px;
  }
  .cookie-banner__buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-height: none;
  }
}
.party77games-privacy-policy {
  background-color: #ffffff;
  padding: 5rem 2rem;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.party77games-privacy-policy__container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1rem;
}
.party77games-privacy-policy__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #001b28;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #95239b;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.party77games-privacy-policy__content {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}
.party77games-privacy-policy__content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  color: #001b28;
}
.party77games-privacy-policy__content p {
  margin-top: 1rem;
}

.game-section {
  background-color: #1a1a1a;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}
.game-section .container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.game-section .game-title {
  font-size: 72px;
  font-weight: normal;
  text-transform: uppercase;
  font-family: "Red Hat Display Black", sans-serif;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}
.game-section .game-wrapper {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 56.25%;
}
.game-section .game-wrapper iframe.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  display: block;
}

@media (max-width: 1240px) {
  .game-section .container {
    padding: 0 15px;
  }
  .game-section .game-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .game-section {
    padding: 30px 10px;
  }
  .game-section .game-title {
    font-size: 28px;
  }
}/*# sourceMappingURL=main.css.map */