:root {
  --primary-color: #22c55e;
  --primary-dark: #16a34a;
  --secondary-color: #0f172a;
  --dark-bg: #050816;
  --card-bg: rgba(15, 23, 42, 0.75);
  --white: #ffffff;
  --text-light: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 8px 20px rgba(34, 197, 94, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --container-width: 1320px;
  --transition: all 0.3s ease;
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent 30%),
    var(--dark-bg);
  color: var(--white);
  min-height: 100vh;
 overflow-x: hidden;

}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  color: #04110a;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4ade80, var(--primary-color));
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
}
.section-title {
  font-size: clamp(1rem, 3vw, 2rem); /* reduced */
}

@media (max-width: 1200px) {
  .topbar-left {
    gap: 18px;
  }

  .topbar-item,
  .topbar-follow {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .topbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .topbar-left {
    width: 100%;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}