body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

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

.logo img {
  height: 60px;
}

.content a {
  color: #4ddfff; /* світло-голубий */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.content a:hover {
  color: #00AEEF; /* яскравіший голубий при наведенні */
  text-decoration: underline;
}
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #00AEEF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

.buttons {
  display: flex;
  gap: 10px;
}

.login-btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #555;
}

.register-btn {
  background-color: #00cc66;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: #00aa55;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 204, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 204, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 204, 102, 0); }
}

h1 {
  text-align: center;
  margin-top: 30px;
  font-size: 2em;
}
.banner {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.banner-link {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.banner-overlay {
  position: relative;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.banner-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* мягкое затемнение */
  z-index: 1;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  box-sizing: border-box;
}

.banner-text {
  color: #fff;
  font-size: 18px;
  max-width: 60%;
  line-height: 1.5;
}

.banner-button {
  background-color: hsl(205, 99%, 58%);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.banner-button:hover {
  background-color: #32b7ff;
}

/* 📱 Адаптация для мобильных устройств */
@media (max-width: 600px) {
  .banner-link {
    height: 220px;
  }

  .banner-overlay {
    height: 100%;
    position: relative;
  }

  .banner-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
  }

  .banner-overlay::before {
    background: rgba(0, 0, 0, 0.4); /* мягкое затемнение */
  }

  .banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .banner-text {
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 10px  -8px; /* сдвигаем влево на 8px */
  }

  .banner-button {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    white-space: nowrap;
    max-width: 100%;
    background-color: hsl(205, 99%, 58%);
    color: white;
    border: none;
    cursor: pointer;
  }

  .banner-button:hover {
    background-color: #32b7ff;
  }
}







.content {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1em;
  line-height: 1.6;
  padding: 0 20px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 30px;
  color: #00AEEF;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 30px;
    color: #00AEEF;
    cursor: pointer;
  }
  .buttons {
    margin-top: 10px;
  }
}
.styled-table {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  border-collapse: collapse;
  font-size: 1rem;
  background-color: #111;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.styled-table thead {
  background-color: #00AEEF;
  color: #000;
}

.styled-table th,
.styled-table td {
  padding: 12px 16px;
  text-align: left;
}

.styled-table tbody tr {
  border-bottom: 1px solid #333;
  transition: background-color 0.3s ease;
}

.styled-table tbody tr:hover {
  background-color: #222;
}

@media (max-width: 600px) {
  .styled-table th,
  .styled-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
.styled-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } .styled-table-scroll table { width: 100%; border-collapse: collapse; }

.responsible-play {
  background-color: #1a1a1a;
  border-left: 5px solid #00AEEF;
  padding: 20px 24px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.1);
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

.responsible-play h3 {
  color: #00AEEF;
  margin-top: 0;
  font-size: 1.2rem;
}

.more-text {
  display: none;
  margin-top: 10px;
}

.toggle-btn {
  margin-top: 12px;
  background-color: #00AEEF;
  color: #000;
  border: none;
  padding: 10px 16px;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-btn:hover {
  background-color: #0099cc;
}
.site-footer {
  background-color: #000;
  color: #b3b3b3;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: none;
}
