/* ========================================================================
   Polska Urban Lounge - Base Styles
   Shared base stylesheet for polskaurbanlounge.com
   Theme: Urban, modern, premium, neon, black-lime, poker-themed
   ======================================================================== */

/* ========================================================================
   1. CSS VARIABLES
   ======================================================================== */
:root {
  /* Color Palette -------------------------------------------------------- */
  --color-bg: #050608;                 /* Deep nearly-black background */
  --color-bg-elevated: #101218;        /* Graphite panels / cards */
  --color-bg-soft: #161925;            /* Softer dark sections */

  --color-text: #f5f5f5;               /* Primary text (white-ish) */
  --color-text-muted: #b5b8c7;         /* Muted gray text */
  --color-text-soft: #d4d7e2;          /* Softer light gray */

  --color-primary: #b6ff2b;            /* Neon lime accent */
  --color-primary-soft: rgba(182, 255, 43, 0.12);
  --color-primary-strong: #d4ff63;     /* Brighter hover accent */

  --color-success: #24e38a;            /* For positive badges, messages */
  --color-warning: #f2b824;            /* Caution / info highlights */
  --color-danger: #ff4b6a;             /* Errors, important alerts */

  --color-border-subtle: #232632;      /* Subtle panel borders */
  --color-border-strong: #3b3f52;      /* Stronger dividers */

  /* Neutral Grays -------------------------------------------------------- */
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2933;
  --gray-900: #111827;

  /* Typography ----------------------------------------------------------- */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', sans-serif;
  --font-display: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont,
                  'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo,
               Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

  /* Base font sizing uses clamp for responsiveness */
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */

  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Spacing Scale (0–96px) ---------------------------------------------- */
  --space-0: 0;
  --space-1: 0.125rem;  /* 2px */
  --space-2: 0.25rem;   /* 4px */
  --space-3: 0.375rem;  /* 6px */
  --space-4: 0.5rem;    /* 8px */
  --space-5: 0.625rem;  /* 10px */
  --space-6: 0.75rem;   /* 12px */
  --space-8: 1rem;      /* 16px */
  --space-10: 1.25rem;  /* 20px */
  --space-12: 1.5rem;   /* 24px */
  --space-16: 2rem;     /* 32px */
  --space-20: 2.5rem;   /* 40px */
  --space-24: 3rem;     /* 48px */
  --space-28: 3.5rem;   /* 56px */
  --space-32: 4rem;     /* 64px */
  --space-40: 5rem;     /* 80px */
  --space-48: 6rem;     /* 96px */

  /* Radii --------------------------------------------------------------- */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;      /* Premium, rounded blocks */
  --radius-xl: 24px;
  --radius-pill: 999px;   /* For chips/pills/buttons */

  /* Shadows & Glows ----------------------------------------------------- */
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.55);
  --shadow-strong: 0 18px 45px rgba(0, 0, 0, 0.7);
  --shadow-glow-lime: 0 0 25px rgba(182, 255, 43, 0.4);
  --shadow-glow-soft: 0 0 35px rgba(84, 246, 150, 0.18);

  /* Transitions --------------------------------------------------------- */
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease-out;
  --transition-slow: 320ms ease-out;

  /* Layout -------------------------------------------------------------- */
  --layout-max-width: 1120px;
  --layout-max-width-wide: 1320px;
  --container-padding-x: 1.25rem;
}

/* Reduced motion handling */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================================================
   2. RESET / NORMALIZE
   ======================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

textarea {
  resize: vertical;
}

/* Better line-height in form controls */
input,
button,
textarea,
select {
  line-height: inherit;
}

/* ========================================================================
   3. BASE TYPOGRAPHY & ELEMENT STYLES
   ======================================================================== */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background: radial-gradient(circle at top, #161925 0, #050608 60%, #020308 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background-color: rgba(182, 255, 43, 0.35);
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-16);
}

h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-12);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-8);
}

h4 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-6);
}

h5 {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-4);
}

h6 {
  font-size: var(--font-size-base);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-8);
  color: var(--color-text-muted);
}

strong,
b {
  font-weight: 600;
  color: var(--color-text-soft);
}

small {
  font-size: var(--font-size-sm);
}

a {
  position: relative;
  transition: color var(--transition-base);
}

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

/* Underline style for in-text links (not nav) */
main a:not(.btn):not(.nav-link):not(.chip):not(.card-link) {
  text-decoration: underline;
  text-decoration-color: rgba(182, 255, 43, 0.6);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

main a:not(.btn):not(.nav-link):not(.chip):not(.card-link):hover {
  text-decoration-color: var(--color-primary-strong);
}

code,
pre {
  font-family: var(--font-mono);
  font-size: 0.95em;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border-subtle);
  margin: var(--space-16) 0;
}

/* ========================================================================
   4. ACCESSIBILITY FOCUS STATES
   ======================================================================== */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Focus style exceptions (e.g., buttons, links) */
button:focus-visible,
.btn:focus-visible,
a:focus-visible,
[role='button']:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ========================================================================
   5. UTILITIES
   ======================================================================== */

/* Layout containers ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.container--wide {
  max-width: var(--layout-max-width-wide);
}

.section {
  padding-block: var(--space-32);
}

.section--tight {
  padding-block: var(--space-24);
}

.section--xl {
  padding-block: var(--space-40);
}

/* Flex helpers ---------------------------------------------------------- */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xs {
  gap: var(--space-4);
}

.gap-sm {
  gap: var(--space-6);
}

.gap-md {
  gap: var(--space-10);
}

.gap-lg {
  gap: var(--space-16);
}

.gap-xl {
  gap: var(--space-24);
}

/* Grid helpers ---------------------------------------------------------- */
.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-16);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Text alignment -------------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Visibility helpers ---------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Spacing utilities (basic) -------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-sm { margin-top: var(--space-8) !important; }
.mb-sm { margin-bottom: var(--space-8) !important; }
.mt-md { margin-top: var(--space-16) !important; }
.mb-md { margin-bottom: var(--space-16) !important; }
.mt-lg { margin-top: var(--space-24) !important; }
.mb-lg { margin-bottom: var(--space-24) !important; }

.pt-sm { padding-top: var(--space-8) !important; }
.pb-sm { padding-bottom: var(--space-8) !important; }
.pt-md { padding-top: var(--space-16) !important; }
.pb-md { padding-bottom: var(--space-16) !important; }
.pt-lg { padding-top: var(--space-24) !important; }
.pb-lg { padding-bottom: var(--space-24) !important; }

/* Elevation / surfaces -------------------------------------------------- */
.surface-card {
  background: radial-gradient(circle at top left, rgba(182, 255, 43, 0.12), transparent 55%),
              var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.surface-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(10, 12, 22, 0.8));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

/* Poker neon glow helper */
.glow-lime {
  box-shadow: var(--shadow-glow-lime);
}

/* ========================================================================
   6. COMPONENTS
   ======================================================================== */

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(182, 255, 43, 0.65);
  background: radial-gradient(circle at 10% 0, rgba(182, 255, 43, 0.32), transparent 52%),
              linear-gradient(135deg, #151922, #050608);
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8), var(--shadow-glow-soft);
  transition:
    background var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast),
    border-color var(--transition-base);
}

.btn:hover {
  transform: translateY(-1px);
  background: radial-gradient(circle at 20% 0, rgba(182, 255, 43, 0.45), transparent 55%),
              linear-gradient(135deg, #1b212e, #050608);
  box-shadow: var(--shadow-glow-lime);
  border-color: var(--color-primary-strong);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft);
}

.btn--ghost {
  background: rgba(6, 8, 16, 0.7);
  border-color: rgba(182, 255, 43, 0.35);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(14, 18, 28, 0.95);
  box-shadow: var(--shadow-glow-soft);
}

.btn--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, #141824, #080910);
  color: var(--color-text-soft);
}

.btn--secondary:hover {
  border-color: rgba(182, 255, 43, 0.4);
}

.btn--full {
  width: 100%;
}

.btn[disabled],
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

/* Input fields ---------------------------------------------------------- */
.input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at top left, rgba(182, 255, 43, 0.12), transparent 55%),
              rgba(4, 7, 16, 0.98);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.input::placeholder,
textarea::placeholder {
  color: rgba(181, 184, 199, 0.7);
}

.input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(182, 255, 43, 0.5), 0 0 0 12px rgba(182, 255, 43, 0.05);
}

.input[disabled],
select[disabled],
textarea[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

label {
  display: inline-block;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.form-field {
  margin-bottom: var(--space-12);
}

.form-hint {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.form-error {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

/* Card component -------------------------------------------------------- */
.card {
  position: relative;
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(182, 255, 43, 0.1), transparent 60%),
              linear-gradient(145deg, rgba(12, 15, 26, 0.98), rgba(3, 5, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 120% 0, rgba(182, 255, 43, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card--glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(8, 9, 18, 0.95));
  backdrop-filter: blur(12px);
}

.card-header {
  margin-bottom: var(--space-8);
}

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
}

.card-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.card-body {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.card-actions {
  margin-top: var(--space-12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

/* Link style inside card */
.card-link {
  font-size: var(--font-size-sm);
  color: var(--color-primary-strong);
}

.card-link:hover {
  color: #ffffff;
}

/* Chips / tags (e.g., poker limits, status) ---------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(182, 255, 43, 0.4);
  background: rgba(8, 11, 20, 0.95);
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.chip--soft {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(9, 11, 21, 0.9);
}

.chip--danger {
  border-color: rgba(255, 75, 106, 0.6);
  color: #ffd9e0;
}

/* Navigation (basic structure, further styling per page) --------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(3, 5, 12, 0.95), rgba(3, 5, 12, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  padding-block: 0.65rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--font-size-lg);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, var(--color-primary), #1e222f);
  box-shadow: 0 0 18px rgba(182, 255, 43, 0.55);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.nav-link {
  position: relative;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  padding-block: 0.25rem;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(182, 255, 43, 0.1), rgba(182, 255, 43, 1));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-primary-strong);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: #ffffff;
}

.nav-cta {
  margin-left: var(--space-10);
}

@media (max-width: 900px) {
  .nav-links {
    display: none; /* Controlled by JS for mobile menu */
  }
}

/* Hero / page header utilities ----------------------------------------- */
.page-hero {
  padding-block: var(--space-32);
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.page-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary), #1e222f);
  box-shadow: 0 0 10px rgba(182, 255, 43, 0.8);
}

.page-title {
  max-width: 20ch;
}

.page-subtitle {
  max-width: 42ch;
  color: var(--color-text-muted);
}

/* FAQ summary style (for FAQ page) ------------------------------------- */
details {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: rgba(5, 7, 15, 0.96);
  padding: var(--space-8) var(--space-10);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--color-text-soft);
}

summary::-webkit-details-marker {
  display: none;
}

.details-body {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* Badge for status labels (e.g., "Wieczory pokerowe") ------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 0 0, rgba(182, 255, 43, 0.3), transparent 60%),
              rgba(11, 14, 26, 0.96);
  border: 1px solid rgba(182, 255, 43, 0.45);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-soft);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(182, 255, 43, 0.9);
}

/* Tables (for poker limits / godziny) ---------------------------------- */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.table th,
.table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.table thead th {
  font-weight: 500;
  color: var(--color-text-soft);
  border-bottom: 1px solid var(--color-border-strong);
}

.table tbody tr {
  border-bottom: 1px solid rgba(35, 38, 50, 0.9);
}

.table tbody tr:nth-child(even) {
  background: rgba(10, 13, 24, 0.85);
}

.table tbody tr:last-child {
  border-bottom: none;
}

.table tbody td {
  color: var(--color-text-muted);
}

/* Alerts / info banners ------------------------------------------------- */
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.alert--info {
  background: rgba(22, 26, 40, 0.96);
  border: 1px solid rgba(182, 255, 43, 0.3);
  color: var(--color-text-soft);
}

.alert--danger {
  background: rgba(45, 3, 16, 0.9);
  border: 1px solid rgba(255, 75, 106, 0.7);
  color: #ffd9e0;
}

.alert-icon {
  margin-top: 0.15rem;
}

/* Footer ---------------------------------------------------------------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, rgba(182, 255, 43, 0.04), transparent 55%),
              #03040a;
  padding-block: var(--space-20);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer a:hover {
  color: var(--color-primary-strong);
}

/* ========================================================================
   7. RESPONSIVE TYPOGRAPHY / LAYOUT TWEAKS
   ======================================================================== */
@media (max-width: 768px) {
  .page-hero {
    padding-block: var(--space-24);
  }

  h1 {
    margin-bottom: var(--space-12);
  }

  .navbar-inner {
    padding-block: 0.55rem;
  }
}
