@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap');

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

:root {
  --topbar-height: 70px;
  --brand-color: #08BBE7;
  --brand-dark: #058dae;
  --discord-color: #5865F2;
  --discord-color-dark: #4856f1;
  --text-main: #121212;
  --text-muted: #666666;
}

body {
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: var(--text-main);
  line-height: 1.5;
}

/* Topbar Header */
.topbar {
  height: var(--topbar-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.logo-name {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.logo-name.header {
  font-size: 1.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  background-color: var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box.header {
  border-radius: 12px;
  height: 44px;
  padding: 5px 0 4px 0;
  width: 44px;
}

.logo-box .logo {
  height: 100%;
}

.topbar-nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #555555;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.topbar-nav a:hover {
  color: var(--brand-color);
}

.nav-link-icon {
  display: none;
}

.content {
  margin-top: var(--topbar-height);
}

.footer {
  padding: 2.5rem;
  text-align: center;
  background-color: #0f172a;
  font-size: 0.95rem;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
}

html {
  scroll-behavior: smooth;
}

/* Shared UI components */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 50px;
  background: rgba(8, 187, 231, 0.12);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 1rem 2rem;
  border-radius: 500px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.3, 0, 0, 1);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --topbar-height: 60px;
  }

  .topbar {
    padding: 0 1rem;
  }

  .logo-container {
    gap: 0.5rem;
  }

  .logo-box.header {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .logo-name.header {
    font-size: 1.25rem;
  }

  .topbar-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
  }

  .topbar-how-it-works {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(8, 187, 231, 0.25);
    border-radius: 50%;
    background: #f0fbfe;
    color: var(--brand-dark) !important;
  }

  .nav-link-label {
    display: none;
  }

  .nav-link-icon {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap');
