/* Base Colors */
/* Accent Colors (Neon) */
/* Secondary Accent Colors */
/* Typography */
/* Mixins for effects */
/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", "Montserrat", sans-serif;
  color: #FFFFFF;
  background-color: #080808;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(8, 8, 8, 0.8);
  z-index: 1000;
  transition: background-color 0.3s ease-in-out;
}
.header__logo {
  font-family: "Orbitron", "Rajdhani", "Teko", "Aldrich", sans-serif;
  font-size: 2em;
  letter-spacing: 0.1em;
  text-shadow: 0 0 3px #00FFFF, 0 0 6px #00FFFF, 0 0 9px #00FFFF;
  box-shadow: 0 0 3px #00FFFF, 0 0 6px #00FFFF;
}
.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header__nav ul li {
  margin-left: 40px;
}
.header__nav ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 5px;
}
.header__nav ul li a:hover {
  color: #FF00AA;
  text-shadow: 0 0 2px #FF00AA, 0 0 4px #FF00AA, 0 0 6px #FF00AA;
  box-shadow: 0 0 2px #FF00AA, 0 0 4px #FF00AA;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #0A0F1E, #080808);
  position: relative;
  overflow: hidden;
}
.hero__content {
  text-align: center;
  z-index: 1;
}
.hero__title {
  font-family: "Orbitron", "Rajdhani", "Teko", "Aldrich", sans-serif;
  font-size: 5em;
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px #00FFFF, 0 0 16px #00FFFF, 0 0 24px #00FFFF;
  box-shadow: 0 0 8px #00FFFF, 0 0 16px #00FFFF;
  margin-bottom: 30px;
}
.hero__scroll-indicator {
  width: 2px;
  height: 50px;
  background-color: #FF00AA;
  margin: 0 auto;
  animation: pulse 1.5s infinite alternate;
  text-shadow: 0 0 2px #FF00AA, 0 0 4px #FF00AA, 0 0 6px #FF00AA;
  box-shadow: 0 0 2px #FF00AA, 0 0 4px #FF00AA;
}

@keyframes pulse {
  0% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* Concept Section */
.concept {
  min-height: 80vh;
  background-color: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
  position: relative;
}
.concept__inner {
  display: flex;
  width: 80%;
  max-width: 1200px;
  align-items: flex-start;
}
.concept__title {
  font-family: "Orbitron", "Rajdhani", "Teko", "Aldrich", sans-serif;
  font-size: 3em;
  letter-spacing: 0.1em;
  color: #00FFFF;
  border-right: 2px solid #00FFFF;
  padding-right: 30px;
  margin-right: 50px;
  flex-shrink: 0;
  text-shadow: 0 0 3px #00FFFF, 0 0 6px #00FFFF, 0 0 9px #00FFFF;
  box-shadow: 0 0 3px #00FFFF, 0 0 6px #00FFFF;
}
.concept__message p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #CCCCCC;
}

/* Showcase Section */
.showcase {
  min-height: 100vh;
  background-color: #080808;
  padding: 100px 0;
  text-align: center;
}
.showcase__title {
  font-family: "Orbitron", "Rajdhani", "Teko", "Aldrich", sans-serif;
  font-size: 3em;
  letter-spacing: 0.1em;
  color: #FF00AA;
  margin-bottom: 80px;
  text-shadow: 0 0 3px #FF00AA, 0 0 6px #FF00AA, 0 0 9px #FF00AA;
  box-shadow: 0 0 3px #FF00AA, 0 0 6px #FF00AA;
}
.showcase__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 0 50px;
}
.showcase__gallery .showcase__item {
  background-color: #121212;
  height: 300px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.showcase__gallery .showcase__item:hover {
  border-color: #00FFFF;
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.showcase__gallery .showcase__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
  min-height: 50vh;
  background-color: #0A0F1E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
}
.contact__title {
  font-family: "Orbitron", "Rajdhani", "Teko", "Aldrich", sans-serif;
  font-size: 3em;
  letter-spacing: 0.1em;
  color: #00FF7F;
  margin-bottom: 50px;
  text-shadow: 0 0 3px #00FF7F, 0 0 6px #00FF7F, 0 0 9px #00FF7F;
  box-shadow: 0 0 3px #00FF7F, 0 0 6px #00FF7F;
}
.contact__content {
  text-align: center;
}
.contact__content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}
.contact__social {
  display: flex;
  gap: 30px;
}
.contact__social .social__icon {
  font-family: "Roboto Condensed", "Montserrat", sans-serif;
  font-size: 1.1em;
  position: relative;
  padding-bottom: 5px;
}
.contact__social .social__icon:hover {
  color: #00FF7F;
  text-shadow: 0 0 2px #00FF7F, 0 0 4px #00FF7F, 0 0 6px #00FF7F;
  box-shadow: 0 0 2px #00FF7F, 0 0 4px #00FF7F;
}

/* Footer */
.footer {
  background-color: #080808;
  padding: 30px;
  text-align: center;
  font-size: 0.8em;
  color: #CCCCCC;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design (Basic) */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  .header__logo {
    font-size: 1.5em;
  }
  .header__nav ul li {
    margin-left: 20px;
  }
  .hero__title {
    font-size: 3em;
  }
  .concept {
    flex-direction: column;
    text-align: center;
  }
  .concept__inner {
    flex-direction: column;
    align-items: center;
  }
  .concept__title {
    border-right: none;
    border-bottom: 2px solid #00FFFF;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .showcase__gallery {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}