/* ============================================================
   ASTRO PRO — Premium Gaming Theme
   Redesign 2026 | CloudArcade
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  color-scheme: dark;

  /* Background layers */
  --bg-base:        #05080F;
  --bg-surface:     #0C1220;
  --bg-card:        #111827;
  --bg-card-hover:  #161F30;
  --bg-elevated:    #1A2540;
  --bg-overlay:     #0D1627;

  /* Accent — Amber/Gold */
  --accent:         #F59E0B;
  --accent-hover:   #D97706;
  --accent-light:   rgba(245,158,11,0.12);
  --accent-glow:    rgba(245,158,11,0.25);

  /* Text */
  --text-primary:   #F0F4FF;
  --text-secondary: #94A3B8;
  --text-muted:     #4B5A72;

  /* Borders */
  --border:         rgba(255,255,255,0.06);
  --border-accent:  rgba(245,158,11,0.3);

  /* Fonts */
  --font-ui:        'Inter', system-ui, sans-serif;
  --font-display:   'Orbitron', sans-serif;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 28px rgba(245,158,11,0.18);
}

/* ── Base ── */
html {
  background-color: var(--bg-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Typography ── */
article h1 {
  font-family: var(--font-display);
  font-size: 2em;
  font-weight: 700;
  margin: 0.67em 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
article h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0.83em 0;
}
article h3 {
  font-size: 1.17em;
  font-weight: 600;
  margin: 1em 0;
}
article h4 {
  font-size: 1em;
  font-weight: 600;
  margin: 1.33em 0;
}
article h5 {
  font-size: 0.83em;
  font-weight: 600;
  margin: 1.67em 0;
}

/* ── Page Load Animation ── */
.hide-content { display: none; }
.show-content {
  display: block;
  animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px var(--accent-glow); }
  50%       { box-shadow: 0 0 28px var(--accent-glow), 0 0 48px rgba(245,158,11,0.1); }
}

/* ── Navigation Dropdown ── */
.dropdown-submenu > a::after {
  content: '›';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.parent_child::after {
  content: '›';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* ── Nav Link Underline Animation ── */
.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: right 0.25s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { right: 0; }

/* ── Buttons ── */
.btn-game-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--accent);
  color: #0A0C10;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-game-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-game-primary:active { transform: translateY(0); }

.btn-game-action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-game-action:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  color: #0A0C10;
  background: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-danger {
  color: #fff;
  background: #EF4444;
}
.btn-danger:hover {
  background: #DC2626;
  transform: translateY(-1px);
}

.btn-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: var(--accent-light);
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-arrow:hover {
  background: var(--accent);
  box-shadow: var(--shadow-glow);
}
.btn-left  { left: 0; }
.btn-right { right: 0; }

/* ── Widgets ── */
.widget {
  margin-bottom: 24px;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── Game Player ── */
.game-content { overflow: hidden; }

.game-iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 700px;
  background: #000;
}

.game-iframe {
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100%; height: 100%;
  z-index: 10;
}

/* ── Game Info Layout ── */
.game-info-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .game-info-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.game-title-section {
  flex: 1;
  min-width: 0;
  margin-right: 1rem;
}

.game-title {
  font-family: var(--font-display);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.game-meta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.game-actions-section {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .game-actions-section {
    justify-content: flex-end;
    min-width: fit-content;
  }
}

.single-game__actions {
  display: flex;
  gap: 0.5rem;
  margin-right: 0.5rem;
}
.mobile-primary-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── Comment System ── */
#tpl-comment-section {
  margin-top: 30px;
  margin-bottom: 20px;
}

#comment-form {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.comment-profile-avatar { margin-right: 20px; }
.comment-profile-avatar img {
  border-radius: 50%;
  float: left;
  width: 3.6rem;
  height: 3.6rem;
  max-width: 50px;
  max-height: 50px;
}

.comment-form-wrapper {
  background: var(--bg-card);
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 15px;
  width: 100%;
}
.comment-form-wrapper textarea { padding: 0; border: 0; }

.post-comment-btn-wrapper {
  float: right;
  margin-top: 15px;
}

textarea#comment-input { height: 100px; }

.user-comment-wrapper { display: flex; }

.tpl-user-comment {
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.tpl-comment-children .tpl-user-comment:last-child { border-bottom: none; }

img.tpl-user-comment-avatar {
  border-radius: 50%;
  float: left;
  width: 3.6rem;
  height: 3.6rem;
  max-width: 50px;
  max-height: 50px;
  margin-right: 20px;
}
.tpl-comment-children img.tpl-user-comment-avatar {
  max-width: 40px;
  max-height: 40px;
}

.tpl-comment-author { font-weight: 600; }
.tpl-user-comment .comment-content { margin-bottom: 20px; width: 100%; }
.tpl-comment-timestamp { margin-top: 3px; font-size: 14px; color: var(--text-muted); }
.tpl-comment-text { margin-top: 13px; white-space: unset; }

.comment-actions { margin-top: 15px; }
.comment-action-right { float: right; }
.comment-action-left  { float: left; }

.tpl-comment-children { display: block; margin-left: 70px; }
.tpl-reply-form { display: flex; }

.comment-reply-wrapper {
  margin-left: 70px;
  background: var(--bg-card);
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 15px;
  width: 100%;
}
.comment-reply-wrapper textarea { padding: 0; border: 0; }

.reply-action-buttons { float: right; margin-top: 15px; }
.tpl-btn-cancel-reply { color: var(--text-muted); }
#tpl-btn-load-more-comments { color: var(--text-muted); }

.comment-require-login-wrapper {
  display: flex;
  margin-bottom: 40px;
}
.comment-require-login-wrapper .comment-alert {
  padding: 10px;
  background: var(--bg-elevated);
  text-align: center;
  width: 100%;
  border-radius: var(--radius-md);
}

.comment-user-avatar { position: absolute; width: 50px; height: 50px; }
.comment-user-avatar img { border-radius: 50%; }
.comment-avatar { float: left; width: 50px; height: 50px; }
.comment-avatar img { border-radius: 50%; }
.comment-input { margin-left: 65px; }
.comment-btn-post { text-align: right; }
.comment-p { margin-top: 23px; }
.comment-p .comment-date { float: right; color: var(--text-muted); font-size: 0.8em; }
.comment-username { font-weight: 600; }
.comment-details { margin-left: 65px; }
.comment-text { white-space: pre-line; color: var(--text-primary); }
.comment-date { font-size: 0.875rem; color: var(--text-muted); }
.delete-comment { color: #EF4444; cursor: pointer; margin-top: 0.5rem; }
.profile-comment-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

/* ── Layout Grid ── */
.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-md-4 { position: relative; width: 100%; padding: 0 15px; }
.col-md-8 { position: relative; width: 100%; padding: 0 15px; }
@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

/* ── Forms ── */
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-ui);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-check { position: relative; display: block; padding-left: 1.25rem; margin-bottom: 0.5rem; }
.form-check-input { position: absolute; margin-top: 0.3rem; margin-left: -1.25rem; }
.form-check-label { margin-bottom: 0; }

/* ── User Profile ── */
.user-page { padding: 2rem 0; padding-top: 100px; }

.single-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 17px;
  letter-spacing: 0.02em;
}

.section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.profile-photo img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.profile-username {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1rem 0;
}
.profile-join  { color: var(--text-muted); margin-bottom: 0.5rem; }
.profile-bio   { font-style: italic; color: var(--text-secondary); }
.login-body    { background-color: unset; color: var(--text-primary); }

/* ── Game Lists (Profile) ── */
.profile-gamelist-horizontal { position: relative; overflow: hidden; padding: 1rem 0; }
.profile-gamelist-horizontal ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.profile-game-item { flex: 0 0 auto; margin-right: 1rem; }
.list-thumbnail img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ── Progress Bar ── */
.progress {
  display: flex;
  height: 6px;
  overflow: hidden;
  background: var(--bg-elevated);
  border-radius: var(--radius-pill);
  margin: 0.5rem 0;
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transition: width 0.6s ease;
}

/* ── Utility ── */
.text-center    { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-danger    { color: #EF4444; }
.color-red      { color: #EF4444; }
.mb-3           { margin-bottom: 1rem; }
i.disabled      { opacity: 0.4; pointer-events: none; }

/* ── Avatar Chooser ── */
.avatar-chooser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.input-hidden { position: absolute; left: -9999px; }
.input-hidden + label img {
  width: 100%;
  height: auto;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-hidden:checked + label img {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

/* ── Mobile Header Fixes ── */
@media (max-width: 768px) {
  .mobile-logo-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .mobile-search { width: 100%; margin: 1rem 0; }
  .mobile-search input { width: 100%; }
  .mobile-nav { padding: 1rem; }
  .mobile-nav ul { background: var(--bg-surface); width: 100%; }
  .mobile-nav li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav li:last-child { border-bottom: none; }
  .mobile-nav .submenu { position: relative; padding-left: 1rem; margin-top: 0.5rem; }
}

/* ══════════════════════════════════════════════
   STATIC PAGE LAYOUTS (About, Contact, etc.)
   ══════════════════════════════════════════════ */

/* ── Shared Page Hero ── */
.static-page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.static-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.static-page-hero .page-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--border-accent);
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.static-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin: 0 0 1rem;
}
.static-page-hero p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Info Cards (About stats, Contact cards) ── */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.info-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.info-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.info-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.9375rem;
}

/* ── Stat Blocks ── */
.stat-block {
  text-align: center;
  padding: 2rem 1rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ── Content Section ── */
.content-section {
  padding: 5rem 0;
}
.content-section + .content-section {
  border-top: 1px solid var(--border);
}

/* ── Prose (legal pages) ── */
.prose-legal {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}
.prose-legal h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.prose-legal h2:first-child { margin-top: 0; }
.prose-legal p { margin-bottom: 1.25rem; }
.prose-legal ul, .prose-legal ol {
  margin: 0 0 1.25rem 1.5rem;
}
.prose-legal li { margin-bottom: 0.4rem; }
.prose-legal a { color: var(--accent); }
.prose-legal a:hover { text-decoration: underline; }
.prose-legal strong { color: var(--text-primary); font-weight: 600; }

/* ── Contact Form ── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font-ui);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1.25rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .submit-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: #0A0C10;
  font-weight: 700;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.04em;
}
.contact-form .submit-btn:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

/* ── Divider ── */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}
.section-divider.left { margin-left: 0; }

/* ── Alert / Notice ── */
.notice-box {
  background: var(--accent-light);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── Legal last-updated chip ── */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-top: 0.75rem;
}