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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #05070f, #0a0f1e, #111827);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.content {
  width: 100%;
  max-width: 520px;
}

.logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  border: 2px solid rgba(255, 215, 0, 0.45);
  box-shadow: 0 0 30px rgba(255, 170, 0, 0.25);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 180, 0, 0.12);
  border: 1px solid rgba(255, 180, 0, 0.35);
  color: #ffd966;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.badge-icon {
  font-size: 11px;
  color: #ffd966;
  line-height: 1;
  transform: translateY(-0.5px);
}

h1 {
  font-size: 38px;
  font-weight: 800;
  color: #ffe8a3;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.subline {
  color: #d7dced;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 600;
}

.desc {
  color: #d7dced;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 500;
}

.join-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: #ff9900;
  color: #08101d;
  font-size: 20px;
  font-weight: 700;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
}

.btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0a1a32;
  color: #ffb100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.stats {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  gap: 10px;
}

.stat {
  flex: 1;
}

.stat h3 {
  color: #ffd966;
  font-size: 24px;
  margin-bottom: 5px;
}

.stat p {
  font-size: 11px;
  color: #9ea8c7;
  letter-spacing: 1px;
}

footer {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  padding-bottom: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
}

@media (max-width: 600px) {
  .logo {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 30px;
  }

  .subline,
  .desc {
    font-size: 15px;
  }

  .join-btn {
    font-size: 18px;
    padding: 15px;
  }

  .stat h3 {
    font-size: 20px;
  }
}
