/* =========================================================
   Tiszanova Base Styles (base.css)
   Anime-inspired, pastel, premium, playful elegance
   ========================================================= */

/* =========================================================
   1. CSS VARIABLES
   ========================================================= */
:root {
  /* Color Palette: Pastel anime-inspired */
  --color-bg: #fdfbff; /* soft white with hint of lavender */
  --color-bg-elevated: #ffffff;
  --color-bg-soft: #f7f3ff;

  --color-text: #2c2340; /* deep violet */
  --color-text-soft: #5f4b88;
  --color-text-muted: #8a7bb0;

  --color-primary: #ff80c8; /* pastel pink */
  --color-primary-soft: #ffe1f3;
  --color-primary-strong: #ff4fa7;

  --color-accent-blue: #7ac7ff; /* sky blue */
  --color-accent-lilac: #c9a8ff; /* lavender */
  --color-accent-violet: #9b6bff;

  --color-success: #4ccfa4;
  --color-success-soft: #e1f8f0;
  --color-warning: #ffc857;
  --color-warning-soft: #fff4d9;
  --color-danger: #ff6b88;
  --color-danger-soft: #ffe4ea;

  /* Neutral grays (cool / subtle violet tint) */
  --gray-50: #faf7ff;
  --gray-100: #f0ebff;
  --gray-200: #ded4ff;
  --gray-300: #c6b8e7;
  --gray-400: #aa9acb;
  --gray-500: #8e7faf;
  --gray-600: #736492;
  --gray-700: #574a73;
  --gray-800: #3c3253;
  --gray-900: #241c33;

  /* Semantic backgrounds & borders */
  --border-subtle: rgba(152, 128, 255, 0.16);
  --border-strong: rgba(72, 35, 150, 0.24);

  /* Gradients */
  --gradient-hero: radial-gradient(circle at 10% 0%, #ffe0f2 0, transparent 55%),
                   radial-gradient(circle at 90% 20%, #e2f3ff 0, transparent 55%),
                   radial-gradient(circle at 0% 80%, #f4e8ff 0, transparent 55%),
                   linear-gradient(135deg, #fff9ff 0%, #f6f4ff 50%, #f9fdff 100%);

  --gradient-primary: linear-gradient(135deg, #ff80c8 0%, #c9a8ff 45%, #7ac7ff 100%);
  --gradient-card-soft: linear-gradient(145deg, rgba(255, 232, 250, 0.9), rgba(232, 241, 255, 0.9));
  --gradient-accent-soft: radial-gradient(circle at 20% 0%, rgba(255, 191, 242, 0.7), transparent 60%),
                           radial-gradient(circle at 80% 100%, rgba(170, 210, 255, 0.7), transparent 60%);

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

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px, slightly elevated */
  --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.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* 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-7: 0.875rem; /* 14px */
  --space-8: 1rem;     /* 16px */
  --space-10: 1.25rem; /* 20px */
  --space-12: 1.5rem;  /* 24px */
  --space-14: 1.75rem; /* 28px */
  --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-none: 0;
  --radius-xs: 0.375rem;  /* 6px */
  --radius-sm: 0.625rem;  /* 10px */
  --radius-md: 0.875rem;  /* 14px, soft anime cards */
  --radius-lg: 1.25rem;   /* 20px */
  --radius-xl: 1.75rem;   /* 28px */
  --radius-pill: 999px;

  /* Shadows - dreamy & soft */
  --shadow-xs: 0 4px 10px rgba(40, 22, 80, 0.06);
  --shadow-sm: 0 10px 30px rgba(40, 22, 80, 0.08);
  --shadow-md: 0 18px 45px rgba(40, 22, 80, 0.12);
  --shadow-lg: 0 24px 80px rgba(40, 22, 80, 0.18);
  --shadow-glow-primary: 0 0 35px rgba(255, 128, 200, 0.45);

  /* Transitions & motion */
  --transition-fast: 120ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 320ms ease-out;

  --animation-float: floatUp 7s ease-in-out infinite;

  /* Layout */
  --container-max-width: 1120px;
  --container-padding-x: 1.25rem;

  /* Z-index tokens */
  --z-nav: 40;
  --z-overlay: 50;
  --z-modal: 60;
  --z-toast: 70;
}

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

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

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

body {
  margin: 0;
}

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

ul, ol {
  margin: 0;
  padding: 0;
}

/* As requested: remove list bullets globally */
ul {
  list-style: none !important;
}

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

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

button {
  border: none;
  padding: 0;
  background: none;
}

textarea {
  resize: vertical;
}

/* Remove default link underlines; re-add via base styles */
a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================================
   3. BASE STYLES
   ========================================================= */
body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--gradient-hero);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(255, 128, 200, 0.2);
  color: var(--color-text);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(var(--font-size-3xl), 3vw + 1.5rem, var(--font-size-5xl));
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
}

h2 {
  font-size: clamp(var(--font-size-2xl), 2.4vw + 1.2rem, var(--font-size-4xl));
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-5);
}

h3 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-4);
}

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

h5 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

h6 {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-soft);
}

strong, b {
  font-weight: 600;
}

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

/* Links - pastel hover glow */
a {
  position: relative;
  color: var(--color-accent-violet);
  transition: color var(--transition-normal),
              text-shadow var(--transition-normal),
              opacity var(--transition-fast);
}

a:hover {
  color: var(--color-primary-strong);
  text-shadow: 0 0 16px rgba(255, 128, 200, 0.6);
}

a:active {
  opacity: 0.8;
}

/* Code */
code, kbd, pre, samp {
  font-family: var(--font-mono);
  font-size: 0.95em;
}

/* Horizontal rule */
hr {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: var(--space-8) 0;
}

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

:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(255, 128, 200, 0.75),
              0 0 0 6px rgba(122, 199, 255, 0.45);
  border-radius: 999px;
}

/* Make sure focus ring works nicely on non-round elements */
.button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-radius: inherit;
}

/* Screen reader only */
.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;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   5. LAYOUT UTILITIES
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

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

.section--compact {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

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

.inline-flex {
  display: inline-flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.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-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--space-8);
}

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

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

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

/* Spacing utilities (common ones only to stay lightweight) */
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-8 { margin-top: var(--space-8) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

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

/* Max-width helpers */
/* =========================================================
   6. NAVIGATION HELPERS
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  backdrop-filter: blur(14px);
  background: rgba(253, 251, 255, 0.86);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.nav-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 40% 60% 60% 40%;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-sm);
}

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

.nav a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  color: var(--color-text-soft);
  transition: background var(--transition-fast),
              color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
  box-shadow: 0 8px 25px rgba(40, 22, 80, 0.08);
}

.nav a.is-active {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow-primary);
}

/* Mobile nav toggle - requested: flex-direction: column */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform var(--transition-normal),
              opacity var(--transition-fast);
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    padding: var(--space-6) var(--space-4) var(--space-6);
    background: rgba(253, 251, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    transform: translateY(-24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal),
                transform var(--transition-normal);
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* =========================================================
   7. BUTTONS
   ========================================================= */
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              filter var(--transition-fast),
              background var(--transition-normal),
              opacity var(--transition-fast);
}

.button:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.06);
}

.button:active,
.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
  opacity: 0.92;
}

.button--ghost,
.btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  border-color: rgba(201, 168, 255, 0.7);
  box-shadow: var(--shadow-xs);
}

.button--ghost:hover,
.btn--ghost:hover {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.button--outline,
.btn--outline {
  background: transparent;
  color: var(--color-accent-violet);
  border-color: rgba(122, 199, 255, 0.9);
  box-shadow: none;
}

.button--outline:hover,
.btn--outline:hover {
  background: rgba(226, 243, 255, 0.8);
  box-shadow: var(--shadow-xs);
}

.button--subtle,
.btn--subtle {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-soft);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(163, 146, 210, 0.08);
}

.button--subtle:hover,
.btn--subtle:hover {
  background: #ffffff;
}

.button--success,
.btn--success {
  background: linear-gradient(135deg, #4ccfa4, #7ac7ff);
}

.button--danger,
.btn--danger {
  background: linear-gradient(135deg, #ff6b88, #ff80c8);
}

.button[disabled],
.btn[disabled],
.button.is-disabled,
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
  transform: none;
}

/* Small / large variants */
.button--sm,
.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: var(--font-size-xs);
}

.button--lg,
.btn--lg {
  padding: 0.9rem 1.9rem;
  font-size: var(--font-size-base);
}

/* =========================================================
   8. FORM ELEMENTS & INPUTS
   ========================================================= */
label {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-soft);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast),
              transform var(--transition-fast);
  box-shadow: 0 8px 22px rgba(40, 22, 80, 0.04);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 128, 200, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 128, 200, 0.65),
              0 12px 28px rgba(40, 22, 80, 0.14);
  background: #ffffff;
  transform: translateY(-1px);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: rgba(255, 107, 136, 0.8);
  background: var(--color-danger-soft);
}

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

.helper-text {
  margin-top: var(--space-1);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* Checkbox & radio minimal reset */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #ff80c8;
}

/* Contact form layout hint */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

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

/* =========================================================
   9. CARDS & SURFACES
   ========================================================= */
.card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--gradient-card-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-accent-soft);
  opacity: 0.55;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card--soft {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.card--outlined {
  background: rgba(255, 255, 255, 0.7);
  border-style: dashed;
  border-color: rgba(201, 168, 255, 0.9);
}

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

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

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

.card-footer {
  margin-top: var(--space-5);
}

/* Pastel badge for labels, poker evenings etc. */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(122, 199, 255, 0.15);
  color: var(--color-accent-violet);
}

.badge--soft-pink {
  background: rgba(255, 128, 200, 0.14);
  color: var(--color-primary-strong);
}

.badge--soft-lilac {
  background: rgba(201, 168, 255, 0.16);
  color: var(--color-accent-lilac);
}

/* =========================================================
   10. HERO / DECORATIVE UTILITIES (for homepage)
   ========================================================= */
.hero {
  position: relative;
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 128, 200, 0.45);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(163, 146, 210, 0.2);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.hero-title {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  max-width: 42rem;
  margin: var(--space-4) auto 0;
  font-size: var(--font-size-lg);
}

.hero-actions {
  margin-top: var(--space-8);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-illustration-shell {
  position: relative;
  margin-top: var(--space-16);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-plate {
  position: relative;
  border-radius: 46% 54% 44% 56% / 60% 50% 50% 40%;
  background: radial-gradient(circle at 20% 0%, #ffe2f6 0, transparent 60%),
              radial-gradient(circle at 90% 90%, #d3e8ff 0, transparent 60%),
              linear-gradient(135deg, #ffffff 0%, #f3ebff 50%, #ffffff 100%);
  box-shadow: 0 26px 80px rgba(40, 22, 80, 0.25);
  padding: var(--space-16) var(--space-10);
  overflow: hidden;
}

.hero-floating {
  position: absolute;
  border-radius: 40% 60% 50% 50%;
  background: linear-gradient(135deg, rgba(255, 128, 200, 0.7), rgba(122, 199, 255, 0.7));
  filter: blur(12px);
  opacity: 0.5;
  mix-blend-mode: soft-light;
  animation: var(--animation-float);
}

.hero-floating--1 {
  width: 120px;
  height: 120px;
  top: -40px;
  left: -10px;
}

.hero-floating--2 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  right: -30px;
  animation-delay: -2s;
}

/* Small sparkles / anime accents */
.sparkle-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0, rgba(255, 251, 255, 0.6) 40%, transparent 70%);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.9);
}

/* Float animation */
@keyframes floatUp {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

/* =========================================================
   11. POKER & EVENT TAGS (OFFLINE SOCIAL ONLY)
   ========================================================= */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  background: rgba(60, 50, 83, 0.04);
  color: var(--color-text-muted);
}

.tag-pill--poker {
  background: rgba(122, 199, 255, 0.18);
  color: var(--color-accent-violet);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

/* =========================================================
   12. FOOTER
   ========================================================= */
.footer {
  padding: var(--space-16) 0 var(--space-10);
  background: rgba(252, 248, 255, 0.9);
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  justify-content: space-between;
  align-items: flex-start;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-4);
}

.footer a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

.footer-bottom {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
}

/* =========================================================
   13. MISC UTILITIES
   ========================================================= */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.chip {
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(222, 212, 255, 0.9);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.text-pill-label {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(254, 244, 255, 0.8);
  font-size: var(--font-size-xs);
  color: var(--color-accent-violet);
}

/* Simple fade-in utility for scroll animations (JS can toggle) */
.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--transition-slow),
              transform var(--transition-slow);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   END OF BASE.CSS
   ========================================================= */
