:root {
  /* Colors */
  --color-bg-main: #02040a; /* almost black */
  --color-bg-elevated: #050b18; /* dark navy */
  --color-bg-alt: #071329; /* deeper section navy */
  --color-text: #f5f7ff;
  --color-text-muted: #a3b0d4;
  --color-primary: #36d0ff; /* bright cyan highlight */
  --color-primary-soft: #1b89ff;
  --color-accent: #17e3c1; /* turquoise */
  --color-success: #3bcf75;
  --color-warning: #f0b43a;
  --color-danger: #ff4b6b;

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

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cinzel", "Trajan Pro", "Times New Roman", serif; /* for Viking / heavy headings */

  --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.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-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-pill: 999px;
  --radius-shield: 18px; /* slightly angular shield-like */

  /* Shadows - cool, atmospheric */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-strong: 0 18px 60px rgba(0, 0, 0, 0.85);
  --shadow-glow-primary: 0 0 22px rgba(54, 208, 255, 0.5);
  --shadow-glow-accent: 0 0 18px rgba(23, 227, 193, 0.45);

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

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

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

html,
body,
div,
span,
applet,
object,
iframe,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 blockquote,
 pre,
 a,
 abbr,
 acronym,
 address,
 big,
 cite,
 code,
 del,
 dfn,
 em,
 img,
 ins,
 kbd,
 q,
 s,
 samp,
 small,
 strike,
 strong,
 sub,
 sup,
 tt,
 var,
 b,
 u,
 i,
 center,
 dl,
 dt,
 dd,
 ol,
 ul,
 li,
 fieldset,
 form,
 label,
 legend,
 table,
 caption,
 tbody,
 tfoot,
 thead,
 tr,
 th,
 td,
 article,
 aside,
 canvas,
 details,
 embed,
 figure,
 figcaption,
 footer,
 header,
 hgroup,
 menu,
 nav,
 output,
 ruby,
 section,
 summary,
 time,
 mark,
 audio,
 video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: var(--line-height-normal);
}

ol,
ul {
  list-style: none !important;
}

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

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

button {
  border: none;
  padding: 0;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

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

:focus {
  outline: none;
}

/* Respect users that prefer 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;
  }
}

/* ==========================
   Base Styles
   ========================== */

body {
  min-height: 100vh;
  background-color: var(--color-bg-main);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 60vh;
}

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

h1 {
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

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

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

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

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

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

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

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

em {
  font-style: italic;
}

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

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

a:active {
  transform: translateY(1px);
}

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

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

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

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

.section-dark {
  background: radial-gradient(circle at top, rgba(27, 137, 255, 0.16), transparent 60%),
              linear-gradient(145deg, #02040a 0%, #050b18 35%, #071329 100%);
}

.section-alt {
  background: linear-gradient(145deg, #050b18 0%, #071329 40%, #02040a 100%);
}


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

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

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

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

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

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

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

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

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

.mt-4 {
  margin-top: var(--space-4);
}

.mt-8 {
  margin-top: var(--space-8);
}

.py-4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.px-4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

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

/* Buttons - Viking poker glow */

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 10% 0%, rgba(23, 227, 193, 0.18), transparent 55%),
              linear-gradient(135deg, var(--color-primary-soft), var(--color-primary));
  color: #02040a;
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(54, 208, 255, 0.8);
  box-shadow: var(--shadow-soft), var(--shadow-glow-primary);
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
}

.button--secondary,
.btn-secondary {
  background: linear-gradient(135deg, #050b18, #071329);
  color: var(--color-text);
  border-color: rgba(23, 227, 193, 0.7);
  box-shadow: 0 0 0 1px rgba(23, 227, 193, 0.25);
}

.button:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong), var(--shadow-glow-primary);
}

.button--secondary:hover,
.btn-secondary:hover {
  box-shadow: var(--shadow-strong), var(--shadow-glow-accent);
}

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

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

/* Forms & inputs */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(163, 176, 212, 0.3);
  background-color: rgba(5, 11, 24, 0.9);
  color: var(--color-text);
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              background-color var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: rgba(163, 176, 212, 0.7);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(54, 208, 255, 0.25),
              0 0 0 4px rgba(54, 208, 255, 0.18);
}

label {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-row {
  display: grid;
  gap: var(--space-4);
}

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

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

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

/* Card - shield-like event / FAQ blocks */

.card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-shield);
  background: radial-gradient(circle at top, rgba(27, 137, 255, 0.16), transparent 60%),
              linear-gradient(145deg, rgba(5, 11, 24, 0.98), rgba(7, 19, 41, 0.98));
  border: 1px solid rgba(163, 176, 212, 0.25);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(23, 227, 193, 0.15);
  mix-blend-mode: screen;
  pointer-events: none;
}

.card--shielded {
  clip-path: polygon(10% 0, 90% 0, 100% 18%, 100% 82%, 90% 100%, 10% 100%, 0 82%, 0 18%);
}

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

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

.card-subtitle {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

/* Rune-inspired divider */

.divider-rune {
  position: relative;
  width: 100%;
  height: 1px;
  margin: var(--space-6) auto;
  background: linear-gradient(90deg, transparent, rgba(54, 208, 255, 0.6), transparent);
}

.divider-rune::before,
.divider-rune::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid rgba(54, 208, 255, 0.8);
  transform: rotate(45deg);
}

.divider-rune::before {
  left: 10%;
}

.divider-rune::after {
  right: 10%;
}

/* Badge (chip-like) */

.badge-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 208, 255, 0.7);
  background: radial-gradient(circle, rgba(54, 208, 255, 0.22), transparent 70%),
              linear-gradient(135deg, #050b18, #071329);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* Navigation helpers (used across pages) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(2, 4, 10, 0.98), rgba(2, 4, 10, 0.9));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(54, 208, 255, 0.18);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

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

.nav-link {
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
}

.nav-logo span {
  display: block;
  font-size: 0.68em;
  letter-spacing: 0.22em;
  opacity: 0.78;
}

/* Burger toggle for mobile */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(163, 176, 212, 0.4);
  background: radial-gradient(circle, rgba(54, 208, 255, 0.14), transparent 65%);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list-desktop {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    padding: var(--space-8) var(--space-4) var(--space-4);
    background: radial-gradient(circle at top, rgba(27, 137, 255, 0.28), transparent 55%),
                linear-gradient(160deg, #02040a 0%, #050b18 60%, #02040a 100%);
    overflow-y: auto;
  }

  .nav-drawer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
  }
}

/* FAQ base styles */

.faq-item {
  border-bottom: 1px solid rgba(163, 176, 212, 0.25);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.faq-question {
  font-size: var(--font-size-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}

/* Tables: used for simple schedules / rules, no financial tables */

.table-basic {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.table-basic th,
.table-basic td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(163, 176, 212, 0.25);
}

.table-basic th {
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.table-basic tr:nth-child(even) td {
  background-color: rgba(5, 11, 24, 0.65);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(54, 208, 255, 0.18);
  background: linear-gradient(to top, #02040a, #050b18);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

/* Hero / masthead helpers */

.hero {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  background: radial-gradient(circle at top, rgba(54, 208, 255, 0.2), transparent 65%),
              linear-gradient(145deg, #02040a 0%, #050b18 45%, #071329 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(27, 137, 255, 0.12) 0, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(23, 227, 193, 0.14) 0, transparent 50%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0, transparent 40%, rgba(255, 255, 255, 0.03) 60%, transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

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

.hero-kicker {
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.hero-title {
  max-width: 18ch;
}

.hero-subtitle {
  max-width: 46ch;
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

/* Image treatments */

.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(163, 176, 212, 0.25);
  box-shadow: var(--shadow-soft);
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(54, 208, 255, 0.24), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Lists for feature / rules sections (no default bullets) */

.list-check {
  display: grid;
  gap: var(--space-2);
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  border: 1px solid rgba(23, 227, 193, 0.8);
  background: radial-gradient(circle, rgba(23, 227, 193, 0.4), transparent 70%);
  transform: rotate(45deg);
}

/* Chip-like section label */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 176, 212, 0.6));
}

.section-label::before {
  max-width: 48px;
}

.section-label::after {
  max-width: 48px;
}

/* Utility for subtle poker / suit icons alignment */

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
}

.icon-inline svg {
  width: 1em;
  height: 1em;
  display: block;
}

/* End of base.css */
/* Age restriction full-screen modal */

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.age-modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(27, 137, 255, 0.32), transparent 60%),
              rgba(0, 0, 0, 0.88);
}

.age-modal-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-shield);
  background: radial-gradient(circle at top, rgba(54, 208, 255, 0.18), transparent 60%),
              linear-gradient(145deg, rgba(5, 11, 24, 0.98), rgba(7, 19, 41, 0.98));
  border: 1px solid rgba(163, 176, 212, 0.35);
  box-shadow: var(--shadow-strong);
}

.age-modal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.age-modal-header h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: 0;
}

.age-modal-body p {
  margin-bottom: var(--space-3);
}

.age-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (max-width: 600px) {
  .age-modal-content {
    padding: var(--space-4);
  }

  .age-modal-header h1 {
    font-size: var(--font-size-2xl);
  }

  .age-modal-actions {
    flex-direction: column;
  }
}

/* Hidden state (controlled by JS) */

.age-modal.is-hidden {
  display: none;
}

p,
a,
li,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  overflow-wrap: anywhere;
  word-break: normal;
}

.btn,
.btn-outline {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  text-align: center;
  line-height: 1.35;
}