/* ===============================
   Global Reset & Variables
================================ */
:root {
  --bg-color: #050505;
  --card-bg: #0b0b0f;
  --card-border: rgba(255, 255, 255, 0.08);

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;

  --accent: #e5e7eb;
  --accent-soft: rgba(255, 255, 255, 0.12);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===============================
   Background Glow (Subtle)
================================ */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  filter: blur(120px);
  opacity: 0.15;
}

.bg-glow::before {
  top: -20%;
  left: -20%;
  background: radial-gradient(circle, #ffffff 0%, transparent 60%);
}

.bg-glow::after {
  bottom: -20%;
  right: -20%;
  background: radial-gradient(circle, #9ca3af 0%, transparent 60%);
}

/* ===============================
   Typography
================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.gradient-text {
  color: var(--accent);
}

/* ===============================
   Layout
================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===============================
   Navbar
================================ */
.navbar {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  border-radius: 8px;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text-primary);
}

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ===============================
   Hero
================================ */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  max-width: 600px;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* ===============================
   Server Status Card
================================ */
.server-status-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px 28px;
  max-width: 520px;
  width: 100%;
  transition: transform 0.2s ease;
}

.server-status-card:hover {
  transform: translateY(-3px);
}

.server-status-card img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.server-info {
  flex: 1;
}

.server-info h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.server-counts {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  background: #22c55e;
}

.status-dot.offline {
  background: #6b7280;
}

.btn-join {
  background: #ffffff;
  color: #000000;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* ===============================
   Cards
================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   Verification
================================ */
.verification-section {
  padding: 80px 0;
  text-align: center;
}

.copy-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px 24px;
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
}

.copy-text {
  font-family: monospace;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
}

/* ===============================
   Founders (FIXED)
================================ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.founder-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: transform 0.2s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
}

.founder-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avatar-wrapper {
  width: 80px;
  height: 80px;
}

.founder-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--accent-soft);
}

.founder-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.founder-id {
  font-size: 0.8rem;
  font-family: monospace;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 4px 8px;
  border-radius: 6px;
  width: fit-content;
}

/* ===============================
   Section Title
================================ */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===============================
   Mobile
================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }
}
