/* =====================
   GLOBAL RESET RULES
   ===================== */

* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #212529;
  line-height: 1.6;
}

/* Never set fixed widths */
img {
  max-width: 100%;
  height: auto;
}

/* Section spacing consistency */
section {
  position: relative;
}

/* Buttons – base style */
.btn-primary {
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 500;
}

/* Cards – universal polish */
.card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Utility */
.text-muted {
  color: #6c757d !important;
}


/* =====================
   TYPOGRAPHY SYSTEM
   ===================== */

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  letter-spacing: -0.1px;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.4px;
}

/* Section titles */
section h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

/* Paragraphs */
p {
  color: #4b5563;
}

/* Buttons */
.btn {
  font-weight: 600;
  letter-spacing: -0.1px;
}


.hastag-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}