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

body {
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
  line-height: 1.6;
  padding-top: 70px; /* відступ під хедер */
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 999;
}

.logo img {
  height: 50px; 
  max-height: 60px;
  width: auto;
}

.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: rgb(255, 242, 0); /* або будь-який інший м'який відтінок, наприклад, #00ffc3 або #8aff80 */
}
@media (max-width: 768px) {
  /* Хедер мобільний: бургер — лого — кнопка */
  header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 10px 15px;
    height: 60px;
  }

  .burger {
    display: flex;
  }

  .logo {
    display: flex;
    justify-content: center;
  }

  .logo img {
    height: 42px;
  }

  .cta {
    display: flex;
    justify-content: flex-end;
  }

  /* Меню мобільне */
  .menu {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 15px 20px;
    z-index: 998;
  }

  .menu.show {
    display: flex;
  }

  /* Вирівнювання зображення по центру */
  .image-wrapper {
    justify-content: center;
  }

  .image-wrapper img {
    width: 90%;
    margin: 0 auto;
  }

  /* Трохи менший відступ для тексту */
  .container {
    padding: 0 12px;
  }
}


.play-btn {
  background: #fff;
  color: #000;
  padding: 8px 26px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.play-btn:hover {
  background: #ffe550;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

#menu {
  display: flex;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #111;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 15px 20px;
    z-index: 998;
  }

  .menu.show {
    display: flex;
  }

  header {
    flex-wrap: wrap;
  }

  .cta {
    margin-left: auto;
  }
}


h1 {
  font-size: 2rem;
  margin: 20px 0 10px;
}

h2 {
  font-size: 1.5rem;
  margin: 10px 0;
}

p {
  margin-bottom: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #444;
  padding: 10px;
  text-align: left;
}

th {
  background: #222;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Адаптація */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .cta {
    align-self: flex-end;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}


.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-scroll table { width: 100%; border-collapse: collapse; }


.image-wrapper {
  display: block; /* або flex, але з justify-content: center */
  text-align: center; /* для блокового центрування inline-елементів */
  margin: 20px auto;
}

.image-wrapper img {
  display: inline-block; /* щоб текстове центрування працювало */
  width: 60%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


/* Адаптація для мобільних */
@media (max-width: 768px) {
  .image-wrapper img {
    width: 90%;
  }
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5px; 
}

h1, h2 {
  text-align: center;
}
