* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Source Code Pro', monospace;
}

body {
  background-color: #1A1A1A;
  color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Roboto Mono', monospace;
  color: #FFD700;
}

a {
  text-decoration: none;
  color: #FFD700;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #1A1A1A;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgba(26, 26, 26, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
}

nav .hamburger {
  display: none;
  font-size: 24px;
  color: #FFD700;
  cursor: pointer;
}

nav .nav-links {
  list-style: none;
  display: flex;
}

nav .nav-links li {
  margin-left: 20px;
}

nav .nav-links li a {
  font-size: 18px;
}

.hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 24px;
  margin-bottom: 40px;
}

.highlight {
  color: #FFD700;
}

.cta-button {
  background: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #CCAA00;
  transform: scale(1.1);
}

.services-section {
  padding: 100px 10%;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #FFD700;
}

.service-card i {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
}

.testimonials-section {
  padding: 100px 10%;
  text-align: center;
}

.testimonials-carousel {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
}

.testimonial-card {
  background: rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  min-width: 300px;
}

.client-name {
  font-weight: bold;
  color: #FFD700;
}

/* Footer */
footer {
  background: #2C2C2C;
  padding: 40px 10%;
  text-align: center;
}
/* About Section */
.about-section {
  padding: 100px 10%;
  text-align: center;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h3 {
  margin-top: 20px;
}

.about-text ul {
  list-style: none;
  margin-top: 10px;
}

.about-text ul li {
  margin-bottom: 10px;
}

.about-text ul li i {
  color: #FFD700;
  margin-right: 10px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.team-section {
  padding: 100px 10%;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.team-card {
  background: rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #FFD700;
}

.team-card h3 {
  margin-bottom: 10px;
}

.team-card p {
  margin-bottom: 10px;
}

.team-card .discord-handler {
  color: #FFD700;
  font-weight: bold;
}

footer {
  background: #2C2C2C;
  padding: 40px 10%;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-section h3 {
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.social-links a {
  font-size: 24px;
  margin: 0 10px;
  color: #FFD700;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #CCAA00;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  flex: 1;
}

.newsletter-form button {
  background: #FFD700;
  color: #1A1A1A;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  nav .hamburger {
    display: block;
  }

  nav .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 10%;
    background: rgba(26, 26, 26, 0.9);
    padding: 20px;
    border-radius: 10px;
  }

  nav .nav-links.active {
    display: flex;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 18px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-text {
    text-align: center;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #1A1A1A;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #1A1A1A, rgba(26, 26, 26, 0));
  pointer-events: none;
}