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

html, body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  /* Hybrid Mesh Background */
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(241, 196, 15, 0) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 50px 50px, 50px 50px;
  background-attachment: fixed;
  
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  
  /* Hide scrollbars */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}


a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color: var(--text-primary);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  border: none;
}

.pill-btn:hover {
  transform: translateY(-2px);
  background-color:#24232356;

}

.solid-white {
  background-color: #FFFFFF;
  color: #000000;
}
.solid-white:hover {
  border: 1px solid var(--accent-teal);
  box-shadow: 0 4px 20px var(--accent-teal-glow);
}

.outline-teal {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-teal);
}

.outline-teal:hover {
  background-color: var(--accent-teal-glow);
  box-shadow: 0 4px 20px var(--accent-teal-glow);
}
