.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #4f8ef7;
}

.hero p {
  font-size: 20px;
  color: #999;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero .buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .buttons a {
  background: #1f1f1f;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.hero .buttons a[href="/invite"] {
  background: linear-gradient(135deg, #678ac6, #3869b3, #1d509c);
  color: white;
  transition: all 0.3s ease;
}

.hero .buttons a[href="/invite"]:hover {
  background: linear-gradient(135deg, #4f8ef7, #82b5ff);
  transform: translateY(-3px);
}

.hero .buttons a[href="/support"] {
  background: linear-gradient(135deg, #6ac8c8, #3ba6b0, #2d7d88);
  color: white;
  transition: all 0.3s ease;
}

.hero .buttons a[href="/support"]:hover {
  background: linear-gradient(135deg, #81e6e6, #4fc8d8, #3695a1);
  transform: translateY(-3px);
}

.hero .buttons a svg {
  width: 20px;
  height: 20px;
}

.features {
  background: transparent;
  padding: 80px 20px;
  text-align: center;
}

.features h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #4f8ef7;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.feature {
  background: linear-gradient(145deg, #1a1a1a, #121212);
  padding: 40px 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
}

.feature::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(79, 142, 247, 0.2) 0%,
    transparent 70%
  );
  z-index: 0;
}

.feature i {
  font-size: 60px;
  color: #4f8ef7;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

.feature p {
  font-size: 16px;
  color: #aaa;
  z-index: 1;
  position: relative;
}

.feature:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(145deg, #222, #1a1a1a);
  box-shadow: 0 10px 20px rgba(79, 142, 247, 0.2);
}

.stats {
  background: transparent;
  padding: 80px 20px;
  text-align: center;
}

.stats h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #4f8ef7;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.stat {
  background: linear-gradient(145deg, #1a1a1a, #121212);
  padding: 40px 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
}

.stat::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(79, 142, 247, 0.2) 0%,
    transparent 70%
  );
  z-index: 0;
}

.stat svg {
  height: 60px;
  width: 60px;
  top: 20px;
  color: #4f8ef7;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.stat h3 {
  font-size: 32px;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

.stat p {
  font-size: 16px;
  color: #aaa;
  z-index: 1;
  position: relative;
}

.stat:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(145deg, #222, #1a1a1a);
  box-shadow: 0 10px 20px rgba(79, 142, 247, 0.2);
}