* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tahoma', sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1429 100%);
  color: #b0b8cc;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Title Section */
.title-section {
  margin-bottom: 3.75rem;
  position: fixed;
  top: 40%;
  left: 6rem;
  z-index: 50;
  text-align: left;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
               0 0 60px rgba(255, 255, 255, 0.2);
  animation: glitch 1.5s infinite;
}

.glow-line {
  width: 10rem;
  height: 0.125rem;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  margin: 0.5rem 0 0 0;
  box-shadow: 0 0 20px rgba(163, 17, 177, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

/* Bottom Left Menu */
.bottom-left-menu {
  position: fixed;
  bottom: auto;
  top: 52%;
  left: 5rem;
  z-index: 100;
  animation: slideInLeft 0.8s ease-out;
}

.vertical-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-link {
  font-size: 1rem;
  letter-spacing: 0.125rem;
  color: #b0b8cc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-left: 0.1875rem solid transparent;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  text-transform: uppercase;
}

.menu-link::before {
  content: '>';
  position: absolute;
  left: -0.9375rem;
  opacity: 0;
  color: #00ff88;
  transition: all 0.3s ease;
}

.menu-link:hover {
  color: #00ff88;
  border-left: 0.1875rem solid #00ff88;
  padding-left: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.menu-link:hover::before {
  opacity: 1;
  left: 0;
}

/* Background Grid */
.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 5px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 5px);
  background-size: 3.125rem 3.125rem;
  z-index: 1;
  pointer-events: none;
  animation: moveGrid 20s linear infinite;
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.element {
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  background: rgba(0, 217, 255, 0.03);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 252, 105, 0.8);
  animation: float 15s infinite ease-in-out;
}

.element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.element:nth-child(3) {
  bottom: 20%;
  left: 60%;
  animation-delay: 10s;
}

.mod-img{
  border-radius: 2rem 2rem 2rem 2rem;
  max-width: 7rem;
}

/* Animations */
@keyframes glitch {
  0%, 100% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
                 0 0 60px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                 0 0 40px rgba(255, 255, 255, 0.15);
  }
}

@keyframes pulse {
  0%, 100% {
    width: 18.75rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
  }
  50% {
    width: 12.5rem;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-3.125rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-1.875rem);
    opacity: 1;
  }
}

@keyframes moveGrid {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 3.125rem 3.125rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .title-section {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 50;
  }

  .main-title {
    font-size: 1.75rem;
    letter-spacing: 0.25rem;
    animation: none;
  }

  .glow-line {
    width: 7rem;
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-left-menu {
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
  }

  .vertical-menu {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .menu-link {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
  }
}