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

:root {
  --accent: #ff9d2f;
  --accent-strong: #ffc15a;
  --accent-soft: rgba(255, 157, 47, 0.12);
  --bg-dark: #0f172a;
  /* Slate 900 */
  --panel: #1e293b;
  /* Slate 800 */
  --panel-soft: #334155;
  /* Slate 700 */
  --stroke: rgba(148, 163, 184, 0.2);
  /* Slate 400 with opacity */
  --text-light: #f1f5f9;
  /* Slate 100 */
  --text-muted: #94a3b8;
  /* Slate 400 */
  --winter-glow: rgba(56, 189, 248, 0.15);
  /* Light Blue Glow */
}

body {
  font-family: "Manrope", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background:
    radial-gradient(110% 90% at 10% 10%, rgba(56, 189, 248, 0.1), transparent 60%),
    /* Winter Blue */
    radial-gradient(80% 80% at 85% 15%, rgba(255, 157, 47, 0.08), transparent 55%),
    /* Subtle Orange Warmth */
    linear-gradient(180deg, #0f172a 0%, #020617 100%);
  /* Slate Dark */
  color: var(--text-light);
}

.site-header,
.dashboard-header {
  background: rgba(11, 12, 17, 0.75);
  border-bottom: 1px solid rgba(56, 189, 248, 0.3) !important;
  backdrop-filter: blur(16px);
}

.bottom-bar,
footer {
  border-top: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.dropdown-menu {
  background: rgba(12, 13, 18, 0.96);
  border: 1px solid rgba(255, 157, 47, 0.22);
}

.nav-item--solid {
  border: 1px solid rgba(255, 157, 47, 0.35);
  background: linear-gradient(135deg, #ffb860, #ff9d2f);
  color: #0b0c11;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb860, #ff9d2f);
  color: #0b0c11;
  border-color: rgba(255, 157, 47, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.btn-blue {
  background: linear-gradient(135deg, #6ea3ff, #3f63e6);
  color: #ffffff;
  border-color: rgba(110, 163, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.btn-ghost {
  border: 1px solid rgba(255, 157, 47, 0.3);
  color: var(--text-light);
  background: rgba(255, 157, 47, 0.08);
}