:root {
  --cyber-black: #0a0a0a;
  --cyber-dark: #121212;
  --cyber-green: #00ff88;
  --cyber-green-dark: #007944;
  --cyber-purple: #6e00ff;
  --cyber-blue: #00a2ff;
  --cyber-text: #e0e0e0;
  --cyber-gray: #333333;
}

body {
  background-color: var(--cyber-black);
  color: var(--cyber-text);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

.navbar {
  background-color: rgba(10, 10, 10, 0.95) !important;
  border-bottom: 1px solid var(--cyber-green);
  box-shadow: 0 2px 15px rgba(0, 255, 136, 0.2);
}

.navbar-item {
  color: var(--cyber-text);
  transition: all 0.3s ease;
}

.navbar-item:hover {
  color: var(--cyber-green) !important;
  background-color: rgba(0, 255, 136, 0.1) !important;
}

.hero {
  background: linear-gradient(135deg, var(--cyber-black), var(--cyber-gray));
  position: relative;
  overflow: hidden;
}

.cyber-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--cyber-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.cyber-subtitle {
  color: var(--cyber-text);
  font-weight: 300;
  margin-bottom: 2rem;
}

.terminal-box {
  background-color: rgba(0, 20, 15, 0.5);
  border: 1px solid var(--cyber-green);
  border-radius: 4px;
  padding: 1.5rem;
  max-width: 800px;
  position: relative;
}

.terminal-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(90deg, var(--cyber-green), var(--cyber-blue));
  opacity: 0.1;
}

.terminal-text {
  color: var(--cyber-green);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.8;
}

.prompt {
  color: var(--cyber-green);
  margin-right: 0.5rem;
}

.card {
  background: linear-gradient(145deg, #121212, #0a0a0a) !important;
  border: 1px solid var(--cyber-gray);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--cyber-green);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

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

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

.button.cyber-button {
  background-color: transparent;
  border: 1px solid var(--cyber-green);
  color: var(--cyber-green);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button.cyber-button:hover {
  background-color: var(--cyber-green);
  color: var(--cyber-black);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.cyber-footer {
  background-color: var(--cyber-black);
  border-top: 1px solid var(--cyber-gray);
  padding: 2rem 1.5rem;
}

.cyber-link {
  color: var(--cyber-text);
  transition: all 0.3s ease;
}

.cyber-link:hover {
  color: var(--cyber-green);
}

@media (max-width: 768px) {
  .cyber-title {
    font-size: 2.5rem;
  }
}

.cyber-team {
  background: linear-gradient(to bottom, #0a0a0a, #121212);
  position: relative;
  overflow: hidden;
}

.cyber-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(110, 0, 255, 0.05) 0%, transparent 20%);
  z-index: 0;
}

.cyber-team-title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.cyber-team-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ff88, transparent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.team-member {
  transition: all 0.3s ease;
}

.member-card {
  background: linear-gradient(145deg, #121212, #0a0a0a);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

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

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

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.avatar-border {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00ff88, #6e00ff);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-card:hover .avatar-border {
  opacity: 1;
}

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

.member-specialty {
  color: #00ff88;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.member-links .button {
  transition: all 0.3s ease;
}

.member-links .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.member-position {
  color: #00ff88 !important;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.5rem;
}

.member-description {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 1rem 0;
  line-height: 1.5;
  border-left: 2px solid #00ff88;
  padding-left: 1rem;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.expertise-item {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 4px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  color: #00ff88;
}

.member-experience {
  font-size: 0.85rem;
  color: #00a2ff;
  margin: 0.5rem 0;
}

.cyber-alias {
  color: #6e00ff;
  text-shadow: 0 0 5px rgba(110, 0, 255, 0.5);
}

.member-card:hover .member-description {
  color: #e0e0e0;
}

.member-card:hover .expertise-item {
  background: rgba(0, 255, 136, 0.2);
  border-color: #00ff88;
}

/* Responsive */
@media (max-width: 768px) {
  .member-expertise {
      justify-content: center;
  }
  
  .member-info {
      text-align: center;
  }
  
  .member-description {
      text-align: left;
  }
}

.languages {
  font-size: 0.8rem;
  color: #6e00ff;
  margin-top: 0.3rem;
}

.fa-shield-virus, .fa-skull, .fa-user-secret, .fa-memory {
  color: #00ff88;
}

.fa-paint-brush, .fa-laptop-code {
  color: #6e00ff;
}

.member-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.member-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.member-links {
  margin-top: auto;
}