:root {
    --bg-dark: #080808;
    --bg-soft: rgba(8, 8, 10, 0.92);
    --bg-card: rgba(0, 0, 0, 0.6);
    --bg-card-2: rgba(255, 255, 255, 0.015);

    --text-main: #ffffff;
    --text-soft: #d2d2d2;
    --text-muted: #aaaaaa;

    --gold: #ffb347;
    --gold-soft: #ffcc4d;
    --gold-strong: #ffd700;
    --orange: #ff7c2b;
    --red: #ff5f5f;
    --green: #46dd5e;

    --border-gold: rgba(212, 164, 65, 0.3);
    --border-gold-soft: rgba(255, 150, 35, 0.18);
    --border-light: rgba(255, 255, 255, 0.06);

    --shadow-dark: 0 12px 26px rgba(0, 0, 0, 0.26);
    --shadow-panel: 0 18px 34px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 16px rgba(255, 140, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;

    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background: var(--bg-dark) url("/img/bg.jpg") no-repeat center top fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

/* overlays */
.site-overlay {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.48) 30%,
            rgba(0, 0, 0, 0.56) 65%,
            rgba(0, 0, 0, 0.86)
        ),
        radial-gradient(
            circle at center,
            rgba(255, 120, 0, 0.05),
            transparent 42%,
            rgba(0, 0, 0, 0.52) 100%
        );
    pointer-events: none;
    z-index: -2;
}

.site-fire {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: radial-gradient(circle at bottom, rgba(255, 70, 0, 0.11), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 7, 0.92);
    border-bottom: 1px solid rgba(255, 133, 20, 0.24);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

.topbar-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    color: #e6e6e6;
    text-shadow:
        0 1px 0 #ffffff,
        0 0 18px rgba(255, 255, 255, 0.08);
}

.brand-title span {
    color: #ffb321;
    text-shadow:
        0 0 10px rgba(255, 170, 0, 0.4),
        0 0 20px rgba(255, 120, 0, 0.18);
    margin-left: 4px;
}

.brand-sub {
    margin-top: 4px;
    font-size: 12px;
    color: #ff5c1a;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.nav a {
    position: relative;
    color: #f1f1f1;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: #ffcc4d;
    text-shadow: 0 0 12px rgba(255, 187, 0, 0.26);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6700, #ffcc33);
    box-shadow: 0 0 10px rgba(255, 115, 0, 0.35);
    transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.top-status {
    display: flex;
    gap: 12px;
}

.status-box {
    min-width: 150px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 150, 40, 0.18);
    background: linear-gradient(180deg, rgba(18, 18, 22, 0.95), rgba(10, 10, 12, 0.82));
    box-shadow:
        inset 0 0 14px rgba(255, 255, 255, 0.02),
        0 8px 18px rgba(0, 0, 0, 0.25);
}

.status-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #a9a9a9;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.status-online {
    color: #41df57;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(65, 223, 87, 0.18);
}

.status-offline {
    color: var(--red);
    font-weight: 700;
}

.status-value {
    color: #ffcb45;
    font-size: 30px;
    font-weight: 800;
}

/* hero */
.hero {
    padding: 55px 0 20px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr minmax(680px, 860px) 1fr;
    align-items: center;
    min-height: 440px;
}

.hero-center {
    text-align: center;
    padding: 28px 26px 34px;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.72), rgba(8, 8, 10, 0.52));
    border: 1px solid rgba(255, 140, 0, 0.18);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.34),
        inset 0 0 40px rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(3px);
}

.hero-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffcc55;
    border: 1px solid rgba(255, 184, 50, 0.35);
    background: linear-gradient(180deg, rgba(70, 15, 0, 0.52), rgba(35, 10, 0, 0.36));
    box-shadow: 0 0 16px rgba(255, 119, 0, 0.08);
}

.hero-logo {
    margin: 0;
    font-size: 100px;
    line-height: 0.95;
    letter-spacing: 1px;
    font-weight: 900;
}

.hero-logo .silver {
    color: #dfdfdf;
    text-shadow:
        0 1px 0 #ffffff,
        0 0 12px rgba(255, 255, 255, 0.08),
        0 0 22px rgba(0, 0, 0, 0.28);
}

.hero-logo .gold {
    margin-left: 8px;
    color: #ffb21f;
    text-shadow:
        0 0 10px rgba(255, 167, 25, 0.4),
        0 0 28px rgba(255, 90, 0, 0.18);
}

.hero-center h2 {
    margin: 14px 0 12px;
    color: #f0c14b;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-center p {
    max-width: 720px;
    margin: 0 auto;
    color: #dadada;
    font-size: 16px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* buttons */
.btn {
    min-width: 210px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-gold {
    color: #1a1307;
    background: linear-gradient(180deg, #ffd35f 0%, #ffb21f 50%, #d88b08 100%);
    border-color: #ffcd51;
    box-shadow:
        0 0 18px rgba(255, 171, 24, 0.22),
        inset 0 0 16px rgba(255, 255, 255, 0.14);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 26px rgba(255, 170, 0, 0.34),
        inset 0 0 16px rgba(255, 255, 255, 0.2);
}

.btn-dark {
    color: #f4f4f4;
    background: linear-gradient(180deg, rgba(30, 30, 34, 0.96), rgba(14, 14, 16, 0.88));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.02);
}

.btn-dark:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 179, 32, 0.26);
    box-shadow: 0 0 18px rgba(255, 120, 0, 0.12);
}

.form-btn {
    margin-top: 10px;
}

/* stats */
.stats-line {
    padding: 14px 0 26px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.94), rgba(8, 8, 10, 0.78));
    border: 1px solid rgba(255, 137, 16, 0.2);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.26),
        inset 0 0 22px rgba(255, 255, 255, 0.015);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 180, 40, 0.35);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

.stat-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc48;
    font-size: 18px;
    font-weight: 900;
    background: radial-gradient(circle, rgba(255, 160, 30, 0.22), rgba(35, 20, 10, 0.65));
    border: 1px solid rgba(255, 185, 40, 0.28);
    box-shadow: 0 0 16px rgba(255, 120, 0, 0.12);
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-name {
    color: #c6c6c6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    color: #ffcc4d;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.online-text {
    color: var(--green);
    text-shadow: 0 0 12px rgba(70, 221, 94, 0.2);
}

/* panels */
.content-panels {
    padding: 10px 0 60px;
}

.panels-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 22px;
}

.panel {
    min-height: 100%;
}

.ornate-panel {
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.92), rgba(8, 8, 10, 0.74));
    border: 1px solid rgba(255, 139, 25, 0.18);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.3),
        inset 0 0 26px rgba(255, 255, 255, 0.015);
    position: relative;
}

.ornate-panel::before,
.ornate-panel::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 155, 40, 0.34);
    pointer-events: none;
}

.ornate-panel::before {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.ornate-panel::after {
    right: 8px;
    bottom: 8px;
    border-left: none;
    border-top: none;
}

.panel-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffbf40;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.panel-header-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-header-split a {
    color: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 124, 43, 0.28);
    padding: 8px 10px;
    transition: 0.2s ease;
}

.panel-header-split a:hover {
    color: #ffcf58;
    border-color: rgba(255, 200, 88, 0.42);
}

/* feature list */
.feature-list {
    padding: 22px 20px;
}

.feature-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
}

.feature-row + .feature-row {
    margin-top: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffcc4a;
    background: radial-gradient(circle, rgba(255, 165, 30, 0.18), rgba(40, 20, 10, 0.85));
    border: 1px solid rgba(255, 175, 40, 0.28);
    box-shadow: var(--shadow-gold);
}

.feature-row h3 {
    margin: 0 0 8px;
    font-size: 28px;
    color: #ffffff;
}

.feature-row p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 16px;
}

/* ranking old/simple */
.ranking-list {
    padding: 20px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    background: var(--bg-card-2);
    transition: 0.2s ease;
}

.ranking-item + .ranking-item {
    margin-top: 10px;
}

.ranking-item:hover {
    border-color: rgba(255, 180, 45, 0.2);
    background: rgba(255, 180, 45, 0.03);
}

.ranking-item.top {
    background: linear-gradient(180deg, rgba(95, 55, 5, 0.38), rgba(30, 18, 4, 0.26));
    border-color: rgba(255, 187, 45, 0.28);
}

.place {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcb4d;
    font-weight: 900;
    font-size: 20px;
}

.player {
    font-size: 17px;
    color: #f0f0f0;
    font-weight: 700;
}

.score {
    font-size: 18px;
    color: #ffbf40;
    font-weight: 900;
}

/* news */
.news-list {
    padding: 20px;
}

.news-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    align-items: start;
}

.news-item + .news-item {
    margin-top: 18px;
}

.news-thumb {
    width: 100px;
    height: 68px;
    border: 1px solid rgba(255, 150, 35, 0.22);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.02);
}

.thumb-1 {
    background:
        linear-gradient(135deg, rgba(255, 130, 0, 0.35), rgba(0, 0, 0, 0.15)),
        url("/img/bg.jpg") center/cover no-repeat;
}

.thumb-2 {
    background:
        linear-gradient(135deg, rgba(255, 70, 0, 0.28), rgba(0, 0, 0, 0.2)),
        url("/img/bg.jpg") center/cover no-repeat;
}

.thumb-3 {
    background:
        linear-gradient(135deg, rgba(255, 180, 0, 0.26), rgba(0, 0, 0, 0.25)),
        url("/img/bg.jpg") center/cover no-repeat;
}

.news-text strong {
    display: block;
    margin-bottom: 7px;
    color: #ffd067;
    font-size: 24px;
}

.news-text p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 15px;
}

/* footer */
.footer {
    border-top: 1px solid rgba(255, 140, 18, 0.14);
    background: rgba(5, 5, 7, 0.92);
}

.footer-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #bfbfbf;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: #cfcfcf;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffcc4d;
}

/* inner pages */
.inner-page {
    padding: 60px 0 80px;
}

.form-panel {
    max-width: 760px;
    margin: 0 auto;
}

.form-wrap {
    padding: 24px;
}

.form-text {
    color: #d3d3d3;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.register-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: 14px;
    color: #ffcc55;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-row input,
select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 179, 0, 0.25);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.form-row input {
    height: 52px;
    padding: 0 16px;
}

.form-row input:focus,
select:focus {
    border-color: rgba(255, 190, 50, 0.4);
    box-shadow: 0 0 14px rgba(255, 140, 0, 0.1);
}

.form-message {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.form-error {
    border: 1px solid rgba(255, 95, 95, 0.4);
    background: rgba(120, 20, 20, 0.25);
    color: #ffb0b0;
}

.form-success {
    border: 1px solid rgba(90, 180, 90, 0.4);
    background: rgba(20, 80, 20, 0.25);
    color: #bff0bf;
}

/* download */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.download-card-body {
    padding: 22px 20px 26px;
}

.download-card-body p {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 16px;
    margin: 0 0 14px;
}

.download-steps {
    margin: 0;
    padding-left: 18px;
    color: #d8d8d8;
}

.download-steps li {
    margin-bottom: 10px;
}

/* character / class */
.class-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #d4a441;
    background: #0b0b0b;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
    object-fit: cover;
    display: block;
    transition: 0.2s ease;
}

.class-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.9);
}

.char-card,
.rank-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 164, 65, 0.3);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.6);
}

.char-rank,
.rank-place {
    width: 72px;
    text-align: center;
    color: #ffb347;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.char-info,
.rank-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.char-name,
.rank-name {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.char-class,
.rank-class {
    color: #aaa;
    font-size: 14px;
    margin-top: 4px;
}

.char-level,
.rank-reset {
    color: #ffb347;
    font-weight: bold;
    font-size: 20px;
}

.rank-stats {
    text-align: right;
    min-width: 140px;
}

.rank-level {
    color: #ccc;
    font-size: 14px;
    margin-top: 4px;
}

/* vip */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vip-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(212, 164, 65, 0.35);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.vip-card:hover {
    box-shadow: 0 0 14px rgba(255, 160, 0, 0.35);
    transform: translateY(-2px);
}

.vip-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffb347;
}

.vip-desc {
    color: #d0d0d0;
    font-size: 14px;
}

.vip-days {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.vip-status {
    font-weight: 700;
}

.vip-standard {
    color: #cfcfcf;
}

.vip-bronze {
    color: #cd7f32;
}

.vip-silver {
    color: #c0c0c0;
}

.vip-gold {
    color: #ffd700;
}

.vip-benefits {
    margin: 12px 0 0 18px;
    padding: 0;
    color: #d8d8d8;
}

.vip-benefits li {
    margin-bottom: 8px;
}

/* responsive */
@media (max-width: 1280px) {
    .topbar-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 14px 0;
        gap: 16px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-center {
        max-width: 980px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .download-grid,
    .vip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .brand-title {
        font-size: 32px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 18px;
    }

    .top-status {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-logo {
        font-size: 62px;
    }

    .hero-center h2 {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 360px;
    }

    .feature-row h3 {
        font-size: 22px;
    }

    .news-text strong {
        font-size: 18px;
    }
}

@media (max-width: 560px) {
    .topbar {
        position: static;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .status-box {
        width: 100%;
        min-width: 0;
    }

    .ranking-item {
        grid-template-columns: 48px 1fr;
    }

    .score {
        grid-column: 2 / 3;
    }

    .news-item {
        grid-template-columns: 1fr;
    }

    .news-thumb {
        width: 100%;
        height: 160px;
    }

    .footer-inner {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 14px 0;
    }

    .hero-logo {
        font-size: 48px;
    }

    .panel-header {
        font-size: 16px;
    }

    .char-card,
    .rank-card {
        gap: 12px;
        padding: 12px;
    }

    .char-rank,
    .rank-place {
        width: 56px;
        font-size: 16px;
    }

    .class-icon {
        width: 48px;
        height: 48px;
    }

    .char-name,
    .rank-name,
    .char-level,
    .rank-reset {
        font-size: 16px;
    }

    .rank-stats {
        min-width: 100px;
    }
}

/* =========================
   PREMIUM ACCOUNT PAGE 10/10
   ========================= */

:root {
    --acc-bg: rgba(6, 8, 14, 0.88);
    --acc-bg-strong: rgba(8, 10, 18, 0.96);
    --acc-line: rgba(255, 170, 40, 0.18);
    --acc-line-strong: rgba(255, 190, 70, 0.34);
    --acc-gold-1: #ffe08a;
    --acc-gold-2: #ffbf3c;
    --acc-gold-3: #ff9800;
    --acc-text: #f4f4f4;
    --acc-text-soft: #b9bec9;
    --acc-green: #4cff88;
    --acc-red: #ff6a6a;
    --acc-shadow:
        0 24px 60px rgba(0, 0, 0, 0.48),
        0 8px 24px rgba(0, 0, 0, 0.36);
}

/* main wrapper for account page */
.account-page {
    padding: 56px 0 90px;
}

.account-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 162, 32, 0.18);
    background:
        linear-gradient(180deg, rgba(16, 20, 30, 0.92), rgba(6, 8, 14, 0.96)),
        radial-gradient(circle at top center, rgba(255, 153, 0, 0.06), transparent 38%);
    box-shadow: var(--acc-shadow);
    backdrop-filter: blur(6px);
}

.account-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(255, 170, 40, 0.03), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
    pointer-events: none;
}

.account-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(255, 180, 60, 0.08), transparent 22%),
        radial-gradient(circle at bottom right, rgba(255, 110, 0, 0.06), transparent 26%);
}

/* top header */
.account-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
}

.account-top-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--acc-gold-2);
    opacity: 0.9;
}

.account-title {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}

.account-title span {
    color: var(--acc-gold-2);
    text-shadow: 0 0 14px rgba(255, 180, 40, 0.24);
}

.account-subtitle {
    color: var(--acc-text-soft);
    font-size: 15px;
}

.account-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* premium logout / utility button */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 176, 48, 0.3);
    color: var(--acc-gold-2);
    background: linear-gradient(180deg, rgba(22,22,28,0.92), rgba(10,10,14,0.88));
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.22s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.btn-outline-gold:hover {
    color: #fff0c2;
    border-color: rgba(255, 200, 88, 0.52);
    box-shadow:
        0 0 18px rgba(255, 170, 0, 0.14),
        inset 0 0 0 1px rgba(255,255,255,0.03);
    transform: translateY(-2px);
}

/* intro profile card */
.account-profile {
    position: relative;
    z-index: 1;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.3fr auto;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.account-profile-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-welcome {
    color: var(--acc-text-soft);
    font-size: 16px;
}

.account-login {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow:
        0 2px 0 rgba(255,255,255,0.05),
        0 10px 24px rgba(0,0,0,0.45);
}

.account-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 170, 40, 0.18);
    background: rgba(255,255,255,0.02);
    color: #d8dce4;
    font-size: 14px;
    box-shadow: inset 0 0 18px rgba(255,255,255,0.015);
}

.meta-pill strong {
    color: #fff;
    font-weight: 800;
}

.meta-pill.vip strong {
    color: #ffca52;
}

.meta-pill.expire strong {
    color: #ffe6a6;
}

/* right status badge */
.account-rank-badge {
    min-width: 220px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 185, 60, 0.2);
    background:
        linear-gradient(180deg, rgba(24, 20, 10, 0.62), rgba(10, 10, 14, 0.82));
    box-shadow:
        inset 0 0 30px rgba(255, 190, 40, 0.04),
        0 14px 34px rgba(0,0,0,0.28);
}

.rank-badge-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #9ea5b2;
}

.rank-badge-value {
    font-size: 30px;
    font-weight: 900;
    color: var(--acc-gold-2);
    text-shadow: 0 0 16px rgba(255, 180, 40, 0.18);
}

.rank-badge-note {
    margin-top: 8px;
    color: #c3c8d2;
    font-size: 13px;
}

/* grid */
.account-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 28px;
}

/* premium card */
.account-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--acc-line);
    background:
        linear-gradient(180deg, rgba(9, 12, 20, 0.96), rgba(5, 7, 12, 0.96));
    box-shadow:
        0 16px 36px rgba(0,0,0,0.34),
        inset 0 0 26px rgba(255,255,255,0.012);
    transition: 0.22s ease;
}

.account-card:hover {
    transform: translateY(-4px);
    border-color: var(--acc-line-strong);
    box-shadow:
        0 22px 42px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255, 177, 51, 0.04);
}

.account-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%),
        radial-gradient(circle at top right, rgba(255,170,40,0.06), transparent 26%);
}

.account-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008));
}

.account-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffcb58;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.account-card-title .icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #1a1206;
    background: linear-gradient(180deg, #ffe08f, #ffb625);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 8px 18px rgba(255, 165, 0, 0.16);
    font-size: 18px;
}

.account-card-body {
    position: relative;
    z-index: 1;
    padding: 22px 20px 20px;
}

/* stat list inside cards */
.info-list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.018);
}

.info-label {
    color: #b6bdc8;
    font-size: 14px;
}

.info-value {
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
}

.info-value.gold {
    color: var(--acc-gold-2);
}

.info-value.green {
    color: var(--acc-green);
}

.info-value.red {
    color: var(--acc-red);
}

/* select area */
.field-group {
    margin-top: 18px;
}

.field-label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ffcb5e;
}

.account-card select,
.account-card input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    background:
        linear-gradient(180deg, rgba(10,12,18,0.98), rgba(6,8,12,0.98));
    border: 1px solid rgba(255, 184, 40, 0.22);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.015),
        inset 0 10px 18px rgba(255,255,255,0.01);
    transition: 0.2s ease;
}

.account-card select:focus,
.account-card input:focus {
    border-color: rgba(255, 200, 88, 0.48);
    box-shadow:
        0 0 0 3px rgba(255, 179, 32, 0.08),
        inset 0 10px 18px rgba(255,255,255,0.015);
}

/* premium buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border: 1px solid #ffcb56;
    background:
        linear-gradient(180deg, #ffe08d 0%, #ffc43d 42%, #f0a100 100%);
    color: #1a1206;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 10px 24px rgba(0,0,0,0.36),
        0 0 18px rgba(255, 179, 32, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.4);
    transition: 0.22s ease;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(0,0,0,0.42),
        0 0 24px rgba(255, 179, 32, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn-premium:active {
    transform: translateY(1px);
}

.btn-premium-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(34,36,44,0.96), rgba(14,16,22,0.96));
    color: #f2f2f2;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.22s ease;
    cursor: pointer;
}

.btn-premium-dark:hover {
    border-color: rgba(255, 191, 70, 0.28);
    box-shadow: 0 0 16px rgba(255, 166, 0, 0.12);
    transform: translateY(-2px);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.card-actions .btn-premium,
.card-actions .btn-premium-dark {
    flex: 1 1 220px;
}

/* vip highlight */
.account-card.vip-card {
    border-color: rgba(255, 190, 60, 0.28);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.36),
        0 0 28px rgba(255, 170, 0, 0.08);
}

.account-card.vip-card::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 44, 0.12), transparent 68%);
    pointer-events: none;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 184, 44, 0.28);
    background: rgba(255, 184, 44, 0.08);
    color: #ffd36a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.vip-status-line {
    margin-bottom: 18px;
    color: #b9c0cb;
    font-size: 15px;
}

.vip-status-line strong {
    color: #ffcb58;
    font-size: 24px;
    font-weight: 900;
    margin-left: 4px;
}

/* character section */
.account-section {
    position: relative;
    z-index: 1;
    padding: 0 28px 28px;
}

.account-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 16px;
    padding-top: 6px;
    color: #ffcb58;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 179, 32, 0.28), transparent);
}

.character-list {
    display: grid;
    gap: 14px;
}

.character-card {
    display: grid;
    grid-template-columns: 74px 64px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 184, 40, 0.16);
    background:
        linear-gradient(180deg, rgba(10, 12, 18, 0.95), rgba(6, 8, 12, 0.95));
    transition: 0.22s ease;
}

.character-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 198, 88, 0.32);
    box-shadow: 0 14px 30px rgba(0,0,0,0.34);
}

.character-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid rgba(255, 180, 40, 0.18);
    background: rgba(255,255,255,0.015);
    color: #ffcb58;
    font-size: 22px;
    font-weight: 900;
}

.character-class-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 190, 70, 0.34);
    background: #0b0d12;
    box-shadow:
        0 0 18px rgba(255, 153, 0, 0.12),
        inset 0 0 20px rgba(255,255,255,0.02);
}

.character-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.character-name {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
}

.character-class {
    color: #b1b8c4;
    font-size: 14px;
    letter-spacing: 0.4px;
}

.character-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.character-pill {
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: #d0d6df;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.character-level {
    text-align: right;
    min-width: 120px;
}

.character-level .label {
    display: block;
    color: #9ca4b0;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.character-level .value {
    color: #ffcb58;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

/* bronze silver gold vip text */
.vip-standard { color: #d6d6d6; }
.vip-bronze {
    color: #cd7f32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.28);
}
.vip-silver {
    color: #d4d8df;
    text-shadow: 0 0 10px rgba(212, 216, 223, 0.22);
}
.vip-gold {
    color: #ffd54e;
    text-shadow: 0 0 12px rgba(255, 213, 78, 0.28);
}

/* messages */
.account-message {
    margin: 0 28px 20px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: #d9dfeb;
    font-size: 14px;
}

.account-message.success {
    border-color: rgba(76,255,136,0.24);
    background: rgba(76,255,136,0.08);
    color: #baffcf;
}

.account-message.error {
    border-color: rgba(255,106,106,0.24);
    background: rgba(255,106,106,0.08);
    color: #ffc2c2;
}

/* responsive */
@media (max-width: 1100px) {
    .account-profile,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-rank-badge {
        min-width: 0;
    }

    .character-card {
        grid-template-columns: 64px 56px 1fr;
    }

    .character-level {
        grid-column: 2 / 4;
        text-align: left;
        min-width: 0;
        margin-top: 8px;
    }
}

@media (max-width: 720px) {
    .account-top,
    .account-profile,
    .account-grid,
    .account-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .account-title {
        font-size: 26px;
    }

    .account-login {
        font-size: 30px;
    }

    .account-card-title {
        font-size: 22px;
    }

    .account-section-title {
        font-size: 24px;
    }

    .character-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .character-rank,
    .character-class-icon {
        justify-self: start;
    }

    .character-level {
        grid-column: auto;
    }

    .card-actions {
        flex-direction: column;
    }
}

.vip-status {
    font-weight: 700;
}

.vip-standard {
    color: #cfcfcf;
}

.vip-bronze {
    color: #cd7f32;
}

.vip-silver {
    color: #c0c0c0;
}

.vip-gold {
    color: #ffd700;
}

.vip-benefits {
    margin: 12px 0 0 18px;
    padding: 0;
    color: #d8d8d8;
}

.vip-benefits li {
    margin-bottom: 8px;
}

select {
    width: 100%;
    height: 46px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 179, 0, 0.25);
    color: #ffffff;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
}