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

body {
  font-family: 'Courier New', 'Monaco', monospace;
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
  min-height: 100vh;
  line-height: 1.6;
  color: #00ff00;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, transparent 98%, #00ff0010 100%),
    linear-gradient(0deg, transparent 98%, #00ff0005 100%);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

header {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
  margin-bottom: 60px;
  position: relative;
  border: 2px solid #00ff00;
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

header h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #00ff00;
  text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
  font-family: 'Courier New', monospace;
  letter-spacing: 3px;
}

header h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #00ff0080;
  text-shadow: 0 0 10px #00ff00;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

#services {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d1117 0%, #1a1a1a 100%);
  margin: 40px auto;
  border-radius: 0;
  max-width: 1200px;
  border: 1px solid #00ff0030;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ff0030, transparent, #00ff0030);
  z-index: -1;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #00ff00;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 20px #00ff00;
  letter-spacing: 2px;
}

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

.service-card {
  background: #0a0a0a;
  padding: 30px;
  border: 1px solid #00ff0050;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ff00;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: #00ff00;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
  transform: translateY(-2px);
}

.service-card strong {
  color: #00ff00;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 10px #00ff00;
}

.service-card p {
  color: #00ff0080;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: 'Courier New', monospace;
}

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

.service-card li {
  margin: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #00ff0080;
  font-family: 'Courier New', monospace;
}

.service-card li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #00ff00;
  font-weight: bold;
}

#why-choose {
  padding: 60px 20px;
  background: #000;
  margin: 40px auto;
  max-width: 1200px;
  border: 2px solid #00ff0030;
  position: relative;
}

#why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #00ff00;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 20px #00ff00;
  letter-spacing: 2px;
}

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

.why-item {
  background: #0a0a0a;
  border: 1px solid #00ff0030;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.why-item:hover {
  border-color: #00ff00;
  box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.1);
}

.why-item strong {
  color: #00ff00;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 10px #00ff00;
}

.why-item p {
  color: #00ff0080;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

#contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d1117 0%, #000 100%);
  margin: 40px auto;
  max-width: 1200px;
  text-align: center;
  border: 1px solid #00ff00;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.2);
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #00ff00;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 20px #00ff00;
  letter-spacing: 2px;
}

#contact p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #00ff0080;
  font-family: 'Courier New', monospace;
}

#contact a {
  color: #00ff00;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid #00ff00;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 10px #00ff00;
}

#contact a:hover {
  background: #00ff0010;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

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

#tid-bits-link a {
  color: #00ff00;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 15px 40px;
  border: 2px solid #00ff00;
  transition: all 0.4s ease;
  display: inline-block;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 15px #00ff00;
  position: relative;
  overflow: hidden;
}

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

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

#tid-bits-link a:hover {
  background: #00ff0010;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
  text-shadow: 0 0 25px #00ff00;
}

footer {
  background: #000;
  color: #00ff0080;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #00ff0030;
  font-family: 'Courier New', monospace;
}

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