body {
  font-family: "Oswald", Arial, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  margin: 30px 0 10px;
  font-size: 2.6em;
  color: #ff2e2e;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 46, 46, 0.8);
  transition: 0.3s;
}

h1:hover {
  transform: scale(1.02);
  text-shadow: 0 0 20px rgba(255, 46, 46, 1);
}

h2 {
  margin-top: 40px;
  text-align: center;
  font-size: 1.4em;
  color: #ffffff;
  background: linear-gradient(90deg, #ff2e2e, #aa0000);
  padding: 8px 0;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(255, 46, 46, 0.4);
}

h3 {
  margin-top: 40px;
  text-align: center;
  font-size: 1.4em;
  color: #ffffff;
  padding: 8px 0;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(255, 46, 46, 0.4);
}

form {
  background: #141414;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px 25px;
  border-left: 6px solid #ff2e2e;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.8);
  transition: 0.3s;
}

form:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 46, 46, 0.2);
}

form label {
  display: block;
  margin-top: 15px;
  font-size: 0.85em;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

form input, form select, form button {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 1em;
  background: #1a1a1a;
  color: #f5f5f5;
  transition: all 0.2s ease-in-out;
}

form input:focus, form select:focus {
  border-color: #ff2e2e;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 46, 46, 0.7);
}

form button {
  background: linear-gradient(90deg, #ff2e2e, #cc1a1a);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  border-radius: 8px;
}

form button:hover {
  background: linear-gradient(90deg, #ff4d4d, #e60000);
  box-shadow: 0 0 12px rgba(255, 46, 46, 0.6);
  transform: translateY(-2px);
}

/* Tables */
table {
  width: 90%;
  margin: 25px auto;
  border-collapse: collapse;
  background: #141414;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

table thead {
  background: linear-gradient(90deg, #ff2e2e, #cc1a1a);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

table th, table td {
  padding: 12px 14px;
  text-align: center;
  font-size: 1em;
}

table tbody tr:nth-child(even) {
  background: #1e1e1e;
}

table tbody tr:nth-child(odd) {
  background: #141414;
}

table tbody tr:hover {
  background: #262626;
  transition: 0.2s;
}

table td:first-child {
  font-weight: bold;
  color: #ff2e2e;
}

#secretVideo {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  margin: 20px auto;
  display: none;
}

#secretVideo.show {
  display: block;
  opacity: 1;
}

#secretVideo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 9999;
  display: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
body {
  margin: 0;
  padding: 0;
}

h2, p {
  margin: 10px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #38444d;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

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

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