:root {
  --main_color: #f08e1f;
  --second_color: #f5ff6e;
  --add_color: #376eb5;
}

@font-face {
  font-family: "Poppins";
  src: url('/fonts/Poppins/Poppins-Regular.ttf');
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  word-wrap: break-word; overflow-wrap: break-word;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;

}
body {

  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #121212;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header {
  background-color: #161516;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 100px;
}

.nav-desktop {
  display: flex;
  gap: 20px;
}

.nav-desktop a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-desktop a.active {
  color: var(--main_color);
}

.nav-desktop a:hover {
  color: var(--main_color);
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #161516;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 10;
  padding: 20px;
  display: none; 
}

.mobile-menu.open {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-right: 20px;
}

.close-button {
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding-right: 25px;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-mobile a.active {
  color: var(--main_color);
}

.nav-mobile a:hover {
  color: var(--main_color);
}


@media (max-width: 768px) {
  .nav-desktop {
      display: none;
  }
  .menu-toggle {
      display: block;
  }
  .mobile-menu {
      display: block;
  }
}

.banner {
  background: #161516;
  background-size: cover;
  background-position: center;
  padding: 50px 10%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 37%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 300px; 
  height: 300px; 
  background: radial-gradient(circle, rgba(204, 203, 204, 0.251), transparent 70%);
  filter: blur(60px); 
  pointer-events: none;
}

.fullImageFrame {
  width: 100%;
  height: 500px;
  padding-top: 40px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.fullImageFrame img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center center;
  display: block;
}


.banner-content {
  max-width: 1140px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}


.banner-text {
  flex: 1;
  text-align: left;
  padding-right: 50px;
}


.banner-text h1 {
  font-family: "Poppins";
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.banner-text p {
  width: 400px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 32px;
}

.how-to-play {
  background-color: #161516;
  padding: 40px 10%;
  font-family: Arial, sans-serif;
}

.how-to-play-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.how-to-play-header {
  flex: 1;
}

.how-to-play-header h1 {
  font-size: 64px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

.how-to-play-header p {
  font-size: 16px;
  color: #ffffff;
}

.hero-image {
  flex: 1; 
  width: 50%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.how-to-play-section {
  padding: 40px 10%;
  background-color: #fff;
}

.content {
  display: flex;
  gap: 40px;
}

.left-column {
  flex: 1;
  max-width: 40%;
}

.left-column h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.image-container {
  width: 300px; 
  height: 650px;
  overflow: hidden;
  border-radius: 15px;
}

.player-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.right-column {
  flex: 2;
  color: #2a2a2a;
}

.right-column h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  line-height: 30px;
  margin-top: 20px;
}

.right-column p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Адаптивність */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }
  
  .left-column, .right-column {
    max-width: 100%;
  }
  
  .player-image {
    margin-top: 20px;
  }

  .image-container {
    width: 100%; 
  }
}


.download-form {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 30px;
  gap: 15px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  max-width: 450px;
  width: 100%;
  box-sizing: border-box;
  color: #ffffff;
  border-radius: 16px;
}

.download-form h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #050505;
  text-transform: uppercase;
  text-align: left;
}

.download-form input {
  background: #F0F2F4;
  border: 0px solid #ddd;
  padding: 12px;
  font-size: 1rem;
  color: #121212;
  height: 34px;
  width: 92%;
  margin-bottom: 5px;
  margin-top: 5px;
  border-radius: 15px;
}

.download-form button, .download-form a {
  background: linear-gradient(180deg, var(--second_color) 0%, var(--main_color) 100%);
  color: #121212;
  border: 0px solid #ddd;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  max-width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;

}

.download-form button:hover, .download-form a:hover {
  background-color: var(--add_color);
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    align-items: center;
  }

  .banner {
    padding: 20px 30px;
  }
  
  .banner-text {
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .download-form {
    max-width: 100%;
    padding: 20px;
  }
}


.welcome-section {
  justify-content: center;
  padding: 100px 10%;
  background:#fff;
  background-repeat: no-repeat;
  background-position: left top;
}

.welcome-container {
  display: flex;
  max-width: 1140px;
  width: 100%;
  gap: 20px;
}

.welcome-image {
  flex: 1 1 50%;
}

.welcome-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.welcome-text {
  width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}

.welcome-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

.welcome-text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

@media (max-width: 768px) {
  .welcome-container {
      flex-direction: column;
  }
  .welcome-text {
      max-width: 100%;
  }

  .second-text {
    padding-right: 0px;
  }

  .second-text h1 {
    padding-right: 0;
    text-align: center;
    font-size: 2.5rem;
    line-height: 50px;
  }

  .download-form input {
    background: #FFFFFF;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 1rem;
    color: #121212;
    width: 90%;
    margin-bottom: 15px;
  }
}

.advantages-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 10%;
  background-image: url('/img/bg.jpg');
  background-repeat: repeat;
  background-position: right top;
}

.advantages-section h2 {
  font-family: "Poppins";
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 80px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.advantages-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.advantage {
  position: relative;
  background-color: #fff;
  padding: 40px 20px 20px;
  border-radius: 16px;
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 280px;
  box-sizing: border-box;
  color: #1B1A1B;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}

.advantage-icon img {
  width: 40px;
  height: 40px;
}

.advantage h3 {
  margin-top: 30px;
  font-family: "Poppins";
  font-size: 1.5rem;
  font-weight: 600;
  color: #1B1A1B;
}

.advantage p {
  font-family: "Poppins";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1B1A1B;
}

.terms-section h1 {
  max-width: 900px;
  text-transform: uppercase;
  font-family: "Poppins";
  font-size: 48px;
  font-weight: 800;
  line-height: 60px;
  color: #000;
}

h3 {
  max-width: 900px;
  text-transform: uppercase;
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 400;
  line-height: 60px;
  color: #000;
}

h4 {
  max-width: 900px;
  text-transform: uppercase;
  font-family: "Poppins";
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 60px;
  color: #000;
}


ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

ul li {
  margin-bottom: 10px;
}

ul li p {
  margin: 0;
}

strong {
  color: #000;
}

p a {
  color: var(--add_color);
  text-decoration: underline;
}

p a:hover {
  color: #000;
}

.note {
  font-size: 0.9em;
  color: #ff4d4d;
}


@media (max-width: 768px) {
  h1 {
    font-weight: 800;
    font-size: 2em;
  }

  .terms-section h1 {
    font-weight: 800;
    font-size: 2em;
  }

  h2 {
    font-size: 1.75em;
  }

  h3 {
    font-size: 1.25em;
  }

  p, ul {
    font-size: 0.95em;
  }
}

.how-container {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.how {
  margin-top: 2rem;
}

.how h3 {
  font-family: "Poppins";
  font-size: 32px;
  font-weight: 800;
  line-height: 45px;
  text-align: left;
}

.how p {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #DBDBDB;

}

@media (max-width: 768px) {
  .advantages-section {
    padding: 30px 10%;
  }

  .advantages-container {
      flex-direction: column;
      align-items: center;
  }
  .advantage {
    margin-top: 40px;
      max-width: 100%;
  }
  .advantages-section h2 {
    line-height: 50px;
    font-size: 2rem;
  }

  .how-section h2 {
    font-size: 2rem;
  }

  .banner-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 50px;
}

.banner-text {
  margin: 0 auto;
  width: 100%;
  align-items: center;
  padding: 0;
  text-align: center;
}

.banner-content p {
  width: 100%;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}
}

.footer {
  background-color: #fff;
  color: #000000;
  padding: 40px 10%;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
}

.footer-left {
  flex: 1 1 30%;
  min-width: 220px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
  margin-bottom: 20px;
}

.logo img {
  width: 80px;

}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-menu li {
  margin-bottom: 5px;
}

.footer-menu li a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #000;
}

.footer-right {
  flex: 1 1 70%;
  min-width: 320px;
  padding-left: 20px;
}

.footer-right h3 {
  font-size: 1rem;
  color: #000000;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 20px;
}

.footer-right p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666666;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  width: 100%;
}

/* Адаптивність */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    min-width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
  .footer-menu {
    justify-content: center;
  }
  .logo {
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }

}



.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1C1C1CF2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background-color: #FFF;
  position: relative;
  padding: 100px 40px;
  border: 0px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  color: #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 16px;
}


.popup-content h2, .popup-buttons {
  position: relative;
  z-index: 1; 
}


.popup-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.popup-button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.no-button {
  width: 200px;
  height: 60px;
  border: none;
  background: linear-gradient(180deg, var(--second_color) 0%, var(--main_color) 100%);
  gap: 10px;
  opacity: 1;
  border-radius: 50px;
}

.yes-button {
  width: 200px;
  height: 60px;
  border: none;
  background: linear-gradient(180deg, var(--second_color) 0%, var(--main_color) 100%);
  gap: 10px;
  opacity: 1;
  border-radius: 50px;
}

.yes-button:hover {
  background: linear-gradient(180deg, var(--main_color) 0%, var(--second_color) 100%);
}


.no-button:hover {
  background: #f8b9a3;
}



@media (max-width: 768px) {
  .popup-content {
    padding: 40px 15px;
    width: 100%;
    margin: 20px;
  }

  .popup-content h2 {
    font-size: 20px;
  }

  .popup-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  

  .popup-button {
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 40px 10px;
    margin: 20px;
  }


  .popup-content h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .popup-button {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  
}

.table-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.table__container {
  width: 100%;
  max-width: 900px;
  overflow-x: auto; 
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins";
  color: #DBDBDB;
}

.section-header, .section-heading h2 {
  background-color: #fff;
  color: #000;
  font-size: 18px;
  padding: 10px;
  text-align: left;
  border-top: 1px solid #555;
}

.section-heading h2 {
  margin: 0;
  font-size: 20px;
}

.styled-table th {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 15px;
  text-align: left;
}

.styled-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #333;
}

.styled-table tr:nth-child(even) {
  background-color: #1f1f1f;
}

.styled-table tr:nth-child(odd) {
  background-color: #2a2a2a;
}

.note {
  font-size: 14px;
  color: #ff4d4d;
  text-align: left;
}

@media (max-width: 600px) {
  .styled-table th, .styled-table td {
    padding: 10px;
    font-size: 14px;
  }
  
}


.contact-section {
  background-color: #fff;
  display: flex;
  gap: 20px;
  padding: 40px 10%;
  font-family: Arial, sans-serif;
}

.contact-info {
  flex: 1;
  padding: 30px;
  background: linear-gradient(180deg, var(--second_color) 0%, var(--main_color) 100%);
  border-radius: 15px;
  color: #000;
}

.contact-info h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-details {
  list-style: none;
  padding: 0;
  font-size: 20px;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 20px;
}

.contact-details .icon {
  margin-right: 10px;
}

.contact-form {
  flex: 1;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: 0px;
}

.contact-form h3 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-form p {
  color: #000;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 92%;
  height: 30px;
  padding: 20px;
  border: 0px solid #ddd;
  border-radius: 15px;
  background: #F0F2F4;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  height: 60px;
  border: none;
  background: linear-gradient(180deg, var(--second_color) 0%, var(--main_color) 100%);
  gap: 10px;
  opacity: 1;
  border-radius: 50px;
  color: #121212;
  font-size: 16px;
  font-weight: bold;
}

.contact-form button:hover {
  background: linear-gradient(180deg, var(--main_color) 0%, var(--second_color) 100%);
}

.bg-contact {
  padding: 10px;
  display: flex;
  background: linear-gradient(180deg, var(--second_color) 0%, var(--main_color) 100%);
  border-radius: 25px;
  border: none;
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
  .bg-contact {
    flex-direction: column;
  }

  .how-to-play-header-container {
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
  }

}

.terms-section {
  padding: 40px 10%;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.terms-container {
  max-width: 1140px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  color: #333;
}

.terms-container h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.terms-container h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
  margin-top: 20px;
}

.terms-container p {
  font-size: 1rem;
  color: #666;
}