body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  background: #111;
  color: white;
  overflow-x: hidden;
}

canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 🔥 вот эта строка спасает */
}

#content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.container1 {
  max-width: 900px;
  margin: 60px auto;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 195, 0.1);
}

.i81 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #00ffc3;
}

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

th,
td {
  padding: 10px;
  text-align: left;
  border-bottom: 2px solid #00ffc360;
}

a {
  color: #00ffc3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

form {
  margin-bottom: 20px;
}

input[type="text"],
input[type="file"] {
  padding: 10px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  outline: none;
}

button {
  padding: 10px 20px;
  background-color: #00ffc3;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #00cfa9;
}

/* Top nav */
.top-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #000;
  padding: 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.dropbtn {
  background-color: #111;
  color: #00ffc3;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 255, 200, 0.2);
  border-radius: 6px;
  z-index: 100;
}

.dropdown-content a {
  color: #ccc;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: #222;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.logo {
  font-size: 32px;
  text-align: center;
  margin-top: 80px;
  color: #00ffc3;
  text-shadow: 0 0 20px #00ffc370;
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  from { text-shadow: 0 0 10px #00ffc370; }
  to   { text-shadow: 0 0 30px #00ffc3; }
}
