:root {
  --bg-dark: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --bg-input: #0d1220;
  --border: #1e293b;
  --border-glow: #c9a24e;
  --gold: #d4a843;
  --gold-light: #f0d890;
  --gold-dark: #a0832e;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --red: #ef4444;
  --green: #22c55e;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --white: #ffffff;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.5);
  --shadow-gold: 0 0 20px rgba(212,168,67,.15);
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Navbar ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,14,23,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.nav-brand-icon { font-size: 1.5rem; }
.nav-brand-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; color: var(--gold);
  letter-spacing: .04em;
}
.nav-links {
  list-style: none; display: flex; align-items: center; gap: .25rem;
}
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .9rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold); background: rgba(212,168,67,.08);
}
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); font-size: 1.4rem; padding: .35rem .6rem;
  border-radius: var(--radius); cursor: pointer;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,14,23,0) 0%, var(--bg-dark) 100%),
              radial-gradient(ellipse at center top, rgba(212,168,67,.08) 0%, transparent 60%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="g" cx="50%" cy="30%"><stop offset="0%" stop-color="%23d4a843" stop-opacity=".06"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><rect fill="url(%23g)" width="1200" height="600"/></svg>') center/cover no-repeat;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  text-shadow: 0 2px 30px rgba(212,168,67,.25);
  margin-bottom: .75rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 640px; margin: 0 auto 2rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: .4rem 1rem;
  font-size: .85rem; color: var(--text-muted);
}
.badge strong { color: var(--gold); }
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all var(--transition);
  border: none; text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0e17; box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212,168,67,.3);
  color: #0a0e17;
}
.btn-outline {
  background: transparent; border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { opacity: .9; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* ─── Stats Strip ─── */
.stats-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; padding: 3rem 0;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  text-align: center; transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.stat-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1.2;
}
.stat-label { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }

/* ─── Sections ─── */
.section { padding: 4rem 0; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.8rem; color: var(--gold);
  margin-bottom: 2rem; text-align: center;
}

/* ─── News ─── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1.5rem; }
.news-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition);
}
.news-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-gold); }
.news-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-light); margin-bottom: .5rem; }
.news-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: .75rem; }
.news-meta { font-size: .8rem; color: var(--text-dim); }

/* ─── Info Grid ─── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; transition: all var(--transition);
}
.info-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.info-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.info-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: .5rem; }
.info-card p { color: var(--text-muted); font-size: .9rem; }

/* ─── Forms ─── */
.form-page {
  min-height: calc(100vh - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
}
.form-container {
  width: 100%; max-width: 480px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; color: var(--gold);
  text-align: center; margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: .4rem;
}
.form-input {
  width: 100%; padding: .75rem 1rem;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: .95rem; transition: border-color var(--transition);
}
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,67,.1); }
.form-input::placeholder { color: var(--text-dim); }
.form-hint { font-size: .8rem; color: var(--text-dim); margin-top: .25rem; }

.form-btn {
  width: 100%; padding: .9rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  border: none; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0e17; cursor: pointer;
  transition: all var(--transition);
  margin-top: .5rem;
}
.form-btn:hover { box-shadow: 0 4px 24px rgba(212,168,67,.35); transform: translateY(-1px); }
.form-btn:disabled { opacity: .5; cursor: not-allowed; }

.form-footer { text-align: center; margin-top: 1.25rem; font-size: .9rem; color: var(--text-muted); }
.form-footer a { color: var(--gold); }

.alert {
  padding: .75rem 1rem; border-radius: var(--radius);
  font-size: .9rem; margin-bottom: 1.25rem;
}
.alert-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #86efac; }

/* ─── Stats Page ─── */
.stats-hero { padding: 3rem 0 2rem; text-align: center; }
.stats-hero h1 { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: .5rem; }
.stats-hero p { color: var(--text-muted); }
.stats-table-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem;
}
.stats-table-title {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--gold);
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
}
table.stats-table {
  width: 100%; border-collapse: collapse;
}
.stats-table th {
  background: rgba(212,168,67,.06); text-align: left;
  padding: .75rem 1.5rem; font-size: .8rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}
.stats-table td {
  padding: .75rem 1.5rem; border-top: 1px solid var(--border);
  font-size: .9rem;
}
.stats-table tr:hover td { background: rgba(212,168,67,.03); }
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: .75rem; font-weight: 700;
}
.rank-1 { background: #d4a843; color: #0a0e17; }
.rank-2 { background: #94a3b8; color: #0a0e17; }
.rank-3 { background: #b45309; color: #fff; }
.rank-default { background: var(--border); color: var(--text-muted); }
.online-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: .4rem; }
.online-dot.on { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,.5); }
.online-dot.off { background: var(--text-dim); }

/* ─── Account Page ─── */
.account-page { padding: 3rem 0; }
.account-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.account-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #0a0e17; font-weight: 700;
  font-family: var(--font-display);
}
.account-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.account-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.account-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; }
.account-field { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--border); }
.account-field:last-child { border-bottom: none; }
.account-field .label { color: var(--text-dim); font-size: .85rem; }
.account-field .value { color: var(--text); font-weight: 500; }

/* ─── Download Page ─── */
.download-page { padding: 4rem 0; text-align: center; }
.download-page h1 { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.download-page p { color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.download-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.dl-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition);
}
.dl-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.dl-card h3 { font-family: var(--font-display); color: var(--gold); margin-bottom: .5rem; }
.dl-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.25rem; }

.step-list { text-align: left; margin: 2.5rem auto 0; max-width: 600px; }
.step-list h3 { font-family: var(--font-display); color: var(--gold); margin-bottom: 1rem; font-size: 1.2rem; }
.step { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #0a0e17; font-size: .85rem;
}
.step-text h4 { font-size: .95rem; color: var(--text); margin-bottom: .15rem; }
.step-text p { font-size: .85rem; color: var(--text-muted); }
.step-text code { background: var(--bg-input); padding: .1rem .4rem; border-radius: 4px; color: var(--gold); font-size: .85rem; }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(17,24,39,.5);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); margin-bottom: .5rem; }
.footer-desc { color: var(--text-dim); font-size: .9rem; }
.footer h4 { font-family: var(--font-display); font-size: .95rem; color: var(--gold); margin-bottom: .75rem; }
.footer-info, .footer-links { list-style: none; }
.footer-info li, .footer-links li { font-size: .85rem; color: var(--text-muted); margin-bottom: .35rem; }
.footer-info code { background: var(--bg-input); padding: .1rem .4rem; border-radius: 4px; color: var(--gold); }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.25rem; text-align: center; }
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; width: 100%;
    position: absolute; top: 100%; left: 0;
    background: rgba(10,14,23,.98); border-bottom: 1px solid var(--border);
    padding: .5rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: .65rem .9rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-container { padding: 1.75rem; }
  .account-header { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ─── Forum ─── */
.forum-header {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at center top, rgba(212,168,67,.04) 0%, transparent 60%);
}
.forum-main-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold); margin-bottom: .35rem;
}
.forum-main-desc { color: var(--text-muted); font-size: .95rem; }
.forum-stats-bar {
  display: flex; gap: .5rem; margin-top: .75rem;
  font-size: .85rem; color: var(--text-dim);
}
.forum-breadcrumb {
  display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
  font-size: .85rem; color: var(--text-dim);
}
.forum-breadcrumb a { color: var(--text-muted); }
.forum-breadcrumb a:hover { color: var(--gold); }

.forum-categories { display: flex; flex-direction: column; gap: .5rem; }

.forum-cat-row {
  display: grid; grid-template-columns: 48px 1fr 160px 180px;
  align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  transition: all var(--transition); text-decoration: none;
}
.forum-cat-row:hover {
  border-color: var(--border-glow); box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.forum-cat-icon { font-size: 1.8rem; text-align: center; }
.forum-cat-name {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--gold); margin-bottom: .2rem;
}
.forum-cat-desc { font-size: .85rem; color: var(--text-dim); }
.forum-cat-counts { display: flex; gap: 1.5rem; }
.forum-count-item { text-align: center; }
.forum-count-num {
  display: block; font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--text);
}
.forum-count-label { font-size: .75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .04em; }
.forum-cat-last { min-width: 0; }
.forum-last-title {
  font-size: .85rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.forum-last-meta { font-size: .75rem; color: var(--text-dim); }

.forum-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.forum-toolbar-info { font-size: .85rem; color: var(--text-dim); }

.forum-topic-list { display: flex; flex-direction: column; gap: .4rem; }

.forum-topic-row {
  display: grid; grid-template-columns: 36px 1fr 130px 150px;
  align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  transition: all var(--transition); text-decoration: none;
}
.forum-topic-row:hover {
  border-color: var(--border-glow); background: var(--bg-card-hover);
}
.forum-topic-row.pinned {
  border-left: 3px solid var(--gold);
  background: rgba(212,168,67,.03);
}
.forum-topic-icon { font-size: 1.2rem; text-align: center; }
.forum-topic-title {
  font-size: .95rem; font-weight: 600; color: var(--text);
  margin-bottom: .15rem;
}
.forum-topic-row:hover .forum-topic-title { color: var(--gold); }
.forum-topic-meta { font-size: .8rem; color: var(--text-dim); }
.forum-topic-stats { display: flex; gap: 1.25rem; }
.forum-topic-last { min-width: 0; }

.forum-empty {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3rem;
  text-align: center; color: var(--text-dim); font-size: .95rem;
}
.forum-empty a { color: var(--gold); }

.forum-pagination {
  display: flex; justify-content: center; gap: .4rem;
  margin-top: 1.5rem;
}
.forum-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .5rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg-card); transition: all var(--transition);
}
.forum-page-btn:hover, .forum-page-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212,168,67,.08);
}

/* ─── Topic Page ─── */
.forum-topic-page-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--gold); margin-bottom: .35rem;
}
.forum-topic-page-meta { font-size: .85rem; color: var(--text-dim); }

.forum-posts { display: flex; flex-direction: column; gap: 1rem; }

.forum-post-card {
  display: grid; grid-template-columns: 160px 1fr;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.forum-post-card.op { border-color: rgba(212,168,67,.25); }

.forum-post-sidebar {
  background: rgba(10,14,23,.5); padding: 1.25rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; border-right: 1px solid var(--border);
}
.forum-post-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: #0a0e17;
  font-family: var(--font-display);
}
.forum-post-username { font-weight: 600; color: var(--gold); font-size: .9rem; }
.forum-post-role { font-size: .7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; }
.forum-post-user-stats { font-size: .75rem; color: var(--text-dim); }

.forum-post-body { padding: 1.25rem 1.5rem; }
.forum-post-date {
  font-size: .8rem; color: var(--text-dim); margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.forum-post-content {
  font-size: .95rem; color: var(--text); line-height: 1.7;
  word-wrap: break-word;
}

.forum-reply-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  margin-top: 1.5rem;
}
.forum-reply-title {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--gold); margin-bottom: 1rem;
}
.forum-textarea {
  min-height: 120px; resize: vertical;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .forum-cat-row { grid-template-columns: 36px 1fr; }
  .forum-cat-counts, .forum-cat-last { display: none; }
  .forum-topic-row { grid-template-columns: 28px 1fr; }
  .forum-topic-stats, .forum-topic-last { display: none; }
  .forum-post-card { grid-template-columns: 1fr; }
  .forum-post-sidebar {
    flex-direction: row; justify-content: flex-start;
    border-right: none; border-bottom: 1px solid var(--border);
    padding: .75rem 1rem;
  }
  .forum-post-avatar { width: 36px; height: 36px; font-size: 1rem; }
}
