/* ---- reset ---- */
body{ margin:0; font:normal 75% Arial, Helvetica, sans-serif; }
canvas{ display: block; vertical-align: bottom; }

/* ---- particles.js container ---- */
#particles-js{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1e40af;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}

/* ---- stats.js ---- */
.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  z-index: 10;
}
.js-count-particles{ font-size: 1.1em; }
#stats, .count-particles{
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}
#stats{ border-radius: 3px 3px 0 0; overflow: hidden; }
.count-particles{ border-radius: 0 0 3px 3px; }

/* ---- About Content Animations ---- */
.about-content {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease-out forwards;
}

.about-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.about-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease;
}

.about-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 1s forwards; }
.about-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 1.2s forwards; }
.about-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 1.4s forwards; }

.about-card:hover {
  transform: translateY(-10px);
}

.about-icon {
  transition: all 0.3s ease;
}

.about-card:hover .about-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(255, 255, 255, 0.3);
}

.about-card-title {
  transition: color 0.3s ease;
}

.about-card:hover .about-card-title {
  color: #fbbf24;
}

.about-card-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-description {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.6s forwards;
  font-size: 1.25rem;
  line-height: 1.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    padding: 2rem 1rem;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .about-card {
    margin-bottom: 2rem;
  }
  
  .about-card-text {
    font-size: 1rem;
  }
  
  .about-description {
    font-size: 1.1rem;
  }
} 