/* DOGEUS MAXIMUS — Imperial BSC Theme */

:root {
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-dark: #9a7b2c;
  --bnb: #f3ba2f;
  --crimson: #8b0000;
  --crimson-light: #b22222;
  --bg: #0a0806;
  --bg-card: #12100c;
  --bg-elevated: #1a1610;
  --border: rgba(212, 175, 55, 0.25);
  --text: #e8e0d4;
  --text-muted: #9a9080;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--bnb);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #1a1000;
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.35);
  color: #1a1000;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--border);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.95) 0%, rgba(10, 8, 6, 0.7) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.nav-logo img {
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  object-fit: cover;
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.35) 0%, rgba(10, 8, 6, 0.78) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10, 8, 6, 0.85) 0%, rgba(10, 8, 6, 0.45) 50%, rgba(10, 8, 6, 0.55) 100%);
}

.hero-inner.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1120px, 88vw);
  padding: 4rem clamp(2rem, 5vw, 4.5rem) 5rem;
  box-sizing: border-box;
}

.hero-copy {
  flex: 0 1 auto;
  max-width: min(520px, 48%);
  min-width: 0;
  text-align: left;
}

.hero-visual {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 1;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 0 6px rgba(212, 175, 55, 0.15),
    0 0 80px rgba(212, 175, 55, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.7);
}

.hero-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  animation: hero-pulse 4s ease-in-out infinite;
}

.hero-logo-ring--outer {
  inset: -12%;
  border-color: rgba(243, 186, 47, 0.2);
  animation-delay: -2s;
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(243, 186, 47, 0.1);
  border: 1px solid rgba(243, 186, 47, 0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bnb);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.bnb-dot {
  width: 8px;
  height: 8px;
  background: var(--bnb);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--bnb);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
  margin-bottom: 1rem;
}

.hero-title span {
  display: block;
}

.hero-tagline {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 0.75rem 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.countdown-item span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown-item small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
  padding-bottom: 1rem;
}

.launch-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.launch-label strong {
  color: var(--gold-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contract-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.contract-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  width: 100%;
}

.contract-address {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--gold-light);
  word-break: break-all;
  flex: 1;
  min-width: 200px;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy:hover {
  background: rgba(212, 175, 55, 0.22);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* Legend */
.legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.legend-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.legend-text strong {
  color: var(--gold-light);
}

.legend-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stat-pill {
  padding: 0.6rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-pill span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.stat-pill strong {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.95rem;
}

.legend-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-gold), 0 20px 60px rgba(0, 0, 0, 0.6);
}

.legend-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.legend-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Roadmap */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.roadmap-phase {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.phase-coin {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1000;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.phase-body {
  flex: 1;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.phase-body h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.phase-body ul {
  list-style: none;
}

.phase-body li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.phase-body li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.5rem;
  top: 0.45rem;
}

/* Buy */
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1000;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
}

.step h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.buy-card {
  position: sticky;
  top: 96px;
}

.swap-mock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.swap-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}

.swap-network {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(243, 186, 47, 0.15);
  color: var(--bnb);
  border-radius: 6px;
}

.swap-field {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.swap-field label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.swap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.swap-amount {
  font-size: 1.5rem;
  font-weight: 600;
}

.swap-amount.gold {
  color: var(--gold);
}

.swap-token {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.swap-token.bnb {
  background: rgba(243, 186, 47, 0.2);
  color: var(--bnb);
}

.swap-token.dogeus {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
}

.swap-arrow {
  text-align: center;
  color: var(--gold-dark);
  margin: 0.25rem 0;
}

.swap-btn {
  margin-top: 1rem;
}

.buy-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* Treasury */
.treasury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.treasury-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.treasury-stat:hover {
  border-color: var(--gold-dark);
}

.treasury-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.treasury-stat span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.treasury-stat strong {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
}

.allocation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.allocation-chart {
  position: relative;
  width: 200px;
  height: 200px;
}

.donut {
  width: 100%;
  height: 100%;
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-center span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
}

.donut-center small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.allocation-legend {
  list-style: none;
}

.allocation-legend li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.allocation-legend em {
  margin-left: auto;
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-display);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.gold { background: var(--gold); }
.dot.red { background: var(--crimson-light); }
.dot.bnb { background: var(--bnb); }

/* Community */
.community {
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(139, 0, 0, 0.15) 0%, transparent 70%),
    var(--bg);
}

.community-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-avatar {
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-gold);
  margin-bottom: 1.5rem;
  object-fit: cover;
  width: 120px;
  height: 120px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 720px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--text);
}

.social-card span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}

.social-card small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.social-card.telegram:hover { color: #29a8e0; }
.social-card.telegram:hover span { color: #29a8e0; }
.social-card.x:hover { color: #fff; }
.social-card.x:hover span { color: #fff; }

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.06em;
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: #1a1000;
  font-weight: 600;
  border-radius: 999px;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 10000;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Hero — stack on smaller screens */
@media (max-width: 960px) {
  .hero-inner.container {
    flex-wrap: wrap;
    justify-content: center;
    width: min(1140px, 92vw);
    padding-inline: clamp(1.25rem, 4vw, 2rem);
  }

  .hero-copy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-visual {
    width: min(280px, 72vw);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .legend-grid,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .legend-image-wrap {
    order: -1;
    max-width: 400px;
    margin-inline: auto;
  }

  .treasury-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .buy-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(72px + 220px);
    left: 1.5rem;
    right: 1.5rem;
    width: calc(100% - 3rem);
    justify-content: center;
  }

  .hero-inner.container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem clamp(1.25rem, 4vw, 2rem) 3.5rem;
  }

  .hero-copy {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
    flex: 0 0 auto;
    width: min(260px, 72vw);
  }

  .hero-banner {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 8, 6, 0.5) 0%, rgba(10, 8, 6, 0.88) 55%, var(--bg) 100%);
  }

  .countdown-item {
    min-width: 52px;
    padding: 0.5rem;
  }

  .countdown-item span {
    font-size: 1.25rem;
  }

  .roadmap-phase {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .phase-body li {
    text-align: left;
  }

  .treasury-grid {
    grid-template-columns: 1fr;
  }
}
