:root {
  --bg: #02050b;
  --bg2: #08111c;
  --panel: rgba(7, 12, 20, 0.96);
  --line: rgba(86, 146, 219, 0.34);
  --line-soft: rgba(120, 176, 245, 0.16);
  --gold: #67a8ff;
  --gold2: #dde6f0;
  --red: #315a8c;
  --red2: #4b83c9;
  --text: #eef4fb;
  --muted: #9aa8b9;
  --green: #70c7ff;
  --blue: #63b3ff;
  --purple: #8fa8d8;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.40);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 78% 12%, rgba(69, 126, 208, 0.18), transparent 18%),
    radial-gradient(circle at 20% 24%, rgba(99, 179, 255, 0.16), transparent 16%),
    linear-gradient(180deg, #030405 0%, #050608 100%);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }


.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(4, 5, 7, 0.97);
  border-bottom: 1px solid var(--line-soft);
}

.topbar-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo,
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: #dde6f0;
  text-transform: uppercase;
  font-style: italic;
}

.logo span,
.footer-logo span { color: #63b3ff; }

.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.menu a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: #dce6f0;
}

.menu a:hover,
.menu a.active { color: var(--gold2); }

.play-now {
  min-width: 185px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #446f9e, #223754);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 10px 10px;
}

.play-now span { font-weight: 700; font-size: 1.2rem; }
.play-now small { font-weight: 600; opacity: 0.95; }

.mobile-menu-toggle{
  display:none;
  width:52px;
  height:52px;
  border:1px solid rgba(120, 176, 245, 0.22);
  background:rgba(255,255,255,0.03);
  border-radius:10px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}

.mobile-menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--gold2);
  border-radius:999px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(4,6,10,0.92) 0%, rgba(4,6,10,0.72) 33%, rgba(4,6,10,0.22) 70%, rgba(4,6,10,0.40) 100%),
    url('assets/hero-reference.png') center top / cover no-repeat;
  filter: saturate(1.08) brightness(0.72) contrast(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 27%, rgba(99, 179, 255, 0.28), transparent 18%),
    radial-gradient(circle at 85% 65%, rgba(49, 90, 140, 0.18), transparent 15%),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.26));
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.hero-copy { padding: 30px 0 70px; max-width: 600px; }

.hero-kicker {
  color: var(--gold2);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 0.88;
  font-size: clamp(5.2rem, 10vw, 10rem);
  color: #eef4fb;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-title span { color: #63b3ff; }

.hero-subtitle {
  text-transform: uppercase;
  font-size: 2.25rem;
  color: #c2cfde;
  font-weight: 700;
}

.hero-text {
  margin-top: 8px;
  font-size: 1.45rem;
  color: #c2cfde;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
}

.btn {
  min-width: 250px;
  min-height: 76px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.35), 0 16px 28px rgba(0,0,0,0.26);
}

.btn strong { display: block; font-size: 1.1rem; line-height: 1; }
.btn small { display: block; font-size: 0.9rem; opacity: 0.95; margin-top: 4px; }

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  font-size: 1.5rem;
}

.btn-red { background: linear-gradient(180deg, var(--red2), #315a8c); }
.btn-gold { background: linear-gradient(180deg, #5f7690, #34485f); color: #eef4fb; }

.hero-note { margin-top: 14px; color: #00faff; font-size: 1.16rem; }

.hero-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-character {
  width: min(520px, 100%);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
}

.hero-flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-flare-red {
  width: 240px;
  height: 240px;
  right: 60px;
  top: 70px;
  background: rgba(63, 125, 224, 0.5);
}

.hero-flare-gold {
  width: 180px;
  height: 180px;
  left: 80px;
  bottom: 130px;
  background: rgba(120, 176, 245, 0.45);
}


.stats-section {
  position: relative;
  z-index: 5;
  margin-top: -44px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(4, 6, 9, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
  padding: 18px 14px 15px;
  border-right: 1px solid var(--line-soft);
}

.stat-item:last-child { border-right: 0; }

.stat-label {
  display: block;
  font-size: 0.86rem;
  color: #0a9dff;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item strong {
  display: block;
  color: var(--gold2);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item small {
  color: #1193f0;
  text-transform: uppercase;
}

.status-item strong { color: var(--green); }


.page-main {
  padding: 34px 0 0;
  background:
    radial-gradient(circle at left top, rgba(5, 23, 53, 0.18), transparent 18%),
    linear-gradient(180deg, #02050b, #050608);
}

.section { padding: 22px 0 14px; }

.section-title {
  text-align: center;
  text-transform: uppercase;
  color: var(--gold2);
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 20px;
}

.section-title.left { text-align: left; }

.decorated {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.decorated.left { justify-content: flex-start; }

.decorated::before,
.decorated::after {
  content: '✦';
  color: var(--gold);
  font-size: 1rem;
}

.content-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.panel-card {
  background: rgba(8, 9, 12, 0.96);
  min-height: 166px;
  text-align: center;
  padding: 26px 18px 22px;
  border-right: 1px solid var(--line-soft);
}

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

.panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.45rem;
  color: var(--gold2);
  border: 1px solid var(--line-soft);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.panel-icon.icon-red { color: #220bd0; }

.panel-card h3 {
  text-transform: uppercase;
  color: var(--gold2);
  font-size: 1.38rem;
  margin-bottom: 10px;
}

.panel-card p {
  color: var(--muted);
  line-height: 1.35;
  font-size: 1rem;
}


.media-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 18px;
}

.media-grid .content-box { padding: 18px; }

.gallery-shell {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 8px;
  align-items: center;
}

.gallery-arrow {
  height: 160px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  color: var(--gold2);
  font-size: 2.1rem;
  cursor: pointer;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-slide {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.8;
  transform: scale(0.98);
  transition: 0.25s ease;
}

.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 140, 220, 0.5);
}

.gallery-slide img {
  height: 160px;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(8, 173, 255, 0.3);
  cursor: pointer;
}

.gallery-dots button.active { background: #0822cd; }

.trailer-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.trailer-thumb img {
  height: 260px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(78, 172, 239, 0.72);
  background: rgba(0,0,0,0.28);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.video-meta { margin-top: 12px; color: #6c9af0; }

.video-bar {
  height: 6px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden;
}

.video-bar span {
  display: block;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, #3f7de0, #63b3ff);
}


.info-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr 1fr;
  gap: 18px;
}

.news-box,
.rank-box,
.calendar-box { padding: 18px; }

.news-list { display: grid; gap: 12px; }

.news-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.015);
}

.news-date {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 0;
  text-align: center;
  background: #1b304b;
}

.news-date strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: #eef4fb;
}

.news-date span {
  color: #b9c7d8;
  font-size: 0.9rem;
  font-weight: 700;
}

.news-body h3 {
  color: #248fe7;
  text-transform: uppercase;
  font-size: 1.28rem;
}

.news-body p {
  color: var(--muted);
  line-height: 1.35;
}

.news-tag { color: #0851ee; font-size: 0.95rem; }
.news-tag.green { color: #57df5e; }
.news-tag.blue { color: #63b3ff; }

.rank-list { display: grid; gap: 10px; }

.rank-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px;
}

.rank-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #185384;
  color: white;
  font-weight: 700;
}

.rank-row b {
  display: block;
  color: var(--gold2);
  font-size: 1.3rem;
}

.rank-row small { color: var(--muted); }
.rank-row i { font-style: normal; color: var(--gold2); font-size: 1.2rem; }

.full-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 6px;
  margin-top: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.full-red { background: linear-gradient(180deg, #0686ee, #1283e1); }
.full-gold { background: linear-gradient(180deg, #5f7690, #34485f); }


.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 16px;
}

.calendar-header strong {
  color: #1d94c0;
  font-size: 1.3rem;
}

.calendar-header button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  color: var(--gold2);
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 10px;
  color: #4684ef;
  text-align: center;
}

.calendar-weekdays span { font-weight: 700; }

.calendar-day {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #3fb3f6;
  background: rgba(255,255,255,0.01);
}

.calendar-day.muted { color: rgba(255,255,255,0.28); }
.calendar-day.today { outline: 1px solid rgba(13, 127, 221, 0.9); }

.calendar-day .badge {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.badge.red { background: #63b3ff; }
.badge.orange { background: #4e91d9; }
.badge.gold { background: #dde6f0; }
.badge.purple { background: #8fa8d8; }

.calendar-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: #aebccd;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background: #63b3ff; }
.dot.orange { background: #4e91d9; }
.dot.gold { background: #dde6f0; }
.dot.purple { background: #8fa8d8; }


.community-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 18px;
}

.community-box,
.follow-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.community-box p {
  color: var(--muted);
  text-align: center;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.social {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
}

.social-discord { background: linear-gradient(180deg, #5d68d5, #3848ba); }
.social-forum { background: linear-gradient(180deg, #2d82bf, #216194); }
.social-youtube { background: linear-gradient(180deg, #2f49cc, #2e2ee8); }

.follow-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.follow-icons a {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
}


.footer {
  margin-top: 18px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #050608, #02050b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 24px;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
  line-height: 1.6;
}

.footer h3 {
  text-transform: uppercase;
  color: var(--gold2);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer ul { list-style: none; }
.online { color: var(--green); font-weight: 700; }


@media (max-width: 1200px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .media-grid,
  .info-grid,
  .community-grid,
  .footer-grid,
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-content: center; min-height: 420px; }
}

@media (max-width: 860px) {
  .topbar-inner {
    grid-template-columns: auto auto;
    gap: 14px;
    padding: 14px 0;
  }

  .menu { display: none; }
  .play-now { min-height: 66px; min-width: 150px; }
  .hero-copy { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn { min-width: 100%; }
  .stats-bar,
  .feature-grid,
  .community-links { grid-template-columns: 1fr; }
  .gallery-shell { grid-template-columns: 1fr; }
  .gallery-arrow { height: 48px; }
  .gallery-track { grid-template-columns: repeat(2, 1fr); }
  .container { width: min(1240px, calc(100% - 24px)); }
}

@media (max-width: 820px){
  .topbar-inner{
    grid-template-columns:auto auto auto;
    gap:12px;
    min-height:78px;
  }

  .logo img{
    max-height:25px;
    width:auto;
    display:block;
  }

  .mobile-menu-toggle{
    display:flex;
    justify-self:end;
  }

  .play-now{
    display:none;
  }

  .menu{
    display:none;
    position:absolute;
    top:100%;
    left:12px;
    right:12px;
    margin-top:10px;
    padding:14px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:rgba(4, 5, 7, 0.98);
    border:1px solid rgba(120, 176, 245, 0.16);
    border-radius:12px;
    box-shadow:0 18px 40px rgba(0,0,0,0.35);
    z-index:99;
  }

  .menu.menu-open{
    display:flex;
  }

  .menu a{
    padding:12px 14px;
    border-radius:8px;
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(120, 176, 245, 0.08);
  }

  .topbar{
    position:sticky;
    top:0;
    z-index:50;
  }
}

@media (max-width: 560px) {
  .hero-title { font-size: 5rem; }
  .hero-kicker { font-size: 1.35rem; }
  .hero-subtitle { font-size: 1.5rem; }
  .hero-text { font-size: 1.15rem; }
  .section-title { font-size: 2rem; }
  .gallery-track { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 54px 1fr; }
  .news-tag { grid-column: 2; }
}

.site-copyright {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    color: #8e8577;
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-copyright strong {
    color: var(--gold2);
    font-weight: 700;
}


:root {
  --bg: #02050b !important;
  --bg2: #08111c !important;
  --panel: rgba(7, 12, 20, 0.96) !important;
  --line: rgba(86, 146, 219, 0.34) !important;
  --line-soft: rgba(120, 176, 245, 0.16) !important;
  --gold: #67a8ff !important;
  --gold2: #dde6f0 !important;
  --red: #315a8c !important;
  --red2: #4b83c9 !important;
  --text: #eef4fb !important;
  --muted: #9aa8b9 !important;
  --green: #70c7ff !important;
  --blue: #63b3ff !important;
  --purple: #8fa8d8 !important;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.40) !important;
}

html, body,
.admin-main,
.register-body,
.ranking-body,
.wiki-body,
.download-body,
.character-body,
.support-body,
.news-page-body {
  color: #eef4fb !important;
  background:
    radial-gradient(circle at 78% 14%, rgba(69, 126, 208, 0.14), transparent 18%),
    radial-gradient(circle at 22% 26%, rgba(124, 168, 232, 0.10), transparent 16%),
    linear-gradient(180deg, #02050b 0%, #060c14 100%) !important;
}

.topbar {
  background: rgba(2, 5, 11, 0.98) !important;
  border-bottom: 1px solid rgba(86, 146, 219, 0.14) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25) !important;
}

.logo,
.footer-logo {
  color: #dde6f0 !important;
  text-shadow: 0 0 14px rgba(99, 179, 255, 0.16) !important;
}

.logo span,
.footer-logo span {
  color: #63b3ff !important;
}

.hero-overlay,
.register-overlay,
.download-overlay,
.ranking-overlay,
.wiki-overlay,
.news-overlay,
.support-overlay,
.character-overlay {
  background:
    radial-gradient(circle at 74% 24%, rgba(99, 179, 255, 0.18), transparent 16%),
    radial-gradient(circle at 84% 64%, rgba(49, 90, 140, 0.18), transparent 14%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.36)) !important;
}

.menu a,
.menu a:hover,
.menu a.active,
.hero-kicker,
.news-kicker,
.ranking-kicker,
.wiki-kicker,
.support-kicker,
.register-kicker,
.character-kicker,
.panel-kicker,
.download-kicker,
.admin-kicker,
.section-title,
.toolbar-group label,
.form-group label,
.index-login-form label,
.wiki-sidebar-title,
.wiki-section-title,
.admin-table th,
.ranking-table th {
  color: #dde6f0 !important;
}

.hero-title,
.register-copy h1,
.download-copy h1,
.ranking-hero-box h1,
.wiki-hero-box h1,
.news-hero-box h1,
.support-hero-box h1,
.character-hero-box h1,
.admin-hero-box h1 {
  color: #f4f8fc !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.42) !important;
}

.hero-title span,
.register-copy h1 span,
.download-copy h1 span,
.ranking-hero-box h1 span,
.wiki-hero-box h1 span,
.support-hero-box h1 span,
.character-hero-box h1 span,
.news-hero-box h1 span {
  color: #63b3ff !important;
}

.hero-subtitle,
.hero-text,
.register-text,
.download-text,
.ranking-text,
.support-text,
.character-text,
.news-hero-box p,
.wiki-hero-box p,
.admin-hero-box p {
  color: #c2cfde !important;
}

.play-now,
.btn,
.btn-red,
.btn-gold,
.full-button,
.full-gold,
.download-small-link,
.support-link-btn,
.ticket-submit,
.ticket-open-btn,
.admin-big-btn,
.admin-big-btn.red,
.admin-big-btn.gold,
.register-submit,
.account-action-btn,
.char-action-btn,
.change-password-btn,
.change-pin-btn,
.pin-submit-btn,
.password-submit-btn,
.logout-btn {
  background: linear-gradient(180deg, #446f9e 0%, #223754 100%) !important;
  color: #f4f8fc !important;
  border: 1px solid rgba(120, 176, 245, 0.26) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 10px 22px rgba(0,0,0,0.24),
    0 0 18px rgba(99, 179, 255, 0.10) !important;
}

.play-now:hover,
.btn:hover,
.full-button:hover,
.download-small-link:hover,
.support-link-btn:hover,
.ticket-submit:hover,
.ticket-open-btn:hover,
.admin-big-btn:hover,
.register-submit:hover {
  filter: brightness(1.08) !important;
}

.hero-panel,
.news-box,
.rank-box,
.calendar-box,
.register-card,
.download-copy,
.download-status-card,
.download-card,
.ranking-hero-box,
.news-hero-box,
.support-hero-box,
.character-hero-box,
.admin-hero-box,
.admin-stat-card,
.admin-action-card,
.admin-content-box,
.account-card,
.character-panel,
.char-detail,
.char-stats-card,
.char-visual-card,
.empty-character-box,
.news-full-card,
.sidebar-box,
.support-box,
.wiki-sidebar,
.wiki-content,
.ranking-table-wrap,
.info-card,
.event-modal,
.ticket-row,
.support-user-card > div,
.support-info-item {
  background: linear-gradient(180deg, rgba(12,18,28,0.96) 0%, rgba(8,13,22,0.96) 100%) !important;
  border: 1px solid rgba(86, 146, 219, 0.18) !important;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.02) !important;
}

.admin-hero-box::before {
  background: rgba(74, 131, 201, 0.20) !important;
}

.admin-stat-card strong,
.admin-action-card h3,
.download-status-card h2,
.register-card-head h2,
.support-box h2,
.character-panel-head h2,
.wiki-main h2,
.wiki-main h3,
.news-full-body h2,
.news-full-body h3,
.account-card-head strong,
.account-balance strong {
  color: #dde6f0 !important;
}

.admin-stat-card span,
.admin-action-card p,
.download-status-line span,
.register-card-head p,
.account-card-head span,
.account-balance span,
.support-user-card span,
.support-info-item p,
.news-full-body p,
.ranking-table td,
.admin-table td,
.wiki-main p,
.wiki-main li,
.rank-box .rank-row small,
.news-box .news-body p,
.character-name,
.character-meta,
.char-stats li,
.ticket-row p,
.ticket-row small {
  color: #a6b4c4 !important;
}

input,
select,
textarea,
.form-group input,
.form-group select,
.toolbar-group select,
.toolbar-group input,
.index-login-form input,
.ticket-form textarea,
.ticket-form input {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(120, 176, 245, 0.22) !important;
  color: #f4f8fc !important;
}

input::placeholder,
textarea::placeholder {
  color: #7f90a5 !important;
}

input:focus,
select:focus,
textarea:focus,
.form-group input:focus,
.form-group select:focus,
.toolbar-group input:focus,
.toolbar-group select:focus,
.index-login-form input:focus {
  border-color: rgba(99, 179, 255, 0.60) !important;
  box-shadow: 0 0 0 3px rgba(99, 179, 255, 0.12) !important;
  background: rgba(255,255,255,0.04) !important;
}

.admin-table th,
.admin-table td,
.ranking-table th,
.ranking-table td,
.download-status-line,
.account-card-head,
.news-full-head {
  border-color: rgba(86, 146, 219, 0.12) !important;
}

.news-date-box,
.rank-owner,
.rank-discord-admin,
.rank-gm,
.rank-mod,
.rank-web,
.rank-helper,
.character-count,
.badge,
.status-badge,
.promo-code-badge,
.conversion-badge,
.toolbar-badge,
.dot {
  background: linear-gradient(180deg, #365a83 0%, #22364f 100%) !important;
  color: #f4f8fc !important;
  border: 1px solid rgba(120, 176, 245, 0.22) !important;
}

.error-alert,
.register-error,
.ranking-alert,
.form-alert.error,
.ticket-error {
  background: rgba(62, 94, 138, 0.20) !important;
  border: 1px solid rgba(99, 179, 255, 0.22) !important;
  color: #d9e7f7 !important;
  box-shadow: none !important;
}

.download-warning,
.form-alert.success,
.ticket-success,
.register-success,
.notice-box {
  background: rgba(76, 121, 183, 0.14) !important;
  border: 1px solid rgba(99, 179, 255, 0.22) !important;
  color: #dce9f8 !important;
}

::-webkit-scrollbar-thumb {
  background: rgba(86, 146, 219, 0.55) !important;
  border-radius: 999px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04) !important;
}
