
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background: #040c1a;
  color: #c8d8e8;
  font-family: 'Exo 2', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  min-height: 100vh;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

input {
  font-family: inherit;
}

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


:root {
  --nav-h: 46px;
  --wrap: 1200px;
  --panel-bg: rgba(7, 16, 34, 0.96);
  --border: rgba(40, 95, 155, 0.45);
  --accent: #3aa4d2;
  --accent2: #5ec8f0;
  --text-dim: #7a9ab4;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  background: linear-gradient(to bottom, rgba(4, 10, 25, 0.55) 0%, transparent 100%);
  border-bottom: none;
}

.navbar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 100%;
}

.nav-left-group {
  display: flex;
  align-items: center;
}

.nav-right-group {
  display: flex;
  align-items: center;
}


.nav-logo {
  flex-shrink: 0;
  margin: 0 28px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  color: #b8d0e8;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0.3px;
  padding: 0 14px;
  line-height: var(--nav-h);
  display: block;
  transition: color 0.2s;
  white-space: nowrap;
  font-weight: 500;
}

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

.nav-links li.active > a {
  color: #ffffff;
  font-weight: 600;
}

.nav-sep {
  width: 1px;
  height: 12px;
  background: rgba(80, 130, 180, 0.35);
  flex-shrink: 0;
}

.nav-right-group .btn-signin {
  margin-left: 12px;
}

.btn-signin {
  background-image: url('../img/sign_normal.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 108px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}

.btn-signin:hover {
  background-image: url('../img/sign_hover.png');
}

.btn-signin:active {
  background-image: url('../img/sign_down.png');
}


#signin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(2, 6, 18, 0.78);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
}

#signin-overlay.open {
  display: flex;
}

#signin-panel {
  width: 360px;
  background: linear-gradient(180deg, #0d2048 0%, #071228 55%, #030a18 100%);
  border: 1px solid rgba(50, 110, 200, 0.4);
  border-top: 2px solid rgba(80, 150, 255, 0.6);
  box-shadow: 0 0 60px rgba(0, 80, 200, 0.2), 0 8px 40px rgba(0,0,0,0.8);
  overflow: hidden;
}

.signin-header {
  text-align: center;
  padding: 22px 20px 16px;
  border-bottom: 1px solid rgba(50, 100, 180, 0.3);
}

.signin-header span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ddeeff;
  letter-spacing: 2px;
}

.signin-body {
  padding: 20px 28px 22px;
}

.signin-label {
  display: block;
  font-size: 12px;
  color: #8aaac8;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.input-field {
  position: relative;
  margin-bottom: 14px;
}

.input-field .ico {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(80, 140, 210, 0.7);
  font-size: 13px;
  pointer-events: none;
  line-height: 1;
}

.input-field input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(6, 16, 38, 0.88);
  border: 1px solid rgba(35, 85, 155, 0.55);
  color: #a0c4de;
  padding: 10px 10px 10px 36px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.input-field input::placeholder {
  color: rgba(80, 130, 170, 0.4);
}

.input-field input:focus {
  border-color: var(--accent);
  background: rgba(8, 22, 52, 0.95);
}

.signin-btn-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-login-img {
  background: url('../img/Singin/login_normal.png') no-repeat center / contain;
  width: 200px;
  height: 40px;
  display: block;
  border: none;
  cursor: pointer;
}

.btn-login-img:hover  { background-image: url('../img/Singin/login_hover.png'); }
.btn-login-img:active { background-image: url('../img/Singin/login_down.png'); }

.btn-close-img {
  background: url('../img/Singin/close_normal.png') no-repeat center / contain;
  width: 200px;
  height: 40px;
  display: block;
  border: none;
  cursor: pointer;
}

.btn-close-img:hover  { background-image: url('../img/Singin/close_hover.png'); }
.btn-close-img:active { background-image: url('../img/Singin/close_down.png'); }

.signin-footer {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: #5a7a95;
  line-height: 1.8;
}

.signin-link {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}
.signin-link:hover { color: #aad4ff; }

.signin-error {
  background: rgba(180, 30, 30, 0.25);
  border: 1px solid rgba(220, 60, 60, 0.4);
  color: #f08080;
  font-size: 12px;
  padding: 8px 12px;
  margin-bottom: 12px;
  text-align: center;
}

.btn-logout-nav {
  margin-left: 12px;
  color: #8aacca;
  font-size: 15px;
  font-weight: 500;
  line-height: var(--nav-h);
  padding: 0 10px;
  transition: color 0.2s;
}
.btn-logout-nav:hover { color: #eef6ff; }

#reg-msg {
  padding: 0 24px;
}

.reg-errors {
  background: rgba(180, 30, 30, 0.2);
  border: 1px solid rgba(220, 60, 60, 0.35);
  padding: 10px 14px;
  margin-bottom: 4px;
}
.reg-error-line {
  color: #f08080;
  font-size: 12px;
  line-height: 1.7;
}

.reg-success {
  color: #6edfaa;
  font-size: 13px;
  text-align: center;
  padding: 4px 0;
}

.feedback-ok {
  background: rgba(20, 120, 60, 0.25);
  border: 1px solid rgba(40, 200, 100, 0.4);
  color: #6edfaa;
  font-size: 13px;
  padding: 9px 14px;
  margin-bottom: 8px;
  text-align: center;
}

.feedback-err {
  background: rgba(160, 20, 20, 0.25);
  border: 1px solid rgba(220, 60, 60, 0.4);
  color: #f08080;
  font-size: 13px;
  padding: 9px 14px;
  margin-bottom: 8px;
  text-align: center;
}

.feedback-loading {
  color: #7aadcc;
  font-size: 13px;
  padding: 9px 14px;
  text-align: center;
  opacity: 0.8;
}


.hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  margin-top: 0;
  background: #030912;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
}

.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 2;
  background: url('../img/header.png') no-repeat bottom center / cover;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 80px 88px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-logo-img {
  width: 285px;
  height: auto;
  margin-bottom: 22px;
}

.btn-dl-hero {
  background: url('../img/download_normal.png') no-repeat left center / contain;
  width: 205px;
  height: 58px;
  display: block;
}

.btn-dl-hero:hover {
  background-image: url('../img/download_hover.png');
}

.btn-dl-hero:active {
  background-image: url('../img/download_down.png');
}


#content {
  position: relative;
}


.home-s1 {
  position: relative;
  z-index: 10;
  background: url('../img/bg_second_page.png') no-repeat center top / cover;
  padding: 24px 0 0;
}

.home-s1-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.merch-col {
  flex: 1;
  min-width: 0;
  max-width: 45%;
}

.merch-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}

.news-col {
  flex: 1;
  min-width: 0;
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-panel {
  background: var(--panel-bg);
  border: 1px solid var(--border);
  flex: 1;
  overflow-y: auto;
}

.news-panel-head {
  background: rgba(4, 10, 22, 0.95);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-panel-more {
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
}

.news-tabs-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.ntab {
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  user-select: none;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ntab:hover {
  color: #c0d8e8;
}

.ntab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.news-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(25, 60, 100, 0.3);
  transition: background 0.2s;
  cursor: pointer;
}

.news-item:hover {
  background: rgba(12, 32, 60, 0.5);
}

.news-item:last-child {
  border-bottom: none;
}

.news-thumb-ph {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #0d2a50, #0a3060);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(60, 160, 210, 0.4);
}

.news-body {
  flex: 1;
  min-width: 0;
}

.news-ttl {
  font-size: 13px;
  color: #c0d8e8;
  line-height: 1.4;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-desc {
  font-size: 13px;
  color: #4a6a80;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-time {
  font-size: 13px;
  color: #3a5060;
  margin-top: 3px;
}


.discord-wrap { display: none; }

.home-s1-bottom {
  max-width: var(--wrap);
  margin: 12px auto 0;
  padding: 0 20px 24px;
  display: flex;
  gap: 20px;
}

.home-s1-box {
  flex: 1;
  min-height: 90px;
  background: var(--panel-bg);
  border: 1px solid var(--border);
}

.home-s1-box--discord {
  padding: 0;
  overflow: hidden;
  background: var(--panel-bg);
}

.btn-discord {
  background: url('../img/discord_normal.png') no-repeat center / cover;
  width: 100%;
  height: 100%;
  min-height: 90px;
  display: block;
}

.btn-discord:hover {
  background-image: url('../img/discord_hover.png');
}

.btn-discord:active {
  background-image: url('../img/discord_down.png');
}


.rankings-wrap {
  position: relative;
  padding: 36px 0 54px;
  background: url('../img/bg1.png') no-repeat right center / cover;
  background-color: #08141e;
  min-height: 380px;
}

.rankings-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(5, 12, 24, 0.97) 0%,
    rgba(5, 12, 24, 0.94) 44%,
    rgba(5, 12, 24, 0.55) 62%,
    rgba(5, 12, 24, 0.10) 76%,
    transparent 88%
  );
}


.rankings-inner {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 30px;
}


.rankings-inner .sec-head {
  max-width: 640px;
  margin-bottom: 12px;
}

.rankings-inner .rank-table {
  max-width: 640px;
}

.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sec-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sec-title span {
  color: var(--accent);
}

.sec-more {
  font-size: 13px;
  color: var(--accent);
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
}

.rank-table thead th {
  padding: 9px 12px;
  font-size: 13px;
  color: #4a6a80;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.rank-table tbody tr {
  border-bottom: 1px solid rgba(18, 45, 80, 0.5);
  transition: opacity 0.2s;
}

.rank-table tbody tr:hover {
  opacity: 0.8;
}

.rank-table tbody tr:nth-child(odd) {
  background: url('../img/latest/bg.png') no-repeat center / cover;
}

.rank-table tbody tr:nth-child(even) {
  background: url('../img/latest/bg1.png') no-repeat center / cover;
}

.rank-table tbody td {
  padding: 10px 12px;
  font-size: 13px;
  color: #90b0c4;
}

.rank-table tbody td:first-child {
  color: var(--text-dim);
  font-size: 13px;
}

.pname {
  color: var(--accent);
  font-weight: 600;
}

.orange {
  color: #e0a040;
  font-weight: 600;
}

.yellow {
  color: #d4d050;
  font-weight: 600;
}

.rank-arrow {
  width: 14px;
  height: auto;
  vertical-align: middle;
}

.stats-wrap {
  position: relative;
  padding: 48px 0 56px;
  background: url('../img/bg_second_page.png') no-repeat center center / cover;
}

.stats-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 24, 0.32);
}

.stats-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 36px;
}

.stat-panel {
  flex: 1;
  background: rgba(5, 12, 28, 0.78);
  border: 1px solid rgba(60, 120, 200, 0.28);
  border-top: 2px solid var(--accent);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.stat-panel-head {
  background: rgba(3, 8, 20, 0.70);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(60, 120, 200, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: #e8f2ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stat-panel-more {
  font-size: 12px;
  color: var(--accent);
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s;
}
.stat-panel-more:hover { opacity: 1; }

.stat-row {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(40, 90, 150, 0.18);
  transition: background 0.18s;
}
.stat-row:hover {
  background: rgba(30, 70, 130, 0.18);
}

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

.stat-row-label {
  flex: 1;
  font-size: 14px;
  color: #9db8cc;
  display: flex;
  align-items: center;
  gap: 9px;
}

.stat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-dot.on {
  background: #2edf78;
  box-shadow: 0 0 7px #2edf78, 0 0 14px rgba(46, 223, 120, 0.4);
}

.stat-dot.off {
  background: #e0334a;
  box-shadow: 0 0 7px #e0334a;
}

.stat-row-val {
  font-size: 15px;
  color: #c8e4ff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.stat-row-count {
  font-size: 12px;
  color: #4a6a80;
  margin-left: 8px;
  font-weight: 400;
}


.subpage-bg {
  background: url('../img/bg_second_page.png') no-repeat center top / cover;
  position: relative;
  min-height: 460px;
}


.dl-wrap {
  padding: 28px 20px 40px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.dl-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--panel-bg);
  border: 1px solid var(--border);
}

.dl-panel-head {
  background: url('../img/download_page/bg_download.png') no-repeat center / cover;
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.dl-panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.dl-panel-body {
  padding: 22px;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.btn-dl-item {
  background: url('../img/download_page/download_normal.png') no-repeat center / cover;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  font-size: 13px;
  color: #8ab0c8;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-dl-item:hover {
  background-image: url('../img/download_page/download_hover.png');
}

.btn-dl-item:active {
  background-image: url('../img/download_page/download_down.png');
}

.sysreq {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.sysreq-title {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sysreq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.sysreq-row {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15, 45, 80, 0.3);
}

.sysreq-lbl {
  width: 65px;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.sysreq-val {
  font-size: 13px;
  color: #80a0b8;
}

.reg-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 20px 40px;
}

.reg-panel {
  width: 360px;
  background: linear-gradient(180deg, #0b1d40 0%, #060f26 50%, #030810 100%);
  border: 1px solid rgba(50, 110, 200, 0.35);
  border-top: 2px solid rgba(80, 160, 255, 0.55);
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

.reg-panel-head {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #ddeeff;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(50, 100, 180, 0.3);
}

.reg-form {
  display: flex;
  flex-direction: column;
  padding: 18px 24px 20px;
  gap: 10px;
}

.reg-field {
  position: relative;
}

.reg-ico {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(80, 150, 220, 0.75);
  pointer-events: none;
  line-height: 1;
}

.reg-form input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(5, 14, 36, 0.85);
  border: 1px solid rgba(40, 90, 160, 0.5);
  border-bottom: 1px solid rgba(60, 130, 220, 0.4);
  color: #a8c8de;
  font-size: 13px;
  font-family: inherit;
  height: 38px;
  padding: 0 10px 0 36px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  caret-color: var(--accent);
}

.reg-form input::placeholder {
  color: rgba(100, 155, 195, 0.45);
}

.reg-form input:focus {
  border-color: rgba(80, 160, 255, 0.7);
  background: rgba(8, 22, 52, 0.95);
}

.btn-register {
  background: url('../img/register/register_normal.png') no-repeat center / contain;
  width: 200px;
  height: 46px;
  display: block;
  margin: 8px auto 0;
  border: none;
  cursor: pointer;
}

.btn-register:hover  { background-image: url('../img/register/register_hover.png'); }
.btn-register:active { background-image: url('../img/register/register_down.png'); }


.acc-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 36px 20px 50px;
}

.acc-panel {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--border);
  background: rgba(6, 14, 28, 0.95);
  min-height: 420px;
}

.acc-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: rgba(4, 10, 22, 0.97);
  border-right: 1px solid var(--border);
}

.acc-sidebar-top {
  padding: 20px 18px 16px;
  border-bottom: 1px solid var(--border);
}

.acc-sidebar-head {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.acc-sidebar-head span {
  color: var(--accent);
}

.acc-hello {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 5px;
}

.acc-email-row {
  font-size: 13px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.acc-email-row img {
  width: 15px;
  opacity: 0.8;
}

.acc-menu {
  list-style: none;
  padding: 0;
}

.acc-menu li {
  border-bottom: 1px solid rgba(15, 45, 80, 0.3);
}

.acc-menu li a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: #5a7a8a;
  transition: all 0.2s;
  cursor: pointer;
}

.acc-menu li a:hover {
  color: #c8d8e8;
  background: rgba(10, 30, 60, 0.5);
  padding-left: 24px;
}

.acc-menu li.active a {
  color: var(--accent);
  background: rgba(8, 24, 50, 0.6);
}

.acc-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.acc-main-head {
  background: rgba(4, 10, 22, 0.9);
  padding: 12px 22px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.acc-main-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.acc-main-body {
  padding: 20px 24px;
  flex: 1;
}

.acc-info-row {
  display: flex;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(15, 45, 80, 0.3);
}

.acc-info-row:last-child {
  border-bottom: none;
}

.acc-info-lbl {
  flex: 1;
  font-size: 14px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.acc-info-lbl img {
  width: 15px;
  opacity: 0.7;
}

.acc-info-val {
  font-size: 14px;
  color: #8ab0c4;
  text-align: right;
}

.acc-sub-head {
  font-size: 14px;
  color: #c0d8e8;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.acc-sub-head img {
  width: 11px;
}

.btn-confirm {
  background: var(--accent);
  border: none;
  cursor: pointer;
  padding: 9px 32px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 18px auto 0;
  display: block;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
  transition: filter 0.2s;
}

.btn-confirm:hover {
  filter: brightness(1.2);
}

.btn-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rank-top td { color: #f0c060; }
.rank-top td.pname { font-weight: 700; }

#msg-password, #msg-email {
  margin-bottom: 10px;
}


footer {
  position: relative;
  background: url('../img/footer/bg.png') no-repeat center / cover;
  border-top: 1px solid rgba(25, 65, 115, 0.35);
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 16, 0.82);
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 26px 20px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.footer-logo-col {
  flex-shrink: 0;
}

.footer-logo-col img {
  height: 62px;
  width: auto;
}

.footer-mid {
  flex: 1;
}

.footer-nav {
  display: flex;
  gap: 18px;
  list-style: none;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: #4a6a80;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-desc {
  font-size: 13px;
  color: #2a4050;
  line-height: 1.65;
  max-width: 420px;
}

.footer-desc strong {
  color: #3a6070;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-badge img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-badge:hover img {
  opacity: 1;
}

.footer-credit {
  font-size: 13px;
  color: #2a4050;
}

.footer-credit span {
  color: var(--accent);
}


.hidden {
  display: none !important;
}
