body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: linear-gradient(to right, #0f0f0f, #1a1a2e);
  color: white;
  text-align: center;
}

header img {
  width: 100%;
  height: auto;
  display: block;
}

.content {
  padding: 2em;
}

.animated-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2em;
  font-weight: bold;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.button-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5em;
  margin-top: 2em;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-description {
  font-size: 1.1rem;
  margin-bottom: 1em;
  color: #ccc;
}

.futuristic-button {
  display: inline-block;
  padding: 15px 40px;
  color: #00faff;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(145deg, #0e0e10, #1a1a1f);
  border: 2px solid #00faff;
  border-radius: 8px;
  position: relative;
  letter-spacing: 2px;
  box-shadow:
    0 0 8px #00faff,
    0 0 15px #00faff inset;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.futuristic-button::before,
.futuristic-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #00faff;
  border-radius: 10px;
  top: -6px;
  left: -6px;
  z-index: -1;
  opacity: 0.4;
  transform: scale(1.05);
  animation: flicker 2s infinite;
}

.futuristic-button::after {
  top: 6px;
  left: 6px;
  transform: scale(0.95);
  opacity: 0.3;
  animation-delay: 1s;
}

.futuristic-button:hover {
  box-shadow:
    0 0 12px #00faff,
    0 0 25px #00faff inset;
  transform: scale(1.05);
}

@keyframes flicker {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}


.history {
  /* display: flex; */
  .wdxl-lubrifont-jp-n-regular {
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-weight: 400;
  font-style: normal;
}

  justify-content: center;
  margin-top: 1em;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5em;
  margin-top: 2em;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1)
}

footer {
  background-color: #1f2937;
  padding: 2em;
  color: #aaa;
  font-size: 0.9rem;
}
h2{
  color: #00ffcc;
  font-family: 'Times New Roman', Times, serif;
}
.glow-text {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #00fff0; }
  to { text-shadow: 0 0 20px #00fff0, 0 0 30px #00fff0; }
}

.color-cycle {
  animation: colorChange 2s infinite alternate;
}

@keyframes colorChange {
  0% { color: #ff0000; }
  25% { color: #ff7300; }
  25%{color: green;}
  50% { color: #00ffcc }
  50% {color:blueviolet}
  75% { color: #00ff6a; }
  75% { color: blue;}
  100% { color: #ff009d; }

}

/* Sidebar base */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 230px;
  height: 100vh;
  background-color: #0a0f1a;
  color: white;
  padding: 20px;
  transition: transform 0.4s ease;
  z-index: 1000;
  border-right: 2px solid #57ff24cb;
  box-shadow: 4px 0 20px rgba(0, 255, 255, 0.15);
}

.sidebar.active {
  transform: translateX(250px);
}

/* Menu header */
.sidebar h2 {
  font-size: 22px;
  color: #00faff;
  text-align: center;
  margin-bottom: 30px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  display: inline-block;
  padding: 12px 20px;
  color: #00faff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(145deg, #0e0e10, #1a1a1f);
  border: 2px solid #00faff;
  border-radius: 8px;
  position: relative;
  letter-spacing: 1px;
  box-shadow:
    0 0 
}

/* Toggle button */
.sidebar-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #abb1b12d;
  color: #ff0000;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1100;
  font-weight: bold;
  border-radius: 5px;
}

/* Content push on sidebar active */
.main-content {
  transition: margin-left 0.4s ease;
  padding: 20px;
  margin-left: 0;
}

.sidebar.active ~ .main-content {
  margin-left: 250px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .sidebar {
    width: 200px;
  }

  .sidebar.active {
    transform: translateX(200px);
  }

  .sidebar-toggle {
    padding: 8px 12px;
  }

  .sidebar h2 {
    font-size: 18px;
  }

  .sidebar ul li {
    margin: 15px 0;
  }

  .main-content {
    padding: 10px;
  }

  .sidebar.active ~ .main-content {
    margin-left: 200px;
  }
}
.sidebar-link {
  display: inline-block;
  background: #000;
  color: #00faff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid #00faff;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #00faff, 0 0 10px #00faff;
  animation: glow-pulse 2s infinite ease-in-out;
}

.sidebar-link:hover {
  box-shadow: 0 0 15px #00faff, 0 0 25px #00faff, 0 0 35px #00faff;
  transform: scale(1.05);
}

/* Contact Section Styling */
#contact {
  padding: 50px 20px;
  background: linear-gradient(to right, #0a0f1a, #1a1a2e);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section input,
.contact-section textarea {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px #00faff;
}

.contact-section button {
  padding: 15px;
  background-color: #00faff;
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-section button:hover {
  background-color: #00bccc;
  transform: scale(1.05);
}
