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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #1c1f26;
  color: #fff;
  text-align: center;
  padding: 2px;
}

.hero {
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(to right, rgba(15, 32, 39, 0.9), rgba(44, 83, 100, 0.9)),
              url('https://cdn.cloudflare.steamstatic.com/apps/csgo/images/dust2/dust2_header.jpg') center/cover no-repeat;
  text-align: center;
  border-bottom: 4px solid #4db8ff;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1s ease-out;
}

.logo {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin: 5px 0;
  color: #ffffff;
}

.hero-content h1 span {
  color: #4db8ff;
}

.subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin: 5px 0;
}

.ip {
  font-size: 1rem;
  color: #aaa;
  margin-top: 5px;
}

.features {
  background: #2a2e39;
  padding: 20px;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 600px;
  text-align: left;
}

.features h2 {
  color: #4db8ff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.features ul {
  list-style: none;
  padding-left: 0;
}

.features ul li {
  padding: 8px 0;
  border-bottom: 1px solid #3c404c;
}

.join-btn,
.discord-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.join-btn {
  background: #4db8ff;
  color: #fff;
}

.join-btn:hover {
  background: #1a90d6;
}

.discord-btn {
  background-color: #5865F2;
  color: #fff;
}

.discord-btn:hover {
  background-color: #4752c4;
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
}
