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 img {
  max-width: 90%;
  border-radius: 12px;
}

.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;
}
