/* ========================================================================== 
   Variables
   ========================================================================== */

:root {
  /* Colors - light, pastel, casino-inspired but non-gambling */
  --color-bg: #fdfdfd;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f4f1; /* light beige */

  --color-text: #1f2933; /* deep neutral */
  --color-text-muted: #6b7280;
  --color-border-subtle: #e5e7eb;

  /* Pastel brand accents */
  --color-primary: #6fcfba; /* mint */
  --color-primary-soft: #e5f7f2;
  --color-accent-rose: #f7c6d9; /* powder pink */
  --color-accent-blue: #c6ddf8; /* light blue */
  --color-accent-lavender: #d8ccf2;
  --color-accent-beige: #f4e7d8;

  /* Status colors */
  --color-success: #21a179;
  --color-success-soft: #e3f7f0;
  --color-warning: #f2b263;
  --color-warning-soft: #fff3e2;
  --color-danger: #e15b64;
  --color-danger-soft: #ffe5e8;

  /* Neutral grayscale */
  --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: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --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.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.6;

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

  /* Radius */
  --radius-sm: 0.375rem; /* 6px */
  --radius-md: 0.75rem;  /* 12px */
  --radius-lg: 1.5rem;   /* 24px, for rounded sections */
  --radius-pill: 999px;

  /* Shadows - soft, elegant */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.11);

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

  /* Layout */
  --container-width: 1120px;
  --container-padding-x: 1.25rem; /* 20px, mobile-first */

  /* Header / Nav specific */
  --header-height: 4.5rem;
  --nav-link-color: var(--color-text);
  --nav-link-hover: var(--color-primary);

  /* Focus outline */
  --focus-ring-color: rgba(111, 207, 186, 0.7);
  --focus-ring-width: 3px;
  --focus-ring-offset: 2px;
}

/* Responsive type scaling for hero headings */
@media (min-width: 768px) {
  :root {
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.25rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 3.5rem;
  }
}


/* ========================================================================== 
   Reset / Normalize
   ========================================================================== */

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

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

body {
  margin: 0;
}

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

ul[role="list"],
ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

img {
  height: auto;
}

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

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

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

body,
html {
  min-height: 100%;
}

/* Respect reduced motion preference */
@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;
  }
}


/* ========================================================================== 
   Base 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 left, #f7f9ff 0, #fdfdfd 40%, #f7f4f1 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  line-height: var(--line-height-tight);
}

h1 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

h2 {
  font-size: var(--font-size-3xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

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

h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

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

p:last-child {
  margin-bottom: 0;
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

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

a:focus-visible {
  outline: none;
}

ul,
ol {
  padding-left: 1.25rem;
  margin: 0 0 var(--space-4);
}

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

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

@media (min-width: 768px) {
  section {
    padding-block: var(--space-16);
  }
}


/* ========================================================================== 
   Accessibility & Focus Styles
   ========================================================================== */

:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

[tabindex="-1"]:focus {
  outline: none !important;
}

.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;
}


/* ========================================================================== 
   Layout Utilities
   ========================================================================== */

.container {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.section-rounded {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.8), rgba(229, 247, 242, 0.9));
  box-shadow: var(--shadow-sm);
  padding: var(--space-8) var(--space-5);
}

@media (min-width: 768px) {
  .section-rounded {
    padding: var(--space-10) var(--space-8);
  }
}

/* Flex utilities */

.flex {
  display: flex;
}

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

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

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

.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-between {
  justify-content: space-between;
}

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

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

.gap-2 {
  gap: var(--space-2);
}

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

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

/* Grid utilities */

.grid {
  display: grid;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.grid-3-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .grid-3-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Spacing utilities */

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.py-4 { padding-block: var(--space-4); }
.py-6 { padding-block: var(--space-6); }
.py-8 { padding-block: var(--space-8); }
.px-4 { padding-inline: var(--space-4); }
.px-6 { padding-inline: var(--space-6); }

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

/* Max-width utility for long-form content (e.g. O Nas, Regulaminy) */

/* ========================================================================== 
   Components
   ========================================================================== */

/* Header / Navigation base styles (logo centered above menu) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(253, 253, 253, 0.92), rgba(253, 253, 253, 0.86));
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.site-header-inner {
  min-height: var(--header-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-3);
}

.site-logo {
  display: block;
  margin-bottom: var(--space-3);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.site-nav a {
  position: relative;
  font-size: var(--font-size-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  color: var(--nav-link-color);
  transition: background-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0.7rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent-rose), var(--color-primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.site-nav a:hover {
  background: rgba(230, 244, 242, 0.9);
  box-shadow: var(--shadow-xs);
  color: var(--nav-link-hover);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(207, 250, 254, 0.9), rgba(229, 247, 242, 0.9));
  color: var(--nav-link-hover);
  box-shadow: var(--shadow-xs);
}

/* Hero / Fullscreen slider container helper */

.hero-fullscreen {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-gradient {
  background: radial-gradient(circle at top, rgba(230, 244, 242, 0.9) 0, rgba(250, 249, 246, 0.9) 35%, rgba(228, 241, 255, 0.9) 75%);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), border-color var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #8ed9c9);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
  border-color: rgba(111, 207, 186, 0.6);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background: rgba(230, 244, 242, 0.8);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 999px;
}

/* Sticky CTA button (e.g. Poproś o ofertę) */

.sticky-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .sticky-cta {
    right: 2rem;
    bottom: 2rem;
  }
}

/* Form controls */

.input,
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

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

.input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary-soft), 0 10px 25px rgba(111, 207, 186, 0.2);
  background-color: #ffffff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

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

.form-help {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

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

/* Cards - used for colored service cards, FAQ items, testimonials, etc. */

.card {
  position: relative;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.card-soft {
  background: linear-gradient(135deg, rgba(246, 244, 252, 0.95), rgba(229, 247, 242, 0.95));
}

.card-tinted-mint {
  background: radial-gradient(circle at top left, rgba(229, 247, 242, 1), rgba(255, 255, 255, 0.95));
}

.card-tinted-rose {
  background: radial-gradient(circle at top left, rgba(247, 198, 217, 0.18), rgba(255, 255, 255, 0.98));
}

.card-tinted-blue {
  background: radial-gradient(circle at top left, rgba(198, 221, 248, 0.19), rgba(255, 255, 255, 0.98));
}

.card-tinted-lavender {
  background: radial-gradient(circle at top left, rgba(216, 204, 242, 0.22), rgba(255, 255, 255, 0.98));
}

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

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

.card-meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

/* Pill badges for categories like Eventy Casino / Wieczory Pokerowe */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-mint {
  background: rgba(229, 247, 242, 0.9);
  color: #0f766e;
}

.badge-rose {
  background: rgba(247, 198, 217, 0.4);
  color: #9b1c50;
}

.badge-blue {
  background: rgba(198, 221, 248, 0.5);
  color: #1d4f91;
}

/* Timeline (for "Jak Organizujemy Wydarzenia") */

.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0.5rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--color-accent-blue), var(--color-primary));
}

.timeline-step {
  position: relative;
  padding-left: 1.25rem;
  padding-bottom: var(--space-6);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: -0.1rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(111, 207, 186, 0.6);
  background: radial-gradient(circle at 30% 30%, #ffffff 0, var(--color-primary) 65%, #2c7a7b 100%);
}

/* Counters (liczniki zrealizowanych eventów) */

.counter {
  text-align: center;
}

.counter-value {
  font-family: var(--font-display);
  font-size: var(--font-size-4xl);
  letter-spacing: -0.05em;
}

.counter-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FAQ (for Sekcja FAQ) */

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: var(--space-4) var(--space-5);
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  margin-top: 0.5rem;
}

/* Carousel base (opinie klientów, hero slider, galeria) */

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
}

.carousel-slide {
  flex: 0 0 100%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-4);
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.4);
  padding: 0;
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  width: 1.4rem;
  background: linear-gradient(90deg, var(--color-accent-rose), var(--color-primary));
}

/* Masonry gallery helper (Galeria Masonry) */

.masonry {
  column-count: 1;
  column-gap: var(--space-4);
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry {
    column-count: 3;
  }
}

/* Footer */

.site-footer {
  margin-top: var(--space-10);
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(180deg, rgba(245, 242, 255, 0.9), rgba(253, 253, 253, 0.98));
}

.site-footer-inner {
  padding-block: var(--space-8);
}

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

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.footer-heading {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.footer-link {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

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

.footer-disclaimer {
  margin-top: var(--space-6);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.footer-legal {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* Legal text blocks (Polityka Prywatności, Cookies, Regulamin) */

.legal-text {
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.legal-text h2 {
  font-size: var(--font-size-xl);
}

.legal-text h3 {
  font-size: var(--font-size-lg);
}

/* Tagline / SEO keyword highlight (subtle, not spammy) */

.keyword-highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(229, 247, 242, 0.75));
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
}


/* ========================================================================== 
   Helper classes for color accents (for headings, sections)
   ========================================================================== */

.heading-eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.section-title-group {
  }

.section-title-group p {
  margin-top: 0.5rem;
}

.text-mint { color: #0f766e; }
.text-rose { color: #9b1c50; }
.text-blue { color: #1d4f91; }
.text-lavender { color: #5b3ea4; }

.bg-mint-soft { background-color: var(--color-primary-soft); }
.bg-rose-soft { background-color: rgba(247, 198, 217, 0.2); }
.bg-blue-soft { background-color: rgba(198, 221, 248, 0.22); }
.bg-lavender-soft { background-color: rgba(216, 204, 242, 0.22); }

.rounded-section {
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-5);
  background: linear-gradient(135deg, rgba(244, 231, 216, 0.8), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .rounded-section {
    padding: var(--space-10) var(--space-8);
  }
}

/* End of base.css */
