@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600&family=Rajdhani:wght@300;500;700&display=swap");
#team {
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f0f4f8 100%);
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  padding: 80px 20px;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(200, 210, 220, 0.1) 50%), linear-gradient(90deg, rgba(0, 153, 255, 0.03), rgba(0, 242, 255, 0.01), rgba(0, 153, 255, 0.03));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 1;
}

.team-hero {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.team-hero .cyber-title {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0099ff, #006aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px rgba(0, 153, 255, 0.2));
}
.team-hero .team-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  color: #484f58;
  letter-spacing: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.team-card-wrapper {
  perspective: 1000px;
}

.team-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 153, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.team-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(225deg, transparent 50%, rgba(0, 153, 255, 0.05) 50%);
  border-bottom-left-radius: 20px;
}
.team-card:hover {
  border-color: rgba(0, 153, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 153, 255, 0.1);
}
.team-card:hover .avatar-bg {
  transform: scale(1.1) rotate(10deg);
  border-color: #0099ff;
}
.team-card:hover .status-badge {
  animation: pulse-light 1.5s infinite;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 153, 255, 0.02) 51%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
}

.avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
}

.avatar-bg {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 110px;
  height: 110px;
  border: 2px dashed rgba(0, 153, 255, 0.2);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f8f9fa;
  border: 2px solid rgba(0, 153, 255, 0.1);
  position: relative;
  z-index: 2;
}

.status-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #fff;
  color: #006aff;
  font-size: 0.6rem;
  padding: 4px 8px;
  border-radius: 10px;
  border: 1px solid #0099ff;
  font-family: "Orbitron", sans-serif;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.status-badge.status-critical {
  color: #ff0055;
  border-color: #ff0055;
}
.status-badge.status-online {
  color: #00aa77;
  border-color: #00aa77;
}
.status-badge.status-legendary {
  color: #e68a00;
  border-color: #e68a00;
}
.status-badge.status-afk {
  color: #888;
  border-color: #888;
}

.name-role .member-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.name-role .member-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  color: #006aff;
  text-transform: uppercase;
  margin: 2px 0;
  font-weight: 700;
}
.name-role .member-role {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.card-body {
  position: relative;
  z-index: 3;
  flex-grow: 1;
}
.card-body .member-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background: rgba(0, 153, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 153, 255, 0.08);
}
.stats-grid .stat-item {
  display: flex;
  flex-direction: column;
}
.stats-grid .stat-item .stat-label {
  font-size: 0.65rem;
  color: #888;
  text-transform: uppercase;
  font-family: "Orbitron", sans-serif;
}
.stats-grid .stat-item .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: #1a1a1a;
}
.stats-grid .stat-item .stat-value.text-highlight {
  color: #e68a00;
  font-weight: 900;
}

.skills-section {
  margin-bottom: 25px;
}
.skills-section .section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 15px;
}

.skill-bar-container {
  margin-bottom: 12px;
}
.skill-bar-container .skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 5px;
  font-family: "Rajdhani", sans-serif;
  color: #444;
}
.skill-bar-container .skill-track {
  height: 6px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.skill-bar-container .skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #006aff, #0099ff);
  box-shadow: 0 0 5px rgba(0, 153, 255, 0.2);
  border-radius: 3px;
}

.traits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.trait-tag {
  font-size: 0.65rem;
  padding: 3px 10px;
  background: rgba(0, 153, 255, 0.05);
  border: 1px solid rgba(0, 153, 255, 0.1);
  border-radius: 4px;
  color: #006aff;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}
.card-footer .system-diagnostic {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.card-footer .system-diagnostic .diag-line {
  font-family: "monospace";
  font-size: 0.6rem;
  color: #00aa77;
  opacity: 0.8;
  font-weight: 600;
}
.card-footer .card-icons {
  display: flex;
  gap: 15px;
  font-size: 1.1rem;
  color: #ccc;
}

.team-footer-note {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 5;
}
.team-footer-note .funny-note {
  font-family: "monospace";
  font-size: 0.8rem;
  color: #888;
}
.team-footer-note .easter-egg {
  margin-top: 20px;
  cursor: pointer;
  color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.team-footer-note .easter-egg:hover {
  color: #ff0055;
}

.glitch {
  position: relative;
  display: inline-block;
  color: #006aff;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00c1;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
  animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(10px, 9999px, 20px, 0);
  }
  10% {
    clip: rect(30px, 9999px, 40px, 0);
  }
  20% {
    clip: rect(50px, 9999px, 60px, 0);
  }
  30% {
    clip: rect(70px, 9999px, 80px, 0);
  }
  40% {
    clip: rect(90px, 9999px, 100px, 0);
  }
  50% {
    clip: rect(20px, 9999px, 30px, 0);
  }
  60% {
    clip: rect(40px, 9999px, 50px, 0);
  }
  70% {
    clip: rect(60px, 9999px, 70px, 0);
  }
  80% {
    clip: rect(80px, 9999px, 90px, 0);
  }
  90% {
    clip: rect(10px, 9999px, 20px, 0);
  }
  100% {
    clip: rect(30px, 9999px, 40px, 0);
  }
}
@keyframes glitch-anim2 {
  0% {
    clip: rect(80px, 9999px, 90px, 0);
  }
  10% {
    clip: rect(60px, 9999px, 70px, 0);
  }
  20% {
    clip: rect(40px, 9999px, 50px, 0);
  }
  30% {
    clip: rect(20px, 9999px, 30px, 0);
  }
  40% {
    clip: rect(0px, 9999px, 10px, 0);
  }
  50% {
    clip: rect(70px, 9999px, 80px, 0);
  }
  60% {
    clip: rect(50px, 9999px, 60px, 0);
  }
  70% {
    clip: rect(30px, 9999px, 40px, 0);
  }
  80% {
    clip: rect(10px, 9999px, 20px, 0);
  }
  90% {
    clip: rect(90px, 9999px, 100px, 0);
  }
  100% {
    clip: rect(80px, 9999px, 90px, 0);
  }
}
@keyframes pulse-light {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 153, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0);
  }
}
@media (max-width: 768px) {
  .team-hero .cyber-title {
    font-size: 2.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.member-boring-title, .member-boring-desc, .boring-note {
  display: none;
}

#team.business-mode {
  background: #ffffff;
  padding: 60px 20px;
}
#team.business-mode::before {
  display: none;
}
#team.business-mode .team-hero {
  margin-bottom: 40px;
}
#team.business-mode .team-hero .cyber-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: normal;
  background: none;
  -webkit-text-fill-color: #1a1a1a;
  filter: none;
}
#team.business-mode .team-hero .cyber-title .glitch {
  color: inherit;
}
#team.business-mode .team-hero .cyber-title .glitch::before, #team.business-mode .team-hero .cyber-title .glitch::after {
  display: none;
}
#team.business-mode .team-hero .team-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  letter-spacing: normal;
  max-width: 800px;
  margin: 0 auto;
}
#team.business-mode .team-card {
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: none;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#team.business-mode .team-card::after, #team.business-mode .team-card .card-glow, #team.business-mode .team-card .scanlines, #team.business-mode .team-card .card-footer, #team.business-mode .team-card .stats-grid, #team.business-mode .team-card .skills-section, #team.business-mode .team-card .traits-container, #team.business-mode .team-card .member-title, #team.business-mode .team-card .member-desc {
  display: none;
}
#team.business-mode .team-card .member-boring-title, #team.business-mode .team-card .member-boring-desc {
  display: block;
}
#team.business-mode .team-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #006aff;
}
#team.business-mode .team-card .avatar-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
#team.business-mode .team-card .avatar-container .avatar-bg, #team.business-mode .team-card .avatar-container .status-badge {
  display: none;
}
#team.business-mode .team-card .card-header {
  flex-direction: column;
  text-align: center;
  margin-bottom: 15px;
  gap: 10px;
}
#team.business-mode .team-card .name-role .member-name {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
#team.business-mode .team-card .name-role .member-boring-title {
  font-family: "Inter", sans-serif;
  color: #006aff;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 5px 0;
}
#team.business-mode .team-card .name-role .member-role {
  font-family: "Inter", sans-serif;
  color: #666;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: none;
}
#team.business-mode .team-card .card-body {
  text-align: center;
}
#team.business-mode .team-card .card-body .member-boring-desc {
  font-family: "Inter", sans-serif;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
#team.business-mode .team-footer-note .funny-note {
  display: none;
}
#team.business-mode .team-footer-note .boring-note {
  display: block;
  font-family: "Inter", sans-serif;
  color: #999;
  margin-bottom: 20px;
}
#team.business-mode .team-footer-note .easter-egg {
  color: #006aff;
  font-weight: 600;
}
#team.business-mode .team-footer-note .easter-egg:hover {
  text-decoration: underline;
}/*# sourceMappingURL=team.css.map */