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

body {
  font-family: 'Orbitron', 'Futura', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, #1a0d2e 0%, #0f0519 100%);
  min-height: 100vh;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(255, 0, 255, 0.03) 100px
    ),
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 98px,
      rgba(0, 255, 255, 0.03) 100px
    );
  pointer-events: none;
  z-index: -1;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

header {
  text-align: center;
  padding: 120px 20px;
  background: rgba(26, 13, 46, 0.8);
  backdrop-filter: blur(10px);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  border: 2px solid #ff00ff;
  border-left: none;
  border-right: none;
  box-shadow: 
    0 0 50px rgba(255, 0, 255, 0.5),
    inset 0 0 50px rgba(0, 255, 255, 0.1);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.2), transparent);
  animation: neon-sweep 3s ease-in-out infinite;
}

@keyframes neon-sweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}

header h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 40px #ff00ff,
    0 0 80px #ff00ff;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
  animation: neon-flicker 4s ease-in-out infinite alternate;
}

@keyframes neon-flicker {
  0%, 100% {
    text-shadow: 
      0 0 10px #ff00ff,
      0 0 20px #ff00ff,
      0 0 40px #ff00ff,
      0 0 80px #ff00ff;
  }
  50% {
    text-shadow: 
      0 0 5px #ff00ff,
      0 0 10px #ff00ff,
      0 0 20px #ff00ff,
      0 0 40px #ff00ff;
  }
}

header h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #00ffff;
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
}

#services {
  padding: 80px 20px;
  background: rgba(26, 13, 46, 0.6);
  backdrop-filter: blur(15px);
  margin: 60px auto;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 
    0 0 50px rgba(255, 0, 255, 0.2),
    inset 0 0 50px rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 255, 0.3);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
  z-index: -1;
  border-radius: 22px;
  opacity: 0.3;
  animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

#services h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
  color: #ffffff;
  text-shadow: 
    0 0 10px #ff00ff,
    0 0 20px #ff00ff;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: rgba(15, 5, 25, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: #00ffff;
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.5),
    inset 0 0 30px rgba(255, 0, 255, 0.1);
  transform: translateY(-5px);
}

.service-card strong {
  color: #ff00ff;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px #ff00ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.service-card li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

#why-choose {
  padding: 80px 20px;
  background: rgba(15, 5, 25, 0.8);
  margin: 80px auto;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 
    0 0 50px rgba(0, 255, 255, 0.3),
    inset 0 0 50px rgba(255, 0, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
}

#why-choose h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
  color: #ffffff;
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff;
  font-weight: 700;
  letter-spacing: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-item {
  background: rgba(26, 13, 46, 0.6);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.why-item:hover {
  border-color: #ff00ff;
  box-shadow: 
    0 0 25px rgba(255, 0, 255, 0.4),
    inset 0 0 25px rgba(0, 255, 255, 0.1);
  transform: translateY(-3px);
}

.why-item strong {
  color: #00ffff;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 10px #00ffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

#contact {
  padding: 80px 20px;
  background: rgba(26, 13, 46, 0.8);
  margin: 80px auto;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 
    0 0 50px rgba(255, 0, 255, 0.4),
    0 0 100px rgba(0, 255, 255, 0.2);
  text-align: center;
  border: 2px solid rgba(255, 0, 255, 0.5);
}

#contact h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 
    0 0 10px #ff00ff,
    0 0 20px #ff00ff;
  font-weight: 700;
  letter-spacing: 2px;
}

#contact p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

#contact a {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  border: 1px solid #00ffff;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px #00ffff;
}

#contact a:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff;
}

#tid-bits-link {
  text-align: center;
  padding: 80px 20px;
  margin: 100px auto 60px;
  max-width: 800px;
}

#tid-bits-link a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 25px 60px;
  background: rgba(26, 13, 46, 0.8);
  border: 3px solid #ff00ff;
  border-radius: 50px;
  transition: all 0.4s ease;
  display: inline-block;
  backdrop-filter: blur(10px);
  text-shadow: 0 0 10px #ff00ff;
  box-shadow: 
    0 0 30px rgba(255, 0, 255, 0.4),
    inset 0 0 30px rgba(0, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#tid-bits-link a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  transition: left 0.8s;
}

#tid-bits-link a:hover::before {
  left: 100%;
}

#tid-bits-link a:hover {
  border-color: #00ffff;
  box-shadow: 
    0 0 50px rgba(0, 255, 255, 0.6),
    inset 0 0 50px rgba(255, 0, 255, 0.2);
  transform: translateY(-5px);
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 40px #00ffff;
}

footer {
  background: rgba(15, 5, 25, 0.9);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px;
  text-align: center;
  margin-top: 100px;
  border-top: 2px solid rgba(255, 0, 255, 0.3);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

footer p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.8rem;
  }
  
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  #services,
  #why-choose,
  #contact {
    margin: 40px 15px;
    padding: 60px 25px;
  }
  
  #services h2,
  #why-choose h2,
  #contact h2 {
    font-size: 2.2rem;
  }
}