:root {
  --color-primary: #00ff00;
  --color-secondary: #1a1a1a;
  --color-accent: #00ff00;
  --color-background: #000000;
  --color-text: #ffffff;
  --color-text-secondary: #888888;
  --font-primary: 'Share Tech Mono', monospace;
  --font-secondary: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Matrix Rain Effect */
.matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

.matrix-rain canvas {
  display: block;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-primary);
  font-size: 24px;
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary);
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--color-primary);
}

.hero p {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-primary);
  font-size: 16px;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  margin: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button.primary {
  background-color: var(--color-primary);
  color: var(--color-background);
}

.button.secondary {
  background-color: transparent;
  color: var(--color-primary);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--color-primary);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.8);
}

.features h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(26, 26, 26, 0.5);
  padding: 30px;
  border: 1px solid var(--color-primary);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.feature-icon {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.learn-more {
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.learn-more:hover {
  text-shadow: 0 0 10px var(--color-primary);
}

/* Showcase Section */
.showcase {
  padding: 100px 0;
}

.showcase h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-primary);
}

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

.showcase-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-primary);
}

.showcase-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.showcase-item:hover .overlay {
  opacity: 1;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.overlay h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.overlay p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

/* Team Section */
.team {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.8);
}

.team h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  margin-bottom: 20px;
  object-fit: cover;
}

.team-member h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-member p {
  color: var(--color-text-secondary);
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-text-secondary);
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-size: 16px;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -20px;
  font-size: 12px;
  color: var(--color-primary);
}

.contact-info {
  display: grid;
  gap: 30px;
}

.info-item {
  padding: 20px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid var(--color-primary);
}

.info-item h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.info-item p {
  color: var(--color-text-secondary);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-info p {
  color: var(--color-text-secondary);
  margin: 20px 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-text-secondary);
  color: var(--color-text-secondary);
}

/* Animations */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  nav ul {
    display: none;
  }
  
  .feature-grid,
  .showcase-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}