
:root {
  --bg-main: #050814;
  --bg-elevated: #0b1020;
  --accent: #ff4b2b;
  --accent-soft: rgba(255, 75, 43, 0.15);
  --accent-alt: #ffb347;
  --text-main: #f8f9ff;
  --text-muted: #a3aed0;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.65);
  --radius-lg: 20px;
  --radius-xl: 26px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #151b35, #050814 55%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top Gradient / Glow */

.top-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.top-glow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  width: 680px;
  height: 260px;
  background: radial-gradient(
    circle at center,
    rgba(255, 75, 43, 0.25),
    transparent 65%
  );
  opacity: 0.5;
  filter: blur(8px);
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(5, 8, 20, 0.92),
      rgba(5, 8, 20, 0.7)
    ),
    transparent;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 0, #fff, #ff4b2b 40%, #050814);
  box-shadow: 0 0 32px rgba(255, 75, 43, 0.65);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 12px;
  border: 2px solid rgba(5, 8, 20, 0.85);
  transform: rotate(-18deg);
}

.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-main);
}

.logo-text-sub {
  font-size: 0.7rem;
  color: var(--accent-alt);
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  cursor: pointer;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-alt)
  );
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: #d7e1ff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent-alt);
  background: rgba(4, 10, 25, 0.9);
}

.btn {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff784f);
  color: #050814;
  box-shadow: 0 14px 35px rgba(255, 75, 43, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 75, 43, 0.6);
}

.btn-ghost {
  background: rgba(7, 12, 30, 0.9);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(14, 20, 45, 0.9);
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.nav-burger {
  display: none;
  border: none;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero */

main {
  flex: 1;
}

.hero {
  padding: 2.5rem 0 2rem 0;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
}

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

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 8, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-pill-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22);
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-title span.accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-alt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 1.6rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.hero-info-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #7f8bb2;
}

.hero-info-value {
  font-weight: 500;
  color: #e3e7ff;
}

/* Hero Right Card */

.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, #1d223e, #060918);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 1.15rem 1.1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at top, rgba(255, 75, 43, 0.32), transparent 55%),
    radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.32), transparent 60%);
  opacity: 0.8;
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8edff;
}

.card-subtitle {
  font-size: 0.75rem;
  color: #b2b9e6;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.24);
}

.status-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9be7b5;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-main {
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(148, 163, 255, 0.3);
  padding: 0.9rem;
  margin-bottom: 0.9rem;
}

.ip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #94a3ff;
  margin-bottom: 0.35rem;
}

.ip-value-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: space-between;
  font-size: 0.9rem;
}

.ip-value {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
}

.btn-small {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7ff;
  cursor: pointer;
  transition: background var(--transition-fast),
    transform var(--transition-fast);
}

.btn-small:hover {
  background: rgba(30, 64, 175, 0.9);
  transform: translateY(-0.5px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.stat-card {
  border-radius: 14px;
  padding: 0.6rem 0.55rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 255, 0.24);
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #94a3ff;
  margin-bottom: 0.2rem;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.stat-sub {
  font-size: 0.7rem;
  color: #9ca3c9;
}

.timeline {
  margin-top: 0.5rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px dashed rgba(148, 163, 255, 0.4);
  padding: 0.8rem 0.85rem;
  font-size: 0.76rem;
  color: #c4ccff;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.timeline-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(248, 113, 113, 0.28);
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(148, 163, 255, 0.7), transparent);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.timeline-title {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #e5e7ff;
}

.timeline-meta {
  font-size: 0.7rem;
  color: #9ca3c9;
}

.timeline-tag-row {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.timeline-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.4);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.68rem;
  color: #e5e7ff;
}

/* Sections */

section {
  padding: 2.8rem 0 0.2rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3ff;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 420px;
}

/* Features */

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

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

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

.feature-card {
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.95);
  border: 1px solid var(--border-subtle);
  padding: 1rem 0.9rem 0.95rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 75, 43, 0.24),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.feature-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.feature-meta {
  font-size: 0.75rem;
  color: #9ca3c9;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* News */

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 1rem;
}

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

.news-main,
.news-side {
  border-radius: var(--radius-lg);
  background: rgba(9, 13, 30, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fbbf24;
  margin-bottom: 0.4rem;
}

.news-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.news-meta {
  font-size: 0.78rem;
  color: #9ca3c9;
  margin-bottom: 0.7rem;
}

.news-body {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.news-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-alt);
  cursor: pointer;
}

.news-link span {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.news-link:hover span {
  transform: translateX(3px);
}

.news-side-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.news-item {
  padding: 0.5rem 0.45rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.5);
}

.news-item-title {
  font-size: 0.86rem;
  margin-bottom: 0.2rem;
}

.news-item-meta {
  font-size: 0.74rem;
  color: #9ca3c9;
}

/* How to join + Donate */

.dual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1rem;
}

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

.card-box {
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.card-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.card-box-title {
  font-size: 0.96rem;
  font-weight: 600;
}

.card-box-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.steps li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.step-index {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: #e5e7ff;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.donate-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tier-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0.5rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 194, 0.7);
}

.tier-name {
  font-weight: 500;
  color: #e5e7ff;
  margin-bottom: 0.1rem;
}

.tier-price {
  font-weight: 600;
  color: #fbbf24;
  font-size: 0.9rem;
}

.tier-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #93c5fd;
}

/* Footer */

footer {
  padding: 2.2rem 0 1.4rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 20, 0.96),
    rgba(3, 7, 18, 1)
  );
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: #9ca3ff;
}

/* Mobile Nav */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  .navbar-inner {
    padding-inline: 0;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.7rem 0 0.9rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .mobile-menu a {
    padding: 0.3rem 0;
  }

  .mobile-menu.show {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-ghost {
    justify-content: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Simple utilities for sub-pages */

.page-title-bar {
  padding: 2.5rem 0 1rem;
}

.page-title-bar h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 255, 0.7);
  font-size: 0.75rem;
  color: #e5e7ff;
}

/* Kronikos page */

.kronikos-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
  gap: 1.4rem;
}

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

.kronika-card {
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  margin-bottom: 0.9rem;
}

.kronika-meta {
  font-size: 0.78rem;
  color: #9ca3c9;
  margin-bottom: 0.45rem;
}

.kronika-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.kronika-body {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.kronika-tags {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.74rem;
}

/* Donatai / Shop */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

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

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

.shop-card {
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 1rem 0.9rem 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.shop-name {
  font-size: 1rem;
  font-weight: 600;
}

.shop-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fbbf24;
}

.shop-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.shop-meta {
  font-size: 0.78rem;
  color: #9ca3c9;
}

/* Profile */

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.8fr);
  gap: 1.3rem;
}

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

.profile-card {
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
}

.profile-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
}

.avatar-circle {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #fff, #ff4b2b, #050814);
  box-shadow: 0 0 24px rgba(248, 113, 113, 0.4);
}

.profile-name {
  font-size: 1.05rem;
  font-weight: 600;
}

.profile-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Admin dashboard */

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 1.2rem;
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .stat-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.dash-card {
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem;
}

.dash-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.6rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.table th,
.table td {
  padding: 0.45rem 0.4rem;
  border-bottom: 1px solid rgba(30, 64, 175, 0.4);
}

.table th {
  text-align: left;
  font-weight: 500;
  font-size: 0.78rem;
  color: #9ca3ff;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid rgba(148, 163, 255, 0.7);
}

.badge-success {
  border-color: rgba(34, 197, 94, 0.7);
  color: #bbf7d0;
}

.badge-warn {
  border-color: rgba(234, 179, 8, 0.7);
  color: #fef9c3;
}

.badge-error {
  border-color: rgba(248, 113, 113, 0.8);
  color: #fee2e2;
}
