/* ═══════════════════════════════════════════════════════
   Opera GX one-click landing — base styles
   Design tokens extracted from opera.com/gx/gx-browser
   production CSS (gxCommonStyles / gxMain / gxBrowsers)
═══════════════════════════════════════════════════════ */

/* ── Fonts (self-hosted, zero external requests) ── */
@font-face {
  font-family: 'underwave';
  src: url('assets/underwave.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/inter-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Live-site GX tokens */
  --gx-red: #fa1e4e;
  --gx-red-hover: #fb4b71;
  --gx-red-light: #fb637e;
  --gx-bg-deep: #0d0c15;
  --gx-bg: #121019;
  --gx-surface: #161423;
  --gx-surface-2: #1b1825;
  --gx-surface-3: #242031;
  --gx-border: #2e2a3e;
  --gx-border-2: #484063;
  --gx-text: #f4f3f7;
  --gx-text-soft: #e2e0eb;
  --gx-text-muted: #bdb8d1;
  --gx-purple: #5021ff;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'underwave', 'Inter', system-ui, sans-serif;
}

html {
  height: 100%;
  overflow: hidden; /* on root: controls viewport scroll, does NOT clip filter effects */
  font-family: var(--font-body);
}

body {
  height: 100vh;
  overflow: visible;
  background: var(--gx-bg-deep);
  color: var(--gx-text-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ogx-window {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gx-bg);
  overflow: visible;
  position: relative;
}

/* Scanlines + ambient GX glow */
.ogx-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(80, 33, 255, 0.016) 2px, rgba(80, 33, 255, 0.016) 4px),
    radial-gradient(ellipse 55% 50% at 25% 35%, rgba(250, 30, 78, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 75% 65%, rgba(80, 33, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(20px, 3vw, 48px) clamp(24px, 4.5vw, 72px);
  gap: clamp(24px, 4vw, 64px);
  position: relative;
  z-index: 1;
  min-height: 0;
  overflow: visible;
}

/* ── Copy panel ── */
.copy-panel {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
  min-width: 0;
}

.logo {
  width: clamp(130px, 14vw, 180px);
  height: auto;
  aspect-ratio: 243 / 63;
  display: block;
  color: var(--gx-red);
  flex-shrink: 0;
}

/* Trust chip */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gx-red);
  flex-shrink: 0;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gx-red);
  box-shadow: 0 0 0 3px rgba(250, 30, 78, 0.2);
  animation: badge-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(250, 30, 78, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(250, 30, 78, 0.04); }
}

/* Headline — underwave display, uppercase like the GX site */
.headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 400;
  color: var(--gx-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.06;
}

.subheadline {
  font-size: clamp(13px, 1.1vw, 16px);
  color: var(--gx-text-muted);
  line-height: 1.6;
  max-width: 500px;
  font-weight: 400;
}



.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Feature labels — left accent bar, GX-authentic */
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gx-surface-3);
  border: none;
  border-left: 2px solid var(--gx-red);
  border-radius: 0 3px 3px 0;
  padding: 6px 12px 6px 10px;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 600;
  color: var(--gx-text-soft);
}

.feature-pill::before {
  content: none;
}

/* ── CTA glow wrapper — box-shadow works here (no clip-path) ── */
.cta-glow {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  margin: 8px 16px 8px 0;
  border-radius: 2px;
  flex-shrink: 0;
  /* Glow-only pulse — no transform in keyframes avoids hover flicker */
  box-shadow:
    0 0  8px rgba(210, 30, 58, 0.52),
    0 0 24px rgba(210, 30, 58, 0.36),
    0 0 55px rgba(210, 30, 58, 0.20),
    0 0 90px rgba(210, 30, 58, 0.09);
  animation: cta-pulse 2s ease-in-out infinite;
  transition: transform 0.22s ease, box-shadow 0.28s ease;
}

.cta-glow:hover {
  /* animation-play-state paused keeps current glow frame; transition handles lift */
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 0 12px rgba(210, 30, 58, 0.70),
    0 0 36px rgba(210, 30, 58, 0.52),
    0 0 72px rgba(210, 30, 58, 0.30),
    0 0 130px rgba(210, 30, 58, 0.14),
    0 0 220px rgba(80, 33, 255, 0.07);
}

.cta-glow:active {
  transition-duration: 0.07s;
  transform: translateY(-1px) scale(1.03);
}

/* ── CTA button — shape + color only, glow on wrapper ── */
.download-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(50px, 4.2vw, 58px);
  padding: 0 clamp(32px, 3.2vw, 48px);
  background: #fa1e4e;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  width: fit-content;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.download-cta::before {
  content: none;
}

.download-cta__label {
  position: relative;
  z-index: 2;
}

.download-cta:hover {
  background: #ff2552;
}

/* ── Pulse: glow-only — no transform prevents hover flicker ── */
@keyframes cta-pulse {
  0%, 100% {
    box-shadow:
      0 0  8px rgba(210, 30, 58, 0.52),
      0 0 24px rgba(210, 30, 58, 0.36),
      0 0 55px rgba(210, 30, 58, 0.20),
      0 0 90px rgba(210, 30, 58, 0.09);
  }
  50% {
    box-shadow:
      0 0 14px rgba(210, 30, 58, 0.72),
      0 0 38px rgba(210, 30, 58, 0.52),
      0 0 80px rgba(210, 30, 58, 0.30),
      0 0 150px rgba(210, 30, 58, 0.14),
      0 0 240px rgba(80, 33, 255, 0.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-glow { animation: none !important; }
}

/* ── Visual panel ── */
.visual-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: relative;
}

.visual {
  width: 100%;
  max-width: 430px;
  position: relative;
}

/* ── GX widget shell — authentic Opera GX panel (surface-primary, 20px radius) ── */
.gx-widget {
  background: var(--gx-surface-2);
  border: 1px solid var(--gx-border);
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(250, 30, 78, 0.04);
}

/* Scanline texture — very subtle */
.gx-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(80, 33, 255, 0.012) 3px, rgba(80, 33, 255, 0.012) 6px);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* Subtle red atmospheric glow at top */
.gx-widget::after {
  content: '';
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 120px;
  background: radial-gradient(ellipse 50% 55% at 50% 20%, rgba(250, 30, 78, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Widget header */
.gxw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px 14px;
  border-bottom: 1px solid rgba(72, 64, 99, 0.5);
  position: relative;
  z-index: 1;
}

.gxw-title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gx-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gxw-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gx-red-light);
  text-transform: uppercase;
  background: rgba(250, 30, 78, 0.09);
  border: 1px solid rgba(250, 30, 78, 0.22);
  border-radius: 4px;
  padding: 3px 9px 3px 6px;
}

.gxw-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gx-red);
  animation: badge-pulse 2s ease-in-out infinite;
}

.gxw-body {
  padding: 18px 22px 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Status / feature row inside widgets */

/* GX toggle switch — active color from --active-switch-button-color */

/* Big stat readout */
.gxw-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 0 6px;
}

.gxw-stat-num {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--gx-red);
  line-height: 1;
  text-shadow: 0 0 26px rgba(250, 30, 78, 0.45);
}

.gxw-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a517b;
}

.widget-caption {
  margin-top: 10px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(189, 184, 209, 0.38);
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.widget-caption::before,
.widget-caption::after {
  content: '';
  height: 1px;
  width: 28px;
  background: rgba(189, 184, 209, 0.15);
  flex-shrink: 0;
}

/* ── Consent strip ── */
.consent-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 20px;
  background: rgba(14, 11, 24, 0.92);
  border-top: 1px solid rgba(250, 30, 78, 0.22);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.32s ease;
}

.consent-strip:not([hidden]) { transform: translateY(0); }

.consent-strip p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  flex: 1;
}

.consent-strip button {
  flex-shrink: 0;
  padding: 7px 18px;
  background: var(--gx-accent, #fa1e4e);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.consent-strip button:hover { background: #ff2552; }
/* ── Responsive — FHD / QHD / 4K ── */
@media (min-width: 1920px) {
  .headline { font-size: 64px; }
  .subheadline { font-size: 18px; max-width: 580px; }
  .download-cta { height: 60px; font-size: 17px; padding: 0 52px; }
  .visual { max-width: 500px; }
  .gxw-title { font-size: 22px; }
  .gxw-stat-num { font-size: 56px; }
  .logo { width: 210px; }
}

@media (min-width: 2560px) {
  .headline { font-size: 86px; }
  .subheadline { font-size: 23px; max-width: 720px; }
  .trust-chip { font-size: 15px; }
  .feature-pill { font-size: 16px; padding: 10px 20px; }
  .download-cta { height: 76px; font-size: 22px; padding: 0 64px; }
  .visual { max-width: 640px; }
  .gxw-title { font-size: 27px; }
  .gxw-stat-num { font-size: 72px; }
  .gxw-stat-label { font-size: 13px; }
  .logo { width: 290px; }
  .consent-strip p { font-size: 15px; }
}

@media (min-width: 3840px) {
  .headline { font-size: 124px; }
  .subheadline { font-size: 32px; max-width: 1050px; }
  .trust-chip { font-size: 21px; }
  .feature-pill { font-size: 23px; padding: 14px 28px; }
  .download-cta { height: 104px; font-size: 31px; padding: 0 88px; }
  .visual { max-width: 920px; }
  .gxw-head { padding: 24px 34px 20px; }
  .gxw-body { padding: 30px 34px 36px; gap: 20px; }
  .gxw-title { font-size: 38px; }
  .gxw-stat-num { font-size: 104px; }
  .gxw-stat-label { font-size: 18px; }
  .widget-caption { font-size: 16px; }
  .logo { width: 410px; }
  .consent-strip p { font-size: 21px; }
  .consent-strip button { font-size: 17px; padding: 9px 26px; }
}
/* 10 — Popup Blocker widget with collapsing popups */
.pop-stage {
  position: relative;
  height: 120px;
}

.pop-win {
  position: absolute;
  width: 132px;
  background: var(--gx-surface-3);
  border: 1px solid var(--gx-border-2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  animation: pop-die 5s ease-in-out infinite;
}

.pop-win--1 { left: 4%; top: 6px; animation-delay: 0.6s; }
.pop-win--2 { left: 35%; top: 38px; animation-delay: 1.5s; z-index: 1; }
.pop-win--3 { right: 4%; top: 12px; animation-delay: 2.4s; }

@keyframes pop-die {
  0%        { opacity: 0; transform: scale(0.85); box-shadow: 0 10px 28px rgba(0,0,0,0.5); }
  8%, 52%   { opacity: 1; transform: scale(1);    box-shadow: 0 10px 28px rgba(0,0,0,0.5); }
  60%       { opacity: 1; transform: scale(1.04); box-shadow: 0 0 0 2px rgba(250,30,78,0.7), 0 10px 28px rgba(0,0,0,0.5); }
  68%, 100% { opacity: 0; transform: scale(0.5);  box-shadow: 0 0 0 2px rgba(250,30,78,0); }
}

.pop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gx-border);
  padding: 4px 8px;
}

.pop-bar-title {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a80ac;
}

.pop-bar-x {
  font-size: 10px;
  line-height: 1;
  color: var(--gx-red);
  font-weight: 700;
}

.pop-body {
  padding: 10px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #5a517b;
  text-align: center;
  letter-spacing: 0.06em;
}

@media (min-width: 2560px) {
  .pop-stage { height: 160px; }
  .pop-win { width: 180px; }
  .pop-bar-title { font-size: 11px; }
  .pop-body { font-size: 13px; padding: 14px 10px; }
}

@media (min-width: 3840px) {
  .pop-stage { height: 230px; }
  .pop-win { width: 260px; border-radius: 6px; }
  .pop-bar { padding: 8px 14px; }
  .pop-bar-title { font-size: 15px; }
  .pop-bar-x { font-size: 17px; }
  .pop-body { font-size: 19px; padding: 20px 14px; }
}

/* ── Responsive — 1280px sweet spot ── */
@media (min-width: 1280px) and (max-width: 1919px) {
  .visual { max-width: 520px; }
  .headline { font-size: clamp(40px, 3.8vw, 58px); }
  .subheadline { max-width: 540px; }
}

/* ── Responsive — tablet landscape / small laptop (768–900px) ── */
@media (min-width: 768px) and (max-width: 900px) {
  .content {
    flex-direction: row;
    padding: 20px 28px 20px;
    gap: 20px;
    align-items: center;
  }
  .copy-panel { flex: 1.2; }
  .visual-panel { flex: 1; }
  .visual { max-width: 280px; }
  .headline { font-size: 26px; }
  .subheadline { font-size: 13px; max-width: 340px; }
  .download-cta { height: 46px; font-size: 12px; padding: 0 24px; }
  body { overflow-y: auto; height: auto; min-height: 100vh; }
  .ogx-window { height: auto; min-height: 100vh; }
}

/* ── Mobile — fix html overflow so page can scroll ── */
@media (max-width: 767px) {
  html { overflow-y: auto; }
  body { overflow-y: auto; height: auto; min-height: 100vh; }
  .ogx-window { height: auto; min-height: 100vh; }
  .content {
    flex-direction: column;
    padding: 22px 18px 80px;
    gap: 20px;
  }
  .visual { max-width: 100%; }
  .headline { font-size: clamp(26px, 7.5vw, 34px); }
  .subheadline { font-size: 14px; max-width: 100%; }
  .features { gap: 8px; }
  .feature-pill { font-size: 12px; padding: 7px 14px; }
  .cta-glow { width: 100%; }
  .download-cta {
    width: 100%;
    height: 52px;
    font-size: 14px;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   ENTRY ANIMATIONS — GX power-on sequence
   ══════════════════════════════════════════════════════════════ */

/* Scan sweep — one-pass red/purple line on load */
@keyframes scan-sweep {
  0%   { transform: translateY(-4px); opacity: 0.9; }
  100% { transform: translateY(100vh); opacity: 0; }
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gx-red) 35%, var(--gx-purple) 65%, transparent 100%);
  animation: scan-sweep 0.88s 0.04s cubic-bezier(0.4, 0, 0.8, 1) both;
  pointer-events: none;
  z-index: 99999;
}

/* Logo — power-on glitch flash */
@keyframes logo-on {
  0%   { opacity: 0; filter: brightness(12) blur(4px); transform: scale(1.08) skewX(-3deg); }
  10%  { opacity: 1; filter: brightness(4); transform: scale(1.03) skewX(1.5deg); }
  22%  { filter: brightness(2.5) hue-rotate(22deg); transform: scale(1.01) skewX(0); }
  38%  { filter: brightness(1.8); transform: scale(1); }
  55%  { filter: brightness(2.4); }
  70%  { filter: brightness(1); }
  100% { opacity: 1; filter: none; transform: none; }
}

/* Headline & trust chip — glitch shake then lock */
@keyframes text-glitch {
  0%   { opacity: 0; transform: translate(-10px, 3px) skewX(-6deg); color: var(--gx-red); }
  7%   { opacity: 1; transform: translate(5px, -2px) skewX(3deg); }
  12%  { transform: translate(-3px, 0) skewX(-1.5deg); color: var(--gx-text); }
  16%  { transform: translate(2px, 0); color: var(--gx-red); }
  20%  { transform: translate(-1px, 0); color: var(--gx-text); }
  24%  { transform: translate(0); }
  100% { opacity: 1; transform: none; color: var(--gx-text); }
}

/* Subheadline, divider, pills — clean fade up */
@keyframes fade-up-entry {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Widget panel — blur scale-up */
@keyframes widget-on {
  from { opacity: 0; transform: scale(0.91) translateY(14px); filter: blur(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); filter: none; }
}

/* ── Assignments ─────────────────────────────── */
.logo {
  animation: logo-on 0.64s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.trust-chip {
  animation: fade-up-entry 0.4s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.headline {
  animation: text-glitch 0.52s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Entry fade then hands off to the neon pulse */
.cta-glow {
  animation:
    fade-up-entry 0.4s  0.4s  cubic-bezier(0.22, 1, 0.36, 1) both,
    cta-pulse     2s    0.92s ease-in-out infinite;
}
.subheadline {
  animation: fade-up-entry 0.4s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.copy-divider {
  animation: fade-up-entry 0.32s 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.features .feature-pill:nth-child(1) {
  animation: fade-up-entry 0.34s 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.features .feature-pill:nth-child(2) {
  animation: fade-up-entry 0.34s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.features .feature-pill:nth-child(3) {
  animation: fade-up-entry 0.34s 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.visual-panel {
  animation: widget-on 0.64s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Respect motion preference */
@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
  .logo, .trust-chip, .headline,
  .subheadline, .copy-divider,
  .features .feature-pill, .visual-panel {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .cta-glow {
    animation: cta-pulse 2s ease-in-out infinite !important;
    opacity: 1 !important;
  }
}
