:root {
  --bg-void: #040a16;
  --bg-deep: #081326;
  --bg-mid: #10203b;
  --panel-a: rgba(8, 18, 36, 0.9);
  --panel-b: rgba(15, 29, 52, 0.78);
  --panel-border: rgba(0, 153, 255, 0.4);
  --panel-border-soft: rgba(106, 176, 255, 0.3);
  --gold: #ffd453;
  --gold-strong: #ffd700;
  --gold-soft: rgba(255, 215, 0, 0.25);
  --blue: #0096ff;
  --blue-soft: rgba(0, 150, 255, 0.35);
  --text-main: #edf5ff;
  --text-soft: #b5c9e5;
  --text-dim: #90a7c7;
  --success: #36de8b;
  --danger: #ff5b5b;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-lg: 0 18px 42px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.34);
  --ease: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: "Roboto", "Manrope", sans-serif;
  color: var(--text-main);
  background: url("assets/background.jpg") no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% -12%, rgba(0, 150, 255, 0.2), transparent 44%),
    radial-gradient(circle at 84% -18%, rgba(255, 215, 0, 0.18), transparent 48%),
    linear-gradient(170deg, rgba(2, 8, 18, 0.88), rgba(3, 10, 21, 0.95));
}

.line-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(0, 153, 255, 0.08) 34%, transparent 70%),
    linear-gradient(154deg, transparent 0%, rgba(255, 215, 0, 0.08) 42%, transparent 82%),
    repeating-linear-gradient(
      90deg,
      rgba(120, 160, 220, 0.03) 0,
      rgba(120, 160, 220, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
}

.container {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #b8cced;
}

.section-tag::before {
  content: "";
  width: 0.76rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold-strong));
}

.command-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(140deg, rgba(8, 19, 38, 0.95), rgba(16, 31, 57, 0.88));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 26px rgba(255, 215, 0, 0.1);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.command-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
}

.command-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 150, 255, 0.7), rgba(255, 215, 0, 0.95), rgba(0, 150, 255, 0.7));
}

.command-bar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
  transition: min-height var(--ease), padding var(--ease);
}

.nav-shell {
  width: min(1120px, 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.command-header.is-scrolled {
  background: linear-gradient(140deg, rgba(7, 16, 32, 0.97), rgba(14, 27, 49, 0.94));
  border-bottom-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 150, 255, 0.14);
}

.command-header.is-scrolled .command-bar {
  min-height: 70px;
  padding: 0.38rem 0;
}

.command-header.is-scrolled .nav-shell {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 153, 255, 0.32);
  background: linear-gradient(120deg, rgba(7, 15, 30, 0.82), rgba(10, 20, 38, 0.76));
  box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.nav-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.12);
  color: #f5e8bc;
  font-family: "Oxanium", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.nav-label::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe897 12%, #a97828 90%);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.55);
}

.command-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
}

.command-nav a {
  text-decoration: none;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.56rem 0.15rem;
  border-radius: 0;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color var(--ease), transform var(--ease), text-shadow var(--ease), background var(--ease), letter-spacing var(--ease);
}

.command-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -130%;
  width: 120%;
  background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.16), transparent);
  transition: left 540ms ease;
}

.command-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.92);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.command-nav a:hover,
.command-nav a:focus-visible {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(255, 215, 0, 0.32);
  transform: translateY(-1px);
  letter-spacing: 0.095em;
}

.command-nav a:hover::before,
.command-nav a:focus-visible::before {
  left: 125%;
}

.command-nav a:hover::after,
.command-nav a:focus-visible::after,
.command-nav a.is-active::after {
  transform: scaleX(1);
}

.command-nav a.is-active {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.35);
}

.nav-cta {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f1606;
  border-radius: 999px;
  border: 1px solid rgba(255, 236, 168, 0.7);
  background: linear-gradient(135deg, #f1cb64, #d9a93f);
  padding: 0.68rem 1.2rem;
  box-shadow: 0 10px 24px rgba(174, 125, 30, 0.34);
  white-space: nowrap;
  transition: transform var(--ease), filter var(--ease), box-shadow var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(174, 125, 30, 0.44);
}

main {
  display: grid;
  gap: 1rem;
  padding: 1.3rem 0 2.4rem;
}

.hero-command,
.download-section,
.intel-section,
.board-section {
  position: relative;
}

.panel {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--panel-border);
  background: linear-gradient(160deg, var(--panel-a), var(--panel-b));
  box-shadow: var(--shadow-lg), inset 0 0 20px rgba(255, 215, 0, 0.05);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(0, 153, 255, 0.52), rgba(255, 215, 0, 0.32), rgba(0, 153, 255, 0.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -55% -12%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 0.95rem;
  align-items: stretch;
}

.hero-core,
.realm-console {
  padding: 1.35rem;
}

.realm-console {
  display: grid;
  gap: 0.72rem;
}

.hero-logo-shell {
  margin-top: 0.85rem;
  width: fit-content;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 150, 255, 0.48);
  background: radial-gradient(circle at 50% 25%, rgba(0, 150, 255, 0.22), rgba(6, 16, 33, 0.52));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36), inset 0 0 20px rgba(255, 215, 0, 0.08);
  animation: drift 5s ease-in-out infinite;
}

.hero-logo {
  width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(255, 215, 0, 0.2));
}

.hero-core h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.3rem, 4.8vw, 3.95rem);
  background: linear-gradient(135deg, #ffd700, #ffe99c 44%, #ffffff 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 3px 12px rgba(255, 215, 0, 0.16);
}

.hero-copy {
  margin-top: 0.72rem;
  color: var(--text-soft);
  max-width: 64ch;
  line-height: 1.55;
  font-size: 0.98rem;
}

.hero-badges {
  margin-top: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  border-radius: 999px;
  border: 1px solid rgba(0, 153, 255, 0.38);
  background: linear-gradient(120deg, rgba(0, 153, 255, 0.18), rgba(12, 24, 43, 0.68));
  color: #dbe8ff;
  font-size: 0.74rem;
  padding: 0.4rem 0.8rem;
}

.hero-points {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.point-block {
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border-soft);
  background: linear-gradient(150deg, rgba(7, 17, 34, 0.76), rgba(12, 23, 42, 0.62));
  padding: 0.8rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.point-block:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.44);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
  background: linear-gradient(150deg, rgba(9, 21, 42, 0.84), rgba(14, 28, 49, 0.68));
}

.point-block h3 {
  color: #f2dc99;
  font-size: 1.22rem;
}

.point-block p {
  margin-top: 0.4rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.42;
}

.action {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.7rem 1.02rem;
  border: 1px solid transparent;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.action-primary {
  color: #231705;
  border-color: rgba(255, 241, 204, 0.62);
  background: linear-gradient(130deg, #f0ca65, #dba63d);
  box-shadow: 0 10px 22px rgba(169, 121, 28, 0.3);
}

.action-ghost {
  color: #ddeaff;
  border-color: rgba(0, 153, 255, 0.42);
  background: rgba(0, 153, 255, 0.14);
}

.action:hover {
  transform: translateY(-1px);
}

.console-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.status-rack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  padding: 0.42rem 0.96rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 153, 255, 0.34);
  background: rgba(10, 20, 38, 0.7);
  box-shadow: inset 0 0 14px rgba(255, 215, 0, 0.05);
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.status-indicator {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}

.status-indicator.online {
  background: radial-gradient(circle, #69f7b5, #21b76f);
  box-shadow: 0 0 14px rgba(54, 222, 139, 0.72);
}

.status-indicator.offline {
  background: radial-gradient(circle, #ff8585, #d93030);
  box-shadow: 0 0 14px rgba(255, 91, 91, 0.72);
}

.status-text {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f4e2ae;
}

.console-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.console-stat {
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border-soft);
  background: linear-gradient(145deg, rgba(8, 17, 34, 0.78), rgba(12, 23, 42, 0.62));
  padding: 0.56rem 0.62rem;
  display: grid;
  gap: 0.22rem;
}

.console-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.console-stat strong {
  font-size: 0.85rem;
  color: #e4efff;
  font-weight: 700;
}

.discord-widget-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 153, 255, 0.38);
  background: linear-gradient(150deg, rgba(8, 17, 34, 0.82), rgba(11, 21, 40, 0.72));
  padding: 0.72rem;
  min-height: 370px;
  display: grid;
  gap: 0.55rem;
}

.discord-widget-card iframe {
  border: 0;
  border-radius: 12px;
  width: 100%;
  min-height: 320px;
  background: rgba(8, 14, 28, 0.9);
}

.download-head {
  margin-bottom: 0.58rem;
}

.download-head h2 {
  margin-top: 0.3rem;
  font-size: 2rem;
  color: #f3dfab;
}

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

.download-card {
  text-decoration: none;
  color: inherit;
}

.download-card p {
  margin-top: 0.38rem;
  color: var(--text-soft);
  line-height: 1.43;
  font-size: 0.88rem;
}

.download-card ul {
  margin-top: 0.64rem;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.download-card li {
  color: #ccddf6;
  font-size: 0.84rem;
}

.download-card li::before {
  content: "> ";
  color: #8ec5ff;
}

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

.intel-card,
.download-card,
.leaderboard,
.community-feed {
  padding: 1rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.intel-card:hover,
.download-card:hover,
.leaderboard:hover,
.community-feed:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.38);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.36), inset 0 0 20px rgba(255, 215, 0, 0.06);
}

.intel-card h3,
.download-card h3,
.board-head h3 {
  color: #f3deaa;
}

.intel-card h3 {
  font-size: 1.18rem;
}

.intel-card p {
  margin-top: 0.44rem;
  color: var(--text-soft);
  line-height: 1.45;
  font-size: 0.87rem;
}

.board-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.2fr;
  gap: 0.8rem;
}

.board-head h3 {
  margin-top: 0.3rem;
  font-size: 1.45rem;
}

.rank-list {
  list-style: none;
  margin-top: 0.65rem;
  display: grid;
  gap: 0.44rem;
}

.rank-list li {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 153, 255, 0.34);
  background: linear-gradient(135deg, rgba(8, 17, 34, 0.84), rgba(12, 24, 44, 0.68));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.58rem;
}

.rank-number {
  color: #84c4ff;
  font-weight: 700;
  font-size: 0.79rem;
}

.rank-name {
  color: #e0ebff;
  font-weight: 700;
  font-size: 0.86rem;
}

.rank-score {
  color: #f2dfb0;
  font-weight: 700;
  font-size: 0.79rem;
}

.discord-messages {
  margin-top: 0.64rem;
  display: grid;
  gap: 0.48rem;
}

.discord-message {
  border-radius: var(--radius-md);
  border-left: 3px solid rgba(0, 153, 255, 0.56);
  border-top: 1px solid rgba(0, 153, 255, 0.24);
  border-right: 1px solid rgba(0, 153, 255, 0.24);
  border-bottom: 1px solid rgba(0, 153, 255, 0.24);
  background: linear-gradient(120deg, rgba(8, 17, 34, 0.82), rgba(12, 24, 44, 0.68));
  display: flex;
  gap: 0.58rem;
  padding: 0.56rem;
  transition: transform var(--ease), border-left-color var(--ease);
}

.discord-message:hover {
  transform: translateX(2px);
  border-left-color: rgba(255, 215, 0, 0.62);
}

.discord-message.discord-error {
  border-left-color: rgba(255, 91, 91, 0.82);
}

.message-avatar {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.79rem;
  font-weight: 700;
  color: #f3dfab;
  border: 1px solid rgba(255, 215, 0, 0.42);
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.3), rgba(10, 19, 36, 0.56));
}

.message-content {
  flex: 1;
  display: grid;
  gap: 0.16rem;
}

.message-author {
  color: #f2dfaf;
  font-size: 0.83rem;
  font-weight: 700;
}

.message-text {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.4;
}

.message-time {
  color: var(--text-dim);
  font-size: 0.7rem;
}

footer {
  margin-top: 0.8rem;
  padding: 1.2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.86), rgba(4, 9, 18, 0.94));
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.45), transparent);
}

footer p {
  color: #96afd2;
  font-size: 0.82rem;
}

#rulesModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 7, 15, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--ease);
}

#rulesModal .modal-content {
  width: min(880px, 100%);
  max-height: 84vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 153, 255, 0.36);
  background: linear-gradient(160deg, rgba(11, 23, 44, 0.95), rgba(7, 16, 32, 0.96));
  box-shadow: var(--shadow-lg), inset 0 0 20px rgba(255, 215, 0, 0.08);
  padding: 1.2rem;
  position: relative;
}

#rulesModal .modal-content h2 {
  font-size: 1.7rem;
  color: #f3dfab;
}

#rulesModal .modal-content ul {
  margin-top: 0.7rem;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.5rem;
}

#rulesModal .modal-content li {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.42;
}

#rulesModal .modal-content .close {
  position: absolute;
  top: 0.45rem;
  right: 0.72rem;
  font-size: 1.95rem;
  color: #f2dfaf;
  cursor: pointer;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .command-bar {
    min-height: auto;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.56rem;
    padding: 0.18rem 0;
  }

  .command-header.is-scrolled .nav-shell {
    border-radius: var(--radius-lg);
    padding: 0.5rem;
  }

  .nav-label {
    width: fit-content;
  }

  .hero-layout,
  .intel-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .container {
    width: min(1240px, calc(100% - 1rem));
  }

  .command-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .command-nav a {
    flex: 1 1 calc(50% - 0.45rem);
    text-align: center;
    padding-inline: 0.4rem;
  }

  .nav-cta,
  .action {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-points,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .console-title-row {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .console-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    width: 100%;
    gap: 0.42rem;
  }

  .nav-label {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
  }

  .hero-core,
  .realm-console,
  .intel-card,
  .download-card,
  .leaderboard,
  .community-feed {
    padding: 0.9rem;
  }

  .hero-core h1 {
    font-size: 2.08rem;
  }

  #rulesModal .modal-content h2 {
    font-size: 1.35rem;
  }
}
