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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, #14001a, #1a0033);
  min-height: 100vh;
  color: #fcecff;
  line-height: 1.6;
}

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

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff99ff;
  text-shadow: 0 0 15px #ff33cc;
}

.header p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #e0caff;
  opacity: 0.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: #250030;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #5e2a65;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.15);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff66cc;
  text-shadow: 0 0 10px #ff66cc;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.lab-card {
  background: #1a0026;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.05);
  border: 1px solid #3d1b48;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lab-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff66cc, #b76df2);
}

.lab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
}

.lab-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.lab-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1rem;
  color: white;
  background: linear-gradient(135deg, #ff33cc, #b76df2);
  box-shadow: 0 0 10px #ff99ff;
}

.lab-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffe4ff;
  text-shadow: 0 0 5px rgba(255,255,255,0.1);
}

.lab-description {
  color: #caa9d9;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
}
.task-link {
  background: linear-gradient(135deg, #ff33cc, #b76df2);
  color: #f2f2f2;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none; /* No glow by default */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle outline */
}

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

.task-link:hover::before {
  left: 100%;
}

.task-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px #ff66cc, 0 0 24px #b76df2;
  border-color: #ff99ff;
}


.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tech-tag {
  background: rgba(255, 192, 203, 0.05);
  color: #ffccff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #ff99ff;
  box-shadow: 0 0 5px rgba(255, 182, 193, 0.2);
}

.footer {
  text-align: center;
  margin-top: 3rem;
  color: #e0caff;
  opacity: 0.85;
  text-shadow: 0 0 5px rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .header h1 {
    font-size: 2rem;
  }

  .labs-grid {
    grid-template-columns: 1fr;
  }
}