@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;900&display=swap');

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

body, html {
  font-family: 'Outfit', sans-serif;
  height: 100%;
  background: #0d0d0d;
  color: #e0e0e0;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0d0d0d;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.client-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #8a9bff;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1100;
}

.nav-toggle .bar {
  height: 4px;
  width: 100%;
  background-color: #8a9bff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  background: #0d0d0d tr;
  backdrop-filter: blur(50px);
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.4s ease;
}

.fullscreen-nav.open {
  display: flex;
}

.fullscreen-nav ul {
  list-style: none;
  text-align: center;
}

.fullscreen-nav ul li {
  margin: 1rem 0;
}

.fullscreen-nav ul li a {
  color: #8a9bff;
  font-size: 2.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.fullscreen-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #8a9bff;
  transition: width 0.3s ease;
}

.fullscreen-nav ul li a:hover::after {
  width: 100%;
}

main {
  padding-top: 80px;
}

.home-section {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  padding: 0 1rem;
}

.center-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.gradient-text {
  font-size: 3.5rem;
  font-weight: 1000;
  background: linear-gradient(90deg, #8a9bff, #a9b5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.second-text {
  font-size: 2.2rem;
  color: #c0c0c0;
  font-weight: 700;
}

.main-btn {
  padding: 0.8rem 2rem;
  font-size: 2rem;
  background-color: #8a9bff;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 6px 12px rgba(138, 155, 255, 0.25);
}

.main-btn:hover {
  background-color: #6d7edc;
}

.features-section {
  padding: 3rem 1rem 5rem;
  background: #0d0d0d;
  text-align: center;
}

.features-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #8a9bff;
}

.cards-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(138, 155, 255, 0.3);
}

.feature-icon {
  font-size: 48px;
  color: #8a9bff;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
}

.card p {
  color: #c0c0c0;
  font-size: 1rem;
}

.about-section {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 5rem 2rem;
  text-align: center;
}

.about-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #8a9bff;
}

.about-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #c0c0c0;
  line-height: 1.6;
}

.footer {
  background: #0d0d0d;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer img {
  height: 32px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer img:hover {
  opacity: 0.8;
}

.footer p {
  font-size: 1rem;
  color: #c0c0c0;
  font-weight: 500;
}

.footer strong {
  color: #8a9bff;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  background-color: #1a1a1a;
  box-shadow: 0 0 0 transparent;
  transition: all 0.25s ease-in-out;
}

.icon:hover {
  transform: scale(1.15);
  color: white;
  box-shadow: 0 0 12px rgba(138, 155, 255, 0.6);
}

.icon.discord:hover {
  background-color: #5865f2;
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.7);
}

.icon.github:hover {
  background-color: #333;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.icon.youtube:hover {
  background-color: #ff0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

.icon.x:hover {
  background-color: #000;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .gradient-text {
    font-size: 2.5rem;
  }

  .second-text {
    font-size: 1.5rem;
  }

  .main-btn {
    font-size: 1rem;
  }

  .header {
    padding: 1rem;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}
