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

body {
  background: #060606;
  color: #f5f5f5;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  padding: 32px 8%;
  background:
    radial-gradient(circle at top, rgba(255,0,51,.22), transparent 40%),
    linear-gradient(180deg, #0a0a0a, #050505);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
}

.hero-content {
  max-width: 900px;
  margin-top: 120px;
}

.tag {
  display: inline-block;
  background: rgba(255,0,51,.14);
  border: 1px solid rgba(255,0,51,.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 28px;
}

h1 span {
  color: #ff355e;
}

.hero-text {
  max-width: 700px;
  color: #b8b8b8;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-btn,
.secondary-btn {
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.primary-btn {
  background: #ff234f;
  color: white;
}

.secondary-btn {
  border: 1px solid #444;
  color: #ddd;
}

.section {
  padding: 100px 8%;
}

.section-inner {
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
}

.grid,
.community-boxes,
.social-grid {
  display: grid;
  gap: 24px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.community-boxes {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.social-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.community-card,
.social-card {
  background: #111;
  border: 1px solid #1f1f1f;
  padding: 28px;
  border-radius: 20px;
}

.card h3,
.community-card h3,
.social-card h3 {
  margin-bottom: 14px;
}

.card p,
.community-card p,
.social-card p,
.community-text {
  color: #b5b5b5;
}

.dark-section {
  background: #090909;
}

.social-card {
  text-decoration: none;
  color: white;
  transition: 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: #ff355e;
}

footer {
  padding: 40px;
  text-align: center;
  color: #7f7f7f;
  border-top: 1px solid #161616;
}



.callout {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(255,35,79,.14), rgba(255,35,79,.04));
  border: 1px solid rgba(255,53,94,.35);
  padding: 30px;
  border-radius: 22px;
}

.callout h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.callout p {
  color: #c7c7c7;
  margin-bottom: 24px;
  max-width: 850px;
}

.callout .primary-btn {
  display: inline-block;
}

@media(max-width: 768px) {

  nav {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    margin-top: 80px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    text-align: center;
  }
}
