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

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0b0b10, #141422, #0b0b10);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  min-height: 100vh;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.text-box-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-family: 'Krona One', sans-serif;
  font-size: 1rem;
}

.logo-text-second {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #00aaff;
}

/* About Section */
.about-section {
  text-align: center;
  padding: 80px 10%;
}

.about-title {
  font-family: 'Krona One', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 60px;
}

/* Team */
.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border
