body {
  background-color: #001f3f;
  color: white;
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
}
.nav {
  display: flex;
  background-color: #003366;
  padding: 10px;
  position: relative;
  align-items: center;
}
.secret-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 24px;
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.secret-btn:hover {
  background-color: rgba(0, 123, 255, 0.2);
  transform: scale(1.1);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-image {
  max-width: 90%;
  max-height: 90%;
  animation: fadeIn 0.5s ease;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  border: 2px solid #007bff;
}
.nav-item {
  color: white;
  margin-right: 15px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}
.nav-item.active {
  background-color: #007bff;
}
.nav-item:hover {
  background-color: #0056b3;
}
.main {
  text-align: center;
  margin-top: 50px;
}
.title {
  font-size: 48px;
  color: #3399ff;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 20px;
  color: #99ccff;
  font-weight: 400;
  opacity: 0.9;
}
.script-box {
  background-color: #003366;
  padding: 15px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 600px;
  border: 1px solid #007bff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto Mono', monospace;
}
#script {
  user-select: all;
  word-break: break-word;
  font-size: 14px;
  font-family: 'Roboto Mono', monospace;
  color: white;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 5px;
  color: white;
}
button > svg {
   fill: white;
}
button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
button:hover > svg {
   fill: white;
}
.footer {
  text-align: center;
  margin-bottom: 30px;
}
.footer span {
  color: #cccccc;
  font-size: 14px;
  display: inline-block;
  transition: all 0.5s ease;
  font-weight: 300;
}
.footer:hover span {
  color: #3399ff;
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(51, 153, 255, 0.5);
}
.hub-image {
  max-width: 600px;
  width: 100%;
  margin: 30px auto;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}
.hub-image:hover {
  transform: scale(1.02);
}
.info-content {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #003366;
  border-radius: 10px;
  border: 1px solid #007bff;
  text-align: left;
}
.info-content h3 {
  font-weight: 600;
  color: #3399ff;
  margin-top: 15px;
  margin-bottom: 10px;
}
.info-content p, .info-content li {
  font-weight: 300;
  line-height: 1.6;
  color: white;
}
.info-content ul {
  padding-left: 20px;
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}
.nav-item.disabled {
  pointer-events: none;
}
