:root {
  --black: #000;
  --white: #fff;
  --dark: #171717;
  --light: #252525;
  --grey: #a2a2a2;
  --accent: #c15145;
  --blue-gradient: linear-gradient(180deg, #bd382a 0%, #b462f1 40%, #673ab7 100%);
  --btn-gradient: linear-gradient(90deg, #ab2d1f 0%, #9138d1 100%);
  --yelow-gradient: linear-gradient(90deg, #ffcc33 0%, #ff6600 100%);
}

*,
::after,
::before {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

ul {
  padding-left: 20px;
}

a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

section {
  padding-block: 100px;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Montserrat';
  background: #edf5f5;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

main {
  flex-grow: 1;
}

[class*="__container"] {
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

/* Pop up */

/* Попап overlay */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.age-verification-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Попап форма */
.age-verification-popup {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(1);
  transition: transform 0.3s ease;
}

.age-verification-overlay.hidden .age-verification-popup {
  transform: scale(0.8);
}

.age-verification-popup h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
}

.age-verification-popup p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-instruction {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Поля форми */
.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

.form-field {
  text-align: left;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.form-field input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1.1rem;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #f8f9fa;
}

.form-field input:focus {
  outline: none;
  border-color: #4f7cff;
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.1);
  background: white;
}

.form-field input::placeholder {
  color: #adb5bd;
  font-size: 1rem;
}

/* Кнопка */
.verify-btn {
  background: linear-gradient(135deg, #4f7cff 0%, #4338ca 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 124, 255, 0.4);
}

.verify-btn:active {
  transform: translateY(0);
}

/* Футер форми */
.form-footer {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #888;
  line-height: 1.4;
}

.form-footer a {
  color: #4f7cff;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Error стилі */
.error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
}

/* Адаптивність */
@media (max-width: 600px) {
  .age-verification-popup {
    padding: 30px 20px;
  }

  .form-group {
    flex-direction: column;
    gap: 20px;
  }

  .age-verification-popup h2 {
    font-size: 1.8rem;
  }
}

/* Header */

.header {
  padding-block: 20px;
  background: var(--blue-gradient);
  border-bottom: 2px solid var(--accent);
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  width: 150px;
}

.header-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.header-menu a {
  color: var(--white);
  transition: all 0.4s;
  background: var(--btn-gradient);
  padding: 10px 15px;
  border-radius: 10px;
}

.header-menu a:hover {
  background: var(--yelow-gradient);
}

/* Бургер-меню стилі */
.burger-btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 50;
}

.burger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  transition: 0.3s all;
}

.burger-icon span {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  transition: 0.3s all;
}

.burger-icon span:nth-child(1) {
  top: 0;
}

.burger-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-icon span:nth-child(3) {
  bottom: 0;
}

/* Анімація для перетворення на хрестик */
.burger-icon.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-icon.active span:nth-child(2) {
  opacity: 0;
}

.burger-icon.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Медіа-запит для мобільних пристроїв */
@media (max-width: 600px) {
  body.lock {
    overflow: hidden;
  }

  .burger-btn {
    display: block;
  }

  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--blue-gradient);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 30px;
    transition: 0.5s all;
    z-index: 5;
  }

  .header-menu.active {
    right: 0;
  }

  .header-menu a {
    font-size: 19px;
    margin-bottom: 15px;
  }

  .header-btn {
    margin-left: auto;
  }
}

/* Footer */

.footer {
  padding-block: 50px;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-top {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.footer-block {
  border-left: 2px solid var(--accent);
  border-radius: 20px;
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: var(--white);
  position: relative;
  top: 0;
  transition: all 0.4s;
}

.footer-block:hover {
  top: 5px;
}

.footer-block h2 {
  font-size: 19px;
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 5px;
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.footer-bottom img {
  width: 200px;
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
  }
}

/* Hero */



.hero-section::before {
  background: var(--blue-gradient);
  opacity: 0.3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  content: "";
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
}

.hero-block {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #0000004c;
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 30px;
  border-radius: 20px;
}

.hero-block h1 {
  font-size: 50px;
}

.hero-block h2 {
  font-size: 30px;
}

.hero-block a {
  color: var(--white);
  background: var(--btn-gradient);
  width: fit-content;
  padding: 15px 20px;
  border-radius: 20px;
  transition: all 0.4s;
}

.hero-block a:hover {
  background: var(--yelow-gradient);
}

.skip {
  flex: 1;
}

@media (max-width: 600px) {
  .hero__container {
    flex-direction: column;
  }

  .hero-block h1 {
    font-size: 40px;
  }

  .hero-block h2 {
    font-size: 20px;
  }

  .hero-block a {
    font-size: 14px;
  }
}

/* Info */

.info__container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.info-heading {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  border-bottom: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 60%;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.info-heading h2 {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}

.info-block {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.info-item {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  flex: 1;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s;
}

.info-item h2 {
  color: var(--accent);
  font-size: 19px;
}

.slide-bottom {
  top: 40px;
}

.slide-top {
  bottom: 40px;
}

@media (max-width: 600px) {
  .info-heading {
    max-width: 100%;
  }

  .info-heading h2 {
    font-size: 30px;
  }

  .info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .slide-bottom {
    top: 0;
  }

  .slide-top {
    bottom: 0;
  }
}

/* Game */

.game__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.game-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.game-heading h2,
.game-heading h1 {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}

.solid-game {
  border: 1px solid var(--accent);
  width: 100px;
}

.game-block {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
}

.game-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  background: var(--blue-gradient);
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  align-items: center;
}

.game-item img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.game-item h2 {
  font-size: 25px;
  color: var(--white);
}

.game-item a {
  background: var(--yelow-gradient);
  padding: 15px 20px;
  width: fit-content;
  border-radius: 20px;
  color: var(--white);
  transition: all 0.4s;
}

.game-item a:hover {
  background: var(--btn-gradient);
}

@media (max-width: 600px) {

  .game-heading h2,
  .game-heading h1 {
    font-size: 30px;
  }

  .game-block {
    flex-direction: column;
  }
}

/* About */

.about__container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.about-block-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.about-block-left img {
  width: 300px;
  border-radius: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--accent);
}

.about-block-left h2 {
  color: var(--accent);
  font-size: 40px;
}

.abot-block-right {
  flex: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 20px;
  color: var(--black);
  background: var(--white);
}

@media (max-width: 600px) {
  .about__container {
    flex-direction: column;
  }
}

/* Rewiews */

.rewiews__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rewiews-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.rewiews-heading h2 {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}

.solid-rewiews {
  border: 1px solid var(--accent);
  width: 100px;
}

.rewiews-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.rewiews-item {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rewiews-item h2 {
  color: var(--accent);
}

.local {
  color: var(--grey);
}

@media (max-width: 600px) {
  .rewiews-heading h2 {
    font-size: 30px;
  }

  .rewiews-block {
    flex-direction: column;
  }
}

/* faq */

.faq__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-heading h2 {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}

.solid-faq {
  border: 1px solid var(--accent);
  width: 100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-category {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.category-icon {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  margin-right: 15px;
}

.platform-essentials .category-icon {
  background: var(--blue-gradient);
}

.social-features .category-icon {
  background: var(--yelow-gradient);
}

.category-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.faq-question {
  padding: 20px;
  background: #f8f9ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
  background: #e8ecff;
  color: var(--black);
}

.faq-plus {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item:hover .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: white;
  color: var(--grey);
  line-height: 1.6;
}

.faq-item:hover .faq-answer {
  max-height: 200px;
  padding: 20px;
}

@media (max-width: 768px) {
  .faq-heading h2 {
    font-size: 30px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-category {
    padding: 20px;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 15px;
    font-size: 0.9rem;
  }

  .faq-item:hover .faq-answer {
    padding: 15px;
  }
}

/* Comand */

.comand__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comand-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.comand-heading h2 {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}

.solid-comand {
  border: 1px solid var(--accent);
  width: 100px;
}

.comand-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.comand-item {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comand-item h2 {
  color: var(--accent);
}

@media (max-width: 600px) {
  .comand-heading h2 {
    font-size: 30px;
  }

  .comand-block {
    flex-direction: column;
  }
}

/* Discover */



.discover-section::before {
  background: var(--blue-gradient);
  opacity: 0.3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  content: "";
}

.discover__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
}

.discover-block {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #00000090;
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 30px;
  border-radius: 20px;
}

.discover-block h2 {
  font-size: 30px;
}

.discover-block a {
  color: var(--white);
  background: var(--btn-gradient);
  width: fit-content;
  padding: 15px 20px;
  border-radius: 20px;
  transition: all 0.4s;
}

.discover-block a:hover {
  background: var(--yelow-gradient);
}

.skip-discover {
  flex: 1;
}

@media (max-width: 600px) {
  .discover__container {
    flex-direction: column;
  }
}

/* Politic */

.politic__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}