@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  font-family: "Inter", sans-serif;
  color: #e8edf5;
  background: #030811;
  font-synthesis: none;
  --bg: #030811;
  --panel: rgba(4, 15, 27, 0.94);
  --panel-soft: rgba(7, 20, 34, 0.9);
  --border: rgba(132, 153, 178, 0.32);
  --border-soft: rgba(132, 153, 178, 0.18);
  --silver: #e5ebf4;
  --muted: #aab5c5;
  --blue: #85b8ff;
  --blue-deep: #0a3f82;
  --gold: #f0b11e;
  --gold-deep: #7d4900;
  --green: #62eb64;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px !important;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 6%, rgba(173, 46, 10, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(12, 82, 153, 0.11), transparent 31rem),
    #030811;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 50px;
  border-top: 1px solid rgba(166, 182, 205, 0.28);
  border-bottom: 1px solid rgba(114, 140, 173, 0.28);
  background: rgba(2, 7, 15, 0.94);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  width: min(1400px, calc(100% - 36px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-wordmark {
  display: none;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: 100%;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 96px;
  padding: 0 16px;
  color: #d9e0e9;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.main-nav a > i {
  width: 1.05em;
  color: #65adff;
  font-size: 0.86rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(62, 147, 255, 0.42);
}

.main-nav a:nth-child(5) > i {
  color: #65d872;
  text-shadow: 0 0 10px rgba(73, 211, 91, 0.42);
}

.main-nav a:nth-child(7) > i {
  color: #e7bc5a;
  text-shadow: 0 0 10px rgba(231, 188, 90, 0.38);
}

.main-nav .mobile-account-link {
  display: none;
}

.main-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 2px;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  background: linear-gradient(90deg, transparent, #60a8ff, transparent);
  transition: 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a:first-child::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  margin-left: auto;
  display: flex;
  gap: 13px;
}

.header-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid;
  border-radius: 3px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.header-register {
  border-color: #9e6500;
  background: linear-gradient(#7f4c00, #3d2300);
  box-shadow: inset 0 0 18px rgba(242, 173, 29, 0.13);
}

.header-register svg {
  color: #ffc348;
}

.header-login {
  border-color: #164f82;
  background: linear-gradient(#0a294a, #061424);
}

.header-login svg {
  color: #b9d6ff;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: white;
  background: transparent;
  font-size: 1.25rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 452px;
  padding: 24px 0 14px;
  border-bottom: 1px solid rgba(116, 144, 177, 0.2);
  overflow: hidden;
  background: #030913;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 6, 12, 0.16), rgba(2, 8, 15, 0.7) 50%, rgba(2, 8, 15, 0.32)),
    url("../img/hero-fortress.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 120px;
  content: "";
  background: linear-gradient(transparent, rgba(2, 8, 15, 0.94));
}

.hero-inner {
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(470px, 1.42fr) minmax(255px, 0.7fr) minmax(410px, 1.15fr);
  gap: 10px;
  align-items: stretch;
}

.emblem-stage {
  height: 415px;
  display: grid;
  place-items: center;
}

.emblem-stage img {
  width: min(100%, 620px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.78));
}

.server-summary {
  display: grid;
  align-content: center;
  gap: 8px;
}

.summary-card,
.castle-card,
.event-panel,
.content-panel,
.login-panel,
.utility-panel {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(5, 16, 29, 0.96), rgba(2, 10, 19, 0.94));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.025);
}

.summary-card {
  padding: 11px 18px;
}

.stat-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.stat-row:last-child {
  border-bottom: 0;
}

.stat-row > svg,
.stat-row > i {
  width: 26px;
  color: #b9c4d3;
  font-size: 1.35rem;
}

.stat-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-row span {
  color: #e8ebef;
  font-size: 0.84rem;
}

.stat-row strong {
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 500;
  text-transform: lowercase;
}

.castle-card {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 17px;
}

.castle-card > svg,
.castle-card > i {
  width: 46px;
  color: #d29d48;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.7));
  font-size: 2.9rem;
}

.castle-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.castle-card span,
.section-title h2,
.panel-heading-row h2 {
  font-family: "Cinzel", serif;
}

.castle-card span {
  color: #8ab8fa;
  font-size: 0.95rem;
}

.castle-card strong {
  font-size: 0.8rem;
  font-weight: 500;
}

.castle-card em {
  color: var(--green);
  font-size: 0.75rem;
  font-style: normal;
}

.event-panel {
  min-height: 415px;
  padding: 10px 16px 8px;
}

.panel-heading-row {
  height: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-soft);
}

.panel-heading-row h2 {
  margin: 0;
  color: #bed7ff;
  font-size: 0.97rem;
  font-weight: 500;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 7px;
  border: 1px solid #1f5686;
  border-radius: 3px;
  color: #bbd8fb;
  background: rgba(7, 37, 66, 0.55);
  font-size: 0.63rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54e568;
  box-shadow: 0 0 8px #54e568;
}

.event-list {
  display: flex;
  flex-direction: column;
  max-height: 470px;
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-color: #2d608b #06101a;
  scrollbar-width: thin;
}

.event-list::-webkit-scrollbar { width: 7px; }
.event-list::-webkit-scrollbar-track { background: #06101a; }
.event-list::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #2d608b;
}

.event-row {
  min-height: 35px;
  display: grid;
  grid-template-columns: 34px minmax(130px, 1fr) 88px 83px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}

.event-row:last-child {
  border-bottom: 0;
}

.event-icon {
  width: 24px;
  font-size: 1.18rem;
  filter: drop-shadow(0 0 5px currentColor);
}

.event-name {
  color: #f0f2f5;
  font-size: 0.84rem;
}

.event-status {
  color: #aeb8c5;
  font-size: 0.68rem;
  text-align: right;
}

.event-countdown {
  color: #f2f4f8;
  font-size: 0.96rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.event-red { color: #ff443d; }
.event-purple { color: #c883ff; }
.event-orange { color: #f06525; }
.event-gold { color: #ffc126; }
.event-silver { color: #d8dce4; }
.event-green { color: #83cc35; }
.event-cyan { color: #4fc8ca; }
.event-blue { color: #67a9ff; }

.silver-donation-intro {
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(92, 157, 216, 0.28);
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(9, 36, 63, 0.96), rgba(4, 15, 27, 0.98));
}

.silver-donation-kicker {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.silver-donation-intro h2 {
  margin: 7px 0 8px;
  color: #edf5ff;
  font-size: 1.24rem;
}

.silver-donation-intro p,
.silver-payment-card p {
  margin: 0;
  color: #b9c7d6;
  font-size: 0.78rem;
  line-height: 1.55;
}

.silver-donation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.silver-payment-card {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid #263c51;
  border-radius: 6px;
  background: linear-gradient(160deg, #091725, #030b13);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.silver-payment-card.paypal { border-top: 2px solid #3e82d7; }
.silver-payment-card.mercadopago { border-top: 2px solid #1aa8e5; }
.silver-payment-card.astropay { border-top: 2px solid #8f62f0; }

.silver-payment-badge {
  min-width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 0 11px;
  border: 1px solid #34526d;
  border-radius: 8px;
  color: #eef7ff;
  background: #0e2840;
  font-size: 1.15rem;
  font-weight: 900;
}

.silver-payment-card h3 {
  margin: 0 0 7px;
  color: white;
  font-size: 1.04rem;
}

.silver-payment-action {
  width: 100%;
  min-height: 36px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 1px solid #2d6593;
  border-radius: 4px;
  color: #eaf5ff;
  background: linear-gradient(#145187, #0a3155);
  font-size: 0.75rem;
  font-weight: 700;
}

.silver-payment-action:hover {
  color: white;
  filter: brightness(1.16);
}

.silver-donation-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 13px 16px;
  border: 1px solid rgba(75, 160, 106, 0.3);
  color: #6dd18a;
  background: rgba(11, 47, 28, 0.42);
}

.silver-donation-note div { display: grid; gap: 2px; }
.silver-donation-note span { color: #b9c7c1; font-size: 0.72rem; }

.silver-guide-subtitle {
  margin: 22px 0 11px;
  color: #d9e8f8;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .silver-donation-grid { grid-template-columns: 1fr; }
  .silver-payment-card { min-height: 190px; }
}

.quick-actions {
  width: min(1400px, calc(100% - 36px));
  min-height: 52px;
  margin: 8px auto 10px;
  padding: 5px 16px;
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.05fr 0.72fr 0.72fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(3, 12, 22, 0.95);
}

.action,
.social-action {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 3px;
  font-weight: 500;
}

.action {
  border: 1px solid;
}

.action-gold {
  border-color: #d28c00;
  background: linear-gradient(120deg, #b27000, #683e00);
}

.action-blue {
  border-color: #1a5fa9;
  background: linear-gradient(120deg, #174e94, #09234c);
}

.action-neutral {
  border-color: #5e6874;
  background: linear-gradient(120deg, #262b31, #15191e);
}

.social-action {
  border-left: 1px solid var(--border-soft);
  color: #e4e9f2;
}

.social-action:first-of-type svg {
  color: #7289da;
}

.social-action:last-child svg {
  color: #39d65c;
}

.page-content {
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
}

.primary-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.64fr 0.85fr;
  gap: 10px;
  align-items: stretch;
}

.content-panel,
.login-panel,
.utility-panel {
  padding: 13px 15px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.section-title svg,
.section-title i {
  color: #c5ceda;
}

.section-title h2 {
  margin: 0;
  color: #dfe8f6;
  font-size: 1rem;
  font-weight: 500;
}

.compact-title h2 {
  font-size: 0.92rem;
}

.featured-news {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) 1fr;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}

.featured-news > img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border: 1px solid rgba(211, 157, 68, 0.23);
  border-radius: 4px;
}

.featured-news > div {
  align-self: center;
}

.eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-news h3,
.news-row h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.featured-news p,
.news-row p {
  margin: 0;
  color: #bdc5d0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.text-button,
.panel-link,
.vote-panel button,
.modal-primary {
  border: 1px solid #334657;
  border-radius: 2px;
  color: #e0e7ef;
  background: #07121e;
  cursor: pointer;
}

.text-button {
  margin-top: 7px;
  padding: 5px 12px;
  font-size: 0.72rem;
}

.news-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 13px;
  align-items: center;
  padding-top: 8px;
}

.news-row img {
  width: 86px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(211, 157, 68, 0.18);
  border-radius: 3px;
}

.news-row h3 {
  font-size: 0.76rem;
  font-weight: 500;
}

.news-row p {
  font-size: 0.66rem;
}

.news-row .text-button {
  margin: 0;
}

.login-panel form {
  display: grid;
  gap: 8px;
}

.login-panel label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.login-panel input {
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid #293e52;
  border-radius: 3px;
  outline: 0;
  color: white;
  background: #020b14;
}

.login-panel input:focus {
  border-color: #3373af;
  box-shadow: 0 0 0 2px rgba(51, 115, 175, 0.14);
}

.login-panel form button {
  min-height: 32px;
  border: 1px solid #a46d00;
  border-radius: 3px;
  color: white;
  background: linear-gradient(#996000, #4a2c00);
  cursor: pointer;
}

.login-panel > a {
  display: block;
  margin-top: 8px;
  color: #87b2eb;
  font-size: 0.68rem;
  text-align: center;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
}

.tab-list button,
.tab-list a {
  min-height: 34px;
  border: 1px solid #283849;
  color: #b7bfca;
  background: #030c16;
  cursor: pointer;
}

.tab-list a {
  display: grid;
  place-items: center;
}

.tab-list button.is-active,
.tab-list a.is-active {
  border-color: #225da0;
  color: white;
  background: linear-gradient(#154783, #0b2853);
}

.ranking-empty {
  min-height: 95px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-content: center;
  color: #a8b1bd;
}

.ranking-empty svg {
  grid-row: span 2;
  align-self: center;
  color: #7e8998;
  font-size: 2rem;
}

.ranking-empty p {
  margin: 4px 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
}

.panel-link {
  display: block;
  padding: 6px;
  font-size: 0.7rem;
  text-align: center;
}

.server-info-panel ul {
  margin: 13px 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.server-info-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c8d0dc;
  font-size: 0.84rem;
}

.server-info-panel li svg {
  width: 19px;
  color: #6f7b8a;
}

.utility-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.25fr 0.93fr 1fr;
  gap: 10px;
}

.utility-panel {
  min-height: 130px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.guide-card {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--border-soft);
}

.guide-card:last-child {
  border-right: 0;
}

.guide-card > svg,
.guide-card > i {
  color: #c1924a;
  font-size: 2rem;
}

.guide-card span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.guide-card strong {
  font-size: 0.72rem;
  font-weight: 500;
}

.guide-card small {
  color: #aeb7c3;
  font-size: 0.65rem;
}

.vote-panel,
.progress-panel,
.donation-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-hero-icon {
  flex: 0 0 auto;
  width: 50px;
  color: #d99c30;
  filter: drop-shadow(0 0 9px rgba(230, 155, 39, 0.25));
  font-size: 3rem;
}

.vote-panel h2,
.progress-panel h2,
.donation-panel h2 {
  margin: 0 0 7px;
  color: #ffc334;
  font-family: "Cinzel", serif;
  font-size: 0.96rem;
}

.donation-panel h2 {
  color: #9bc5ff;
}

.vote-panel p,
.progress-panel p,
.donation-panel p {
  margin: 0 0 8px;
  color: #b9c2ce;
  font-size: 0.72rem;
  line-height: 1.45;
}

.vote-panel button,
.donation-panel span {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.7rem;
}

.donation-panel span {
  border: 1px solid #334657;
  border-radius: 2px;
  background: #07121e;
}

.footer {
  margin-top: 10px;
  border-top: 1px solid rgba(121, 142, 168, 0.25);
  background: #02060c;
}

body.silver-body .footer {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin-right: 0;
  margin-left: 0;
  float: none;
}

.footer-inner {
  width: min(1400px, calc(100% - 36px));
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.7fr;
  gap: 24px;
  align-items: center;
  color: #929dab;
  font-size: 0.64rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: #c5ccd5;
}

.footer-inner p {
  margin: 0;
  line-height: 1.45;
}

.footer-inner > span {
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  max-width: 380px;
  padding: 13px 16px;
  border: 1px solid #2c679f;
  border-radius: 5px;
  color: #e8f2ff;
  background: rgba(5, 21, 37, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  font-size: 0.78rem;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 4, 10, 0.78);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid #3a526b;
  border-radius: 7px;
  background: linear-gradient(145deg, #0a1b2c, #030b14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.login-modal-card {
  position: relative;
  width: min(390px, 100%);
}

.login-modal-card .login-panel {
  padding: 24px;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
}

.modal-card p {
  color: #bec8d5;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  color: #bec8d5;
  background: transparent;
  cursor: pointer;
}

.modal-primary {
  padding: 8px 18px;
}

.event-icon,
.stat-row > i,
.castle-card > i,
.section-title i,
.guide-card > i,
.utility-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.silver-live-value {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
}

.silver-rank-list {
  min-height: 112px;
  margin: 10px 0 12px;
  padding: 0;
  list-style: none;
}

.silver-rank-list li {
  min-height: 28px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  color: #cbd4df;
  font-size: 0.7rem;
}

.silver-rank-list li:last-child {
  border-bottom: 0;
}

.silver-rank-list b {
  color: #d6a84e;
  text-align: center;
}

.silver-rank-list a {
  color: #e8edf5;
}

.silver-rank-list span:last-child {
  color: #8fb9ef;
  font-variant-numeric: tabular-nums;
}

.silver-module-hero {
  min-height: 190px;
  padding: 18px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(2, 8, 15, 0.48), rgba(2, 8, 15, 0.9)),
    url("../img/hero-fortress.png") center / cover no-repeat;
}

.silver-module-hero img {
  width: min(380px, 82vw);
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.76));
}

.silver-module-shell {
  width: min(1120px, calc(100% - 28px));
  min-height: 520px;
  margin: 18px auto;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.silver-module-shell .panel,
.silver-module-shell .modules_cont {
  color: #d8e0eb;
  background: rgba(4, 15, 27, 0.94);
}

.silver-module-shell .panel-heading {
  border-color: var(--border);
  color: #e8edf5;
  background: rgba(10, 35, 59, 0.78);
}

.silver-module-shell input,
.silver-module-shell select,
.silver-module-shell textarea {
  border-color: #2d455c;
  color: #e8edf5;
  background: #030d17;
}

.silver-module-shell .btn-primary {
  border-color: #265f9b;
  background: #0d467f;
}

.silver-download-tabs {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.silver-download-tabs a {
  min-height: 48px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #2d455c;
  border-radius: 4px;
  color: #bfc9d7;
  background: rgba(3, 13, 23, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.silver-download-tabs a:hover,
.silver-download-tabs a:focus-visible {
  border-color: #3e78b3;
  color: white;
}

.silver-download-tabs a.is-active {
  border-color: #3479bd;
  color: white;
  background: linear-gradient(180deg, #154783, #0a274d);
  box-shadow: inset 0 0 22px rgba(83, 166, 255, 0.14), 0 0 18px rgba(42, 111, 181, 0.14);
}

.silver-download-tabs i {
  color: #8fc2ff;
  font-size: 1rem;
}

.silver-download-tabs a:last-child i {
  color: #7ee28c;
}

.silver-android-download .panel-body {
  min-height: 180px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.silver-download-platform-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95, 196, 111, 0.45);
  border-radius: 50%;
  color: #7ee28c;
  background: rgba(28, 88, 42, 0.16);
  font-size: 2rem;
}

.silver-android-download p {
  margin: 8px 0 0;
  color: #d5dde8;
  line-height: 1.55;
}

.silver-android-download .silver-download-note {
  color: #9facbc;
  font-size: 0.78rem;
}

@media (max-width: 560px) {
  .silver-download-tabs {
    grid-template-columns: 1fr;
  }

  .silver-android-download .panel-body {
    align-items: flex-start;
    flex-direction: column;
  }

  .silver-module-shell .panel-downloads .table,
  .silver-module-shell .panel-downloads .table tbody,
  .silver-module-shell .panel-downloads .table tr,
  .silver-module-shell .panel-downloads .table td {
    width: 100% !important;
    display: block;
  }

  .silver-module-shell .panel-downloads .table tr {
    padding: 8px 0;
  }

  .silver-module-shell .panel-downloads .table td {
    padding: 9px 4px;
    border-top: 0;
    text-align: left;
  }

  .silver-module-shell .panel-downloads .table td.text-center {
    text-align: left;
  }
}

.silver-page-heading {
  margin: -2px 0 20px;
  padding: 6px 4px 18px;
  border-bottom: 1px solid var(--border);
}

.silver-kicker {
  color: #d9a748;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.silver-page-heading h1 {
  margin: 7px 0 6px;
  color: #f0f4fa;
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.silver-page-heading p,
.silver-content-card p,
.silver-wide-card p,
.silver-guide-section p {
  color: #b9c5d4;
  line-height: 1.65;
}

.silver-info-stats {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.silver-info-stats article {
  min-height: 104px;
  padding: 16px;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: linear-gradient(140deg, rgba(12, 36, 59, 0.95), rgba(4, 14, 25, 0.98));
}

.silver-info-stats i {
  grid-row: span 2;
  align-self: center;
  color: #d9a748;
  font-size: 1.25rem;
}

.silver-info-stats span {
  color: #8999aa;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.silver-info-stats strong {
  color: #edf4ff;
  font-size: 1rem;
}

.silver-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.silver-content-card,
.silver-wide-card,
.silver-guide-section {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(7, 23, 39, 0.96), rgba(3, 12, 22, 0.98));
}

.silver-content-card p,
.silver-wide-card p,
.silver-guide-section p {
  margin: 0 0 13px;
}

.silver-wide-card,
.silver-guide-section {
  margin-top: 12px;
}

.silver-card-title {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.silver-card-title i {
  color: #d9a748;
  font-size: 1.1rem;
}

.silver-card-title h2 {
  margin: 0;
  color: #edf3fa;
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

.silver-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.silver-check-list li {
  position: relative;
  margin: 7px 0;
  padding-left: 21px;
  color: #c3ceda;
  line-height: 1.45;
}

.silver-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #55c985;
  font-weight: 800;
}

.silver-tier-list {
  display: grid;
  gap: 6px;
}

.silver-tier-list span {
  padding: 8px 10px;
  border-left: 2px solid #315a86;
  color: #bdc9d6;
  background: rgba(10, 31, 51, 0.64);
}

.silver-tier-list b {
  display: inline-block;
  width: 34px;
  color: #e1ad4c;
}

.silver-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.silver-guide-nav {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.silver-guide-nav a {
  min-height: 48px;
  padding: 8px;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  color: #cbd5e1;
  background: rgba(8, 26, 44, 0.9);
  text-align: center;
}

.silver-guide-nav a:last-child {
  border-right: 0;
}

.silver-guide-nav a:hover {
  color: #fff;
  background: rgba(16, 53, 88, 0.95);
}

.silver-step-grid,
.silver-event-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.silver-step-grid article,
.silver-event-guide-grid article {
  padding: 15px;
  border: 1px solid rgba(68, 101, 133, 0.55);
  border-radius: 4px;
  background: rgba(4, 17, 30, 0.82);
}

.silver-step-grid b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06111e;
  background: #d4a548;
}

.silver-step-grid h3,
.silver-event-guide-grid h3 {
  margin: 10px 0 6px;
  color: #e9f0f8;
  font-size: 0.87rem;
}

.silver-step-grid p,
.silver-event-guide-grid p {
  margin: 0;
  color: #aebdcc;
  font-size: 0.74rem;
}

.silver-event-guide-grid {
  grid-template-columns: repeat(3, 1fr);
}

.silver-event-guide-grid i {
  color: #d9a748;
  font-size: 1.35rem;
}

.silver-number-list {
  margin: 0 0 15px;
  padding-left: 24px;
}

.silver-number-list li {
  margin: 8px 0;
  padding-left: 5px;
  color: #c2ceda;
  line-height: 1.5;
}

.silver-notice {
  margin-top: 15px;
  padding: 12px 14px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border: 1px solid rgba(50, 121, 178, 0.65);
  border-radius: 4px;
  background: rgba(12, 54, 88, 0.42);
}

.silver-notice i {
  margin-top: 3px;
  color: #73bff4;
}

.silver-notice p {
  margin: 0;
}

.silver-notice-warning {
  border-color: rgba(202, 146, 47, 0.65);
  background: rgba(82, 55, 12, 0.32);
}

.silver-notice-warning i {
  color: #e3ad4b;
}

.silver-command-table {
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
}

.silver-command-table > div {
  min-height: 43px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}

.silver-command-table > div:last-child {
  border-bottom: 0;
}

.silver-command-table code {
  color: #8fc6ff;
  background: transparent;
}

.silver-command-table span,
.silver-muted {
  color: #adbac8;
}

.silver-news-link {
  color: #8dbcf8;
}

.silver-owner-value a {
  color: #f1ca76;
}

.silver-home-only[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .topbar-inner {
    gap: 12px;
  }

  .main-nav {
    gap: 0;
  }

  .main-nav a {
    min-width: auto;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .hero-inner {
    grid-template-columns: minmax(380px, 1.1fr) minmax(230px, 0.67fr) minmax(350px, 1fr);
  }

  .event-row {
    grid-template-columns: 30px minmax(105px, 1fr) 73px 78px;
  }

  .event-status {
    font-size: 0.61rem;
  }

  .primary-grid {
    grid-template-columns: 1.35fr 0.72fr 0.75fr;
  }
}

@media (max-width: 980px) {
  .topbar {
    height: 56px;
  }

  .brand-wordmark,
  .menu-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 55px;
    right: 0;
    left: 0;
    height: auto;
    padding: 10px 18px 18px;
    display: none;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    background: rgba(2, 8, 15, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 42px;
    justify-content: flex-start;
  }

  .main-nav .mobile-account-link {
    min-height: 46px;
    display: flex;
    margin-top: 5px;
    border-top: 1px solid rgba(99, 169, 255, 0.2);
    color: #eef7ff;
  }

  .main-nav .mobile-account-link > i {
    color: #79bcff;
  }

  .main-nav .mobile-logout-link > i {
    color: #f19a9a;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .emblem-stage {
    grid-column: span 2;
    height: 360px;
  }

  .server-summary {
    align-content: stretch;
  }

  .event-panel {
    min-height: auto;
  }

  .quick-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-action {
    min-height: 34px;
    border-left: 0;
  }

  .primary-grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .server-info-panel {
    grid-column: span 2;
  }

  .server-info-panel ul {
    grid-template-columns: repeat(5, 1fr);
  }

  .utility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guides-panel {
    grid-column: span 2;
  }

  .silver-info-stats,
  .silver-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .silver-event-guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .silver-guide-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .topbar-inner,
  .hero-inner,
  .quick-actions,
  .page-content,
  .footer-inner {
    width: min(100% - 22px, 620px);
  }

  .hero {
    padding-top: 8px;
  }

  .hero-inner {
    display: block;
  }

  .emblem-stage {
    height: 295px;
    padding: 4px 0 10px;
  }

  .emblem-stage img {
    width: 100%;
    max-height: 281px;
  }

  .server-summary {
    margin-bottom: 10px;
  }

  .event-panel {
    padding-inline: 11px;
  }

  .panel-heading-row {
    height: auto;
    min-height: 43px;
    align-items: center;
    gap: 10px;
  }

  .live-badge {
    font-size: 0;
  }

  .live-badge::after {
    content: "En vivo";
    font-size: 0.62rem;
  }

  .event-row {
    min-height: 39px;
    grid-template-columns: 31px minmax(95px, 1fr) auto;
  }

  .event-status {
    display: none;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .primary-grid,
  .utility-grid {
    display: block;
  }

  .content-panel,
  .login-panel,
  .utility-panel {
    margin-bottom: 10px;
  }

  .featured-news {
    grid-template-columns: 1fr;
  }

  .featured-news > img {
    height: 165px;
  }

  .news-row {
    grid-template-columns: 76px 1fr;
  }

  .news-row img {
    width: 76px;
  }

  .news-row .text-button {
    grid-column: 2;
    justify-self: start;
  }

  .server-info-panel ul,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-card {
    border-right: 0;
  }

  .vote-panel,
  .progress-panel,
  .donation-panel {
    min-height: 150px;
  }

  .silver-info-stats,
  .silver-content-grid,
  .silver-step-grid,
  .silver-event-guide-grid,
  .silver-guide-nav {
    grid-template-columns: 1fr;
  }

  .silver-guide-nav a {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .silver-guide-nav a:last-child {
    border-bottom: 0;
  }

  .silver-command-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-inner {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-inner > span {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================================================== */
/* Silver MU — Modelo 2 / Web pública 2026                                   */
/* ========================================================================== */

html,
body.silver-model2 {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.silver-model2 {
  color: #edf4ff;
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 83, 139, 0.17), transparent 34rem),
    linear-gradient(180deg, #020710 0%, #07101c 48%, #020710 100%);
}

.silver-model2 .site-shell {
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

.silver-model2 .topbar {
  height: 68px;
  border-top: 0;
  border-bottom-color: rgba(147, 176, 212, 0.22);
  background: rgba(2, 8, 17, 0.91);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
}

.silver-model2 .topbar-inner {
  width: min(1480px, calc(100% - 44px));
  gap: 18px;
}

.silver-model2 .brand-wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
  color: #f4f7fb;
  font-size: 1.12rem;
  text-shadow: 0 0 24px rgba(170, 211, 255, 0.4);
}

.silver-model2 .brand-wordmark::before {
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 50%;
  background: #74e387;
  box-shadow: 0 0 13px #74e387;
  content: "";
}

.silver-model2 .main-nav {
  gap: 0;
}

.silver-model2 .main-nav a {
  min-width: auto;
  padding: 0 13px;
  color: #aebcce;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.silver-model2 .header-button {
  min-height: 38px;
  padding-inline: 15px;
  border-radius: 7px;
  font-size: 0.78rem;
}

.silver-model2 .hero {
  min-height: 760px;
  padding: 72px 0 46px;
  border-bottom-color: rgba(117, 153, 197, 0.25);
  background: #020710;
}

.silver-model2 .hero::before {
  background:
    linear-gradient(90deg, rgba(1, 5, 12, 0.96) 0%, rgba(2, 8, 17, 0.72) 36%, rgba(2, 8, 17, 0.62) 64%, rgba(1, 5, 12, 0.94) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(1, 6, 14, 0.88)),
    url("../img/silvermu-launcher-background-v2.png") 50% 35% / cover no-repeat;
  filter: saturate(0.9) contrast(1.08);
}

.silver-model2 .hero::after {
  height: 220px;
  background: linear-gradient(transparent, #040b15 84%);
}

.silver-model2 .hero-inner {
  width: min(1480px, calc(100% - 44px));
  grid-template-columns: minmax(430px, 1.2fr) minmax(255px, 0.62fr) minmax(410px, 0.94fr);
  gap: 18px;
  align-items: center;
}

.silver-model2 .model2-intro {
  height: auto;
  min-height: 590px;
  padding: 34px 30px 34px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.silver-model2 .model2-intro img {
  width: min(360px, 78%);
  max-height: 190px;
  margin: 6px 0 2px -12px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 15px 34px rgba(0, 0, 0, 0.7));
}

.model2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #e9b84f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.model2-kicker::before {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e9b84f);
  content: "";
}

.silver-model2 .model2-intro h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  color: #f4f7fc;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.85);
}

.silver-model2 .model2-intro h1 em {
  color: #dca93b;
  font-size: 0.58em;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.silver-model2 .model2-intro > p {
  max-width: 610px;
  margin: 24px 0 20px;
  color: #c0cada;
  font-size: 1.02rem;
  line-height: 1.7;
}

.model2-chips,
.model2-hero-actions,
.vip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model2-chips span {
  padding: 8px 12px;
  border: 1px solid rgba(148, 176, 210, 0.26);
  border-radius: 999px;
  color: #d9e4f2;
  background: rgba(5, 15, 28, 0.78);
  font-size: 0.73rem;
  font-weight: 700;
}

.model2-chips i {
  margin-right: 6px;
  color: #e8b444;
}

.model2-hero-actions {
  margin-top: 26px;
}

.model2-primary,
.model2-secondary {
  min-height: 44px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.model2-primary {
  border: 1px solid #c99020;
  color: #130d03;
  background: linear-gradient(135deg, #f2c35c, #b87813);
  box-shadow: 0 9px 28px rgba(214, 153, 35, 0.22);
}

.model2-secondary {
  border: 1px solid rgba(137, 173, 215, 0.38);
  color: #e7f0fc;
  background: rgba(6, 18, 33, 0.82);
}

.model2-core-cta {
  flex: 1 1 100%;
  min-height: 62px;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(88, 158, 255, 0.88);
  border-radius: 6px;
  color: #f4f8ff;
  text-align: left;
  background: linear-gradient(120deg, rgba(21, 92, 204, 0.96), rgba(4, 29, 72, 0.98));
  box-shadow: 0 12px 34px rgba(35, 108, 222, 0.32), inset 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.model2-core-cta > i:first-child {
  font-size: 1.35rem;
  color: #b9d5ff;
}

.model2-core-cta > i:last-child {
  justify-self: end;
  color: #d9e8ff;
}

.model2-core-cta span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.model2-core-cta strong {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model2-core-cta small {
  color: #bfd1ea;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.model2-core-cta:hover,
.model2-core-cta:focus-visible {
  color: #fff;
  border-color: #9fc5ff;
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(35, 108, 222, 0.45), inset 0 1px rgba(255, 255, 255, 0.16);
}

.model2-primary:hover,
.model2-secondary:hover {
  color: inherit;
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.silver-model2 .server-summary,
.silver-model2 .event-panel {
  align-self: stretch;
  margin-block: 40px;
}

.silver-model2 .summary-card,
.silver-model2 .castle-card,
.silver-model2 .event-panel,
.silver-model2 .content-panel,
.silver-model2 .utility-panel,
.model2-section {
  border-color: rgba(132, 162, 199, 0.25);
  background: linear-gradient(145deg, rgba(6, 18, 32, 0.94), rgba(3, 11, 22, 0.95));
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.silver-model2 .event-panel {
  min-height: 585px;
}

.silver-model2 .event-list {
  max-height: 520px;
}

.silver-model2 .event-row {
  grid-template-columns: 34px minmax(130px, 1fr) 108px 104px;
}

.silver-model2 .event-countdown {
  font-variant-numeric: tabular-nums;
}

.event-list-toggle {
  width: 100%;
  min-height: 40px;
  margin-top: 13px;
  border: 1px solid rgba(120, 165, 218, 0.32);
  border-radius: 6px;
  color: #b9cce3;
  background: rgba(8, 23, 40, 0.88);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.event-list-toggle:hover,
.event-list-toggle:focus-visible {
  border-color: rgba(229, 185, 91, 0.72);
  color: #f1c86f;
  background: rgba(12, 31, 52, 0.96);
}

.silver-model2 .quick-actions {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 44px));
  margin: -30px auto 56px;
  padding: 8px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(133, 165, 204, 0.28);
  border-radius: 10px;
  background: rgba(4, 13, 25, 0.96);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.46);
}

.silver-model2 .quick-actions > a {
  min-height: 48px;
  border-radius: 6px;
  border-left: 0;
}

.silver-model2 .page-content {
  width: min(1380px, calc(100% - 44px));
  padding-bottom: 82px;
}

.silver-model2 .primary-grid {
  gap: 18px;
}

.silver-model2 .news-panel {
  min-height: 690px;
}

.news-state {
  display: inline-block;
  margin-bottom: 5px;
  color: #76e0a1;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-state-progress {
  color: #e8b44f;
}

.ranking-privacy {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(126, 159, 199, 0.18);
  border-radius: 6px;
  color: #90a4bc;
  background: rgba(3, 11, 21, 0.66);
  font-size: 0.68rem;
  line-height: 1.5;
}

.ranking-privacy i {
  margin-right: 7px;
  color: #8cbcff;
}

.model2-section {
  margin-top: 26px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(132, 162, 199, 0.25);
  border-radius: 10px;
}

.model2-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.model2-section h2 {
  margin: 10px 0 12px;
  font-family: "Cinzel", serif;
  color: #f0f4fa;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.model2-section p {
  color: #9eafc2;
  line-height: 1.7;
}

.silver-difference-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(57, 128, 197, 0.13), transparent 22rem),
    linear-gradient(145deg, rgba(6, 18, 32, 0.97), rgba(3, 11, 22, 0.97));
}

.silver-difference-grid,
.silver-reward-grid,
.silver-staff-grid {
  display: grid;
  gap: 16px;
}

.silver-difference-grid,
.silver-reward-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.silver-difference-grid article,
.silver-reward-grid article,
.silver-staff-grid article {
  min-height: 230px;
  padding: 25px;
  border: 1px solid rgba(126, 158, 196, 0.22);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 25, 43, 0.9), rgba(3, 11, 21, 0.92));
}

.silver-difference-grid i,
.silver-reward-grid i {
  margin-bottom: 20px;
  color: #e2b253;
  font-size: 1.65rem;
}

.silver-difference-grid span,
.silver-reward-grid time {
  display: block;
  margin-bottom: 8px;
  color: #7fb7ef;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.silver-difference-grid h3,
.silver-reward-grid h3,
.silver-staff-grid h3 {
  margin: 0 0 10px;
  color: #f0f4fa;
  font-family: "Cinzel", serif;
  font-size: 1.02rem;
}

.silver-difference-grid p,
.silver-reward-grid p,
.silver-staff-grid p {
  margin: 0;
  font-size: 0.78rem;
}

.silver-reward-featured {
  border-color: rgba(190, 217, 247, 0.5) !important;
  box-shadow: inset 0 0 42px rgba(91, 155, 222, 0.1), 0 16px 40px rgba(0, 0, 0, 0.24);
}

.silver-reward-section > .panel-link {
  margin-top: 22px;
}

.silver-staff-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(204, 156, 62, 0.1), transparent 24rem),
    linear-gradient(145deg, rgba(6, 18, 32, 0.97), rgba(3, 11, 22, 0.97));
}

.silver-staff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.silver-staff-grid article {
  min-height: 205px;
}

.silver-staff-grid b {
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 10px;
  display: block;
  border: 1px solid rgba(223, 174, 73, 0.43);
  border-radius: 4px;
  color: #efbd55;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
}

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

.vip-grid article {
  min-height: 230px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(127, 158, 195, 0.2);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 25, 43, 0.88), rgba(3, 11, 21, 0.9));
}

.vip-grid article.vip-featured {
  border-color: rgba(219, 164, 60, 0.55);
  box-shadow: inset 0 0 38px rgba(192, 129, 20, 0.08), 0 16px 40px rgba(0, 0, 0, 0.25);
}

.vip-label {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(223, 174, 73, 0.43);
  border-radius: 4px;
  color: #efbd55;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.vip-grid h3 {
  margin: 22px 0 4px;
  color: #f2f5fa;
  font-family: "Cinzel", serif;
  font-size: 1.12rem;
}

.vip-grid p {
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.vip-status {
  margin-top: auto;
  color: #91a4ba;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vip-actions {
  margin-top: 24px;
}

.migration-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 50%, rgba(194, 137, 32, 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(6, 18, 32, 0.97), rgba(3, 11, 22, 0.97));
}

.migration-copy ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.migration-copy li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  color: #aebdd0;
  font-size: 0.8rem;
}

.migration-copy li i {
  color: #e2ad42;
  text-align: center;
}

.migration-copy li strong {
  color: #ecf1f8;
}

.migration-state {
  min-height: 280px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(214, 164, 66, 0.35);
  border-radius: 50% 50% 10px 10px;
  background: rgba(3, 11, 20, 0.72);
  text-align: center;
}

.migration-state i {
  margin-bottom: 18px;
  color: #dcaa43;
  font-size: 2.3rem;
}

.migration-state strong {
  color: #f2c565;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.migration-state span {
  margin: 9px 0 21px;
  color: #8fa1b6;
  font-size: 0.72rem;
}

.migration-state button {
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid rgba(126, 147, 174, 0.28);
  border-radius: 5px;
  color: #718094;
  background: #08111e;
  cursor: not-allowed;
}

.community-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.community-links a {
  min-height: 110px;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(132, 162, 199, 0.22);
  border-radius: 7px;
  color: #dbe6f4;
  background: rgba(5, 16, 29, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease;
}

.community-links a:hover {
  border-color: rgba(224, 177, 82, 0.52);
  color: white;
  transform: translateY(-3px);
}

.community-links i {
  color: #e2b253;
  font-size: 1.75rem;
}

.silver-model2 .footer {
  border-top: 1px solid rgba(129, 157, 191, 0.2);
  background: #02060d;
}

@media (max-width: 1180px) {
  .silver-difference-grid,
  .silver-reward-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .silver-model2 .topbar-inner {
    width: min(100% - 28px, 1080px);
  }

  .silver-model2 .brand-wordmark {
    min-width: 112px;
    font-size: 0.96rem;
  }

  .silver-model2 .main-nav a {
    padding-inline: 9px;
    font-size: 0.65rem;
  }

  .silver-model2 .header-button {
    padding-inline: 11px;
    font-size: 0.7rem;
  }

  .silver-model2 .hero-inner {
    grid-template-columns: 1.1fr 0.85fr;
  }

  .silver-model2 .model2-intro {
    grid-column: span 2;
    min-height: 460px;
  }

  .silver-model2 .server-summary,
  .silver-model2 .event-panel {
    margin-block: 0;
  }

  .silver-model2 .quick-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .silver-model2 .topbar {
    height: 58px;
  }

  .silver-model2 .topbar-inner {
    width: calc(100% - 22px);
  }

  .silver-model2 .menu-toggle {
    display: inline-flex;
  }

  .silver-model2 .main-nav {
    top: 58px;
  }

  .silver-model2 .header-actions {
    margin-left: 0;
  }

  .silver-model2 .header-button {
    min-width: 38px;
    padding-inline: 9px;
    font-size: 0;
  }

  .silver-model2 .header-button i {
    font-size: 0.86rem;
  }

  .silver-model2 .hero {
    min-height: auto;
    padding: 24px 0 48px;
  }

  .silver-model2 .hero-inner {
    width: min(100% - 24px, 720px);
    display: block;
  }

  .silver-model2 .model2-intro {
    min-height: 570px;
    padding: 34px 0;
    justify-content: flex-end;
  }

  .silver-model2 .model2-intro h1 {
    font-size: clamp(2.85rem, 13vw, 5rem);
  }

  .silver-model2 .server-summary,
  .silver-model2 .event-panel {
    margin-top: 14px;
  }

  .silver-model2 .event-panel {
    min-height: 540px;
  }

  .silver-model2 .event-row {
    grid-template-columns: 32px minmax(120px, 1fr) 96px;
  }

  .silver-model2 .event-status {
    display: none;
  }

  .silver-model2 .quick-actions {
    width: min(100% - 24px, 720px);
    margin-top: -24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .silver-model2 .page-content {
    width: min(100% - 24px, 720px);
  }

  .vip-grid,
  .silver-difference-grid,
  .silver-reward-grid,
  .silver-staff-grid,
  .migration-section,
  .community-section {
    grid-template-columns: 1fr;
  }

  .migration-state {
    min-height: 220px;
    border-radius: 8px;
  }
}

@media (max-width: 520px) {
  .silver-model2 .brand-wordmark {
    min-width: auto;
    font-size: 0.84rem;
  }

  .silver-model2 .model2-intro {
    min-height: 520px;
  }

  .silver-model2 .model2-intro img {
    width: 76%;
    max-height: 145px;
  }

  .silver-model2 .model2-intro > p {
    font-size: 0.9rem;
  }

  .model2-hero-actions,
  .vip-actions {
    width: 100%;
  }

  .model2-primary,
  .model2-secondary {
    width: 100%;
  }

  .silver-model2 .quick-actions {
    grid-template-columns: 1fr;
  }

  .model2-section {
    padding: 25px 18px;
  }

  .community-links {
    grid-template-columns: 1fr;
  }

  .community-links a {
    min-height: 72px;
    flex-direction: row;
  }
}
