* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #0b0f1a;
  color: #ffffff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #08101f;
  border-bottom: 1px solid #00bfff;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #00bfff;
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* або 32px — залежно від висоти хедера */
  width: auto;
  object-fit: contain;
}


.nav .btn {
  margin-left: 10px;
  padding: 10px 20px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #00bfff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav .btn:hover {
  background-color: #00bfff;
  color: #000;
}

.btn.register {
  background-color: #0066ff;
  border: none;
  color: #fff;
}

.btn.register:hover {
  background-color: #3399ff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: linear-gradient(135deg, #0b0f1a 0%, #08101f 100%);
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #00bfff;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn.primary {
  background-color: #05f705;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn.primary:hover {
  background-color: #3ec803;
}

.hero-image img {
  max-width: 250px;
}

/* 🔽 Адаптація для мобільних пристроїв */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .btn.primary {
    width: 100%;
    max-width: 300px;
    padding: 12px 0;
  }

  .header {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    text-align: center;
  }

  .nav .btn {
    margin-left: 0;
    margin-top: 10px;
  }
}
.fullwidth-image {
  width: 100%;
  overflow: hidden;
}

.fullwidth-image img {
  width: 100%;
  height: auto;
  display: block;
}
main {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #e0e0e0;
}

main h2 {
  color: #00bfff;
  font-size: 28px;
  margin-bottom: 20px;
}

main p {
  margin-bottom: 20px;
}
.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #ffffff;
  background-color: #0f1625;
  border: 1px solid #00bfff;
}

table thead {
  background-color: #08101f;
}

table th,
table td {
  padding: 12px 16px;
  border: 1px solid #00bfff;
  text-align: left;
}

table th {
  color: #00bfff;
  font-weight: 600;
}

table tr:nth-child(even) {
  background-color: #101a2f;
}

table tr:hover {
  background-color: #112036;
}
.table-wrapper-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-wrapper-scroll table { width: 100%; border-collapse: collapse; }
.faq {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #00bfff;
  text-align: center;
}

.faq-item {
  background-color: #0f1625;
  border-left: 4px solid #00bfff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background-color: #101c2f;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.faq-item p {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.6;
}
.site-footer {
  background-color: #08101f;
  color: #aaa;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 1px solid #00bfff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  gap: 15px;
}

.footer-left p,
.footer-right p {
  margin: 0;
}

.age-badge {
  display: inline-block;
  background-color: #00bfff;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  padding: 2px 6px;
  margin-right: 10px;
  font-size: 14px;
}
.image-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}

.image-center img {
  max-width: 100%;
  height: auto;
  display: block;
}
.responsible-play {
  background-color: #f8fbff;
  border-left: 6px solid #1e60d4;
  border-radius: 12px;
  padding: 24px;
  max-width: 720px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 64, 128, 0.08);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #002b60;
}

.responsible-content h2 {
  font-size: 22px;
  color: #1e60d4;
  margin-bottom: 12px;
}

.responsible-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.responsible-button {
  background-color: #1e60d4;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.responsible-button:hover {
  background-color: #154ba1;
}

@media (max-width: 600px) {
  .responsible-play {
    padding: 16px;
  }

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

  .responsible-button {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
}