@font-face {
    font-family: "Uzoria Sans";
    src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
    font-display: swap;
}

:root {
    --ink: #020b12;
    --panel: #061723;
    --panel-deep: #020d16;
    --line: rgba(71, 177, 232, .35);
    --line-soft: rgba(72, 154, 199, .18);
    --ice: #9ee8ff;
    --blue: #26b9f2;
    --gold: #f4c45e;
    --gold-deep: #9d6422;
    --text: #edf7ff;
    --muted: #8ea9bc;
    --success: #78ec59;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 10%, rgba(16, 93, 139, .22), transparent 32rem),
        linear-gradient(180deg, #020a11 0, #03101a 60%, #020a10 100%);
    color: var(--text);
    font: 14px/1.55 "Uzoria Sans", Arial, sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: .12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a,
button {
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

a {
    color: var(--ice);
}

a:hover,
a:focus {
    color: #fff;
    text-decoration: none;
}

button,
select,
input {
    font: inherit;
}

button {
    color: inherit;
}

.site-shell {
    width: min(var(--shell), calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 14px;
    color: #00111d;
    background: #fff;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    min-height: 66px;
    background: linear-gradient(180deg, rgba(1, 10, 17, .98), rgba(2, 15, 24, .91));
    border-bottom: 1px solid rgba(56, 146, 199, .22);
    box-shadow: 0 8px 25px rgba(0,0,0,.32);
}

.header-inner {
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 18px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    color: #fff;
    line-height: 1;
}

.brand-flag {
    display: block;
    width: 46px;
    height: 42px;
    margin-right: 8px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 8px rgba(61, 193, 238, .48));
}

.brand-copy strong,
.footer-brand strong {
    display: block;
    color: #f6d683;
    font: 700 25px/1 Georgia, serif;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 5px #000;
}

.brand-copy strong {
    color: #f4c85f;
    font-family: "Times New Roman", Georgia, serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 2.1px;
    text-shadow: 0 1px 0 #5e3407, 0 2px 6px #000, 0 0 9px rgba(244, 200, 95, .18);
}

.brand-copy small,
.footer-brand small {
    display: block;
    margin-top: 4px;
    color: #b5d6e6;
    font-size: 8px;
    letter-spacing: 1.6px;
}

.brand-copy small {
    margin-top: 5px;
    color: #d7edf8;
    font: 600 9px/1.1 "Uzoria Sans", Arial, sans-serif;
    letter-spacing: 1.45px;
}

.primary-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: stretch;
    gap: 2px;
}

.primary-nav a {
    position: relative;
    padding: 24px 10px 21px;
    color: #d9e5ed;
    font-size: 11px;
    letter-spacing: .45px;
    text-transform: uppercase;
    white-space: nowrap;
}

.primary-nav a::after {
    position: absolute;
    right: 10px;
    bottom: 15px;
    left: 10px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transform: scaleX(.4);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.primary-nav a.is-active {
    color: #fff1bf;
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.language-static {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #cfe0eb;
    font-size: 11px;
    letter-spacing: .6px;
    cursor: help;
}

.header-login,
.header-register {
    display: inline-flex;
    min-height: 38px;
    padding: 9px 14px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #f5f7f8;
    font-size: 11px;
    letter-spacing: .6px;
    text-transform: uppercase;
    background: rgba(1, 13, 22, .72);
    border: 1px solid rgba(70, 160, 210, .4);
    border-radius: 3px;
}

.header-register {
    min-width: 120px;
    color: #ffe7a5;
    border-color: #c28a36;
    box-shadow: inset 0 0 15px rgba(226, 165, 51, .1), 0 0 14px rgba(216, 154, 45, .12);
}

.header-login:hover,
.header-register:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0 17px rgba(70, 190, 246, .25);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 38px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 3px;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: #cbefff;
}

/* Hero */
.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse at 50% 32%, rgba(24, 148, 215, .32), transparent 34%),
        linear-gradient(180deg, #03111b 0%, #062236 44%, #020d16 100%);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 43%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(1, 7, 12, .55) 54%, #020c14 100%);
}

.hero-stars {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .5;
    background-image:
        radial-gradient(circle at 13% 25%, #d9f5ff 0 1px, transparent 2px),
        radial-gradient(circle at 78% 19%, #9fe8ff 0 1px, transparent 2px),
        radial-gradient(circle at 61% 36%, #fff 0 1px, transparent 2px),
        radial-gradient(circle at 31% 14%, #fff 0 1px, transparent 2px);
    background-size: 230px 190px, 270px 220px, 320px 240px, 400px 310px;
}

.hero-art {
    position: absolute;
    right: max(-150px, calc((100vw - 1500px) / 2));
    bottom: -1px;
    left: max(-150px, calc((100vw - 1500px) / 2));
    z-index: -2;
    height: 610px;
    background: url("../images/uzoria/Background-up-horde-alliance.png") no-repeat center bottom / contain;
    filter: drop-shadow(0 -18px 35px rgba(16, 125, 190, .15));
}

.hero-inner {
    display: flex;
    min-height: 680px;
    padding-top: 90px;
    padding-bottom: 47px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-kicker {
    margin: 0 0 70px;
    color: #d8edfa;
    font: 14px/1.4 Georgia, serif;
    letter-spacing: 7px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px #000;
}

.hero-title-wrap {
    position: relative;
    width: min(460px, 90vw);
    padding: 28px 10px 18px;
    background: radial-gradient(ellipse, rgba(1, 14, 22, .9), rgba(2, 14, 24, .52) 55%, transparent 74%);
    filter: drop-shadow(0 9px 12px rgba(0,0,0,.8));
}

.hero-world {
    display: block;
    margin-bottom: -8px;
    color: #eaf7ff;
    font: 700 34px/1 Georgia, serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 3px 2px #000, 0 0 10px #2189b8;
}

.hero-title-wrap h1 {
    margin: 0;
    color: #efb62e;
    font: 700 82px/.95 Georgia, serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #5a2a08;
    text-shadow: 0 4px 0 #241002, 0 0 18px rgba(242, 176, 42, .55);
}

.hero-realm-name {
    display: block;
    margin: 2px 0 0;
    color: #f2bd3d;
    font: 700 48px/.95 Georgia, serif;
    letter-spacing: 3px;
    text-shadow: 0 2px 0 #6f3908, 0 0 14px rgba(242, 189, 61, .48);
}

.hero-client-version {
    display: flex;
    width: 100%;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: #eff9ff;
    font: 24px/1 Georgia, serif;
    letter-spacing: 4px;
    white-space: nowrap;
    text-shadow: 0 2px 5px #000;
}

.hero-client-version::before,
.hero-client-version::after {
    width: 55px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, #80d6fa);
}

.hero-title-wrap .hero-game-logo {
    width: 100%;
    margin: 0 auto 4px;
    color: transparent;
    font-size: 0;
    line-height: 0;
    -webkit-text-stroke: 0;
    text-shadow: none;
}

.hero-game-logo img {
    display: block;
    width: min(450px, 100%);
    height: auto;
    margin: auto;
}

.hero-client-version::after {
    background: linear-gradient(90deg, #80d6fa, transparent);
}

.hero-expansion {
    margin: 7px 0 0;
    color: #f2f7fa;
    font: 20px/1.2 Georgia, serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px #000;
}

.hero-modes {
    margin: 9px 0 19px;
    color: #e6f5fd;
    font: 16px/1.3 Georgia, serif;
    letter-spacing: 3px;
    text-shadow: 0 2px 5px #000;
}

.hero-modes i,
.feature-content p i {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 8px 3px;
    background: currentColor;
    transform: rotate(45deg);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.fantasy-button {
    display: inline-grid;
    min-width: 240px;
    min-height: 50px;
    padding: 12px 24px;
    place-items: center;
    color: #f7fbff;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.fantasy-button:hover,
.fantasy-button:focus {
    color: #fff;
    transform: translateY(-2px);
}

.fantasy-button-gold {
    color: #1b1103;
    background: linear-gradient(180deg, #ffd969, #d79622 52%, #8c5111);
    border: 1px solid #ffdc78;
    box-shadow: inset 0 0 18px rgba(255, 244, 168, .54), 0 0 13px rgba(223, 156, 33, .34);
}

.fantasy-button-blue {
    background: linear-gradient(180deg, rgba(7, 43, 66, .96), rgba(2, 20, 33, .98));
    border: 1px solid #2f9bcf;
    box-shadow: inset 0 0 18px rgba(30, 130, 181, .22), 0 0 13px rgba(17, 127, 181, .2);
}

.hero-realmlist {
    display: inline-flex;
    margin: 18px 0 0;
    padding: 6px 8px 6px 13px;
    align-items: center;
    gap: 8px;
    color: #c1dbe8;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: rgba(0, 8, 14, .86);
    border: 1px solid rgba(71, 184, 232, .55);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(23, 157, 214, .2), inset 0 0 16px rgba(44, 158, 204, .08);
}

.hero-realmlist button {
    padding: 4px 8px;
    color: #fff0ac;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: none;
    background: rgba(178, 121, 28, .18);
    border: 1px dashed rgba(245, 194, 86, .72);
    border-radius: 2px;
    text-shadow: 0 1px 3px #000;
}

.hero-realmlist button:hover {
    color: #fff;
    background: rgba(185, 127, 31, .32);
    border-color: #f5ca6b;
}

.page-stack {
    position: relative;
    z-index: 5;
    margin-top: -30px;
}

/* Status */
.status-bar {
    position: relative;
    display: grid;
    min-height: 92px;
    padding: 13px 24px;
    grid-template-columns: 1.05fr 1fr 1fr 1fr 1.15fr;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(23, 94, 128, .08), transparent 18%, transparent 82%, rgba(23, 94, 128, .08)),
        rgba(3, 19, 31, .97);
    border: 1px solid rgba(67, 165, 215, .36);
    box-shadow: inset 0 0 26px rgba(17, 105, 151, .1);
    filter: drop-shadow(0 12px 16px rgba(0,0,0,.38));
}

.status-item {
    display: flex;
    min-width: 0;
    min-height: 52px;
    padding: 5px 18px;
    align-items: center;
    gap: 12px;
    text-align: left;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(74, 148, 189, .2);
}

button.status-item:hover {
    background: rgba(37, 149, 202, .08);
}

.status-item small {
    display: block;
    overflow: hidden;
    color: #a4c0d1;
    font-size: 10px;
    letter-spacing: .4px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-item strong {
    display: block;
    overflow: hidden;
    color: #f1f7fa;
    font-size: 21px;
    letter-spacing: .7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-online strong {
    color: var(--success);
    text-transform: uppercase;
}

.status-icon {
    position: relative;
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border: 1px solid rgba(48, 210, 131, .25);
    border-radius: 50%;
}

.status-icon i {
    width: 17px;
    height: 17px;
    background: #67e945;
    border-radius: 50%;
    box-shadow: 0 0 12px #67e945, 0 0 26px rgba(103,233,69,.65);
}

.status-symbol {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    color: #39c9ff;
    font-size: 27px;
    text-shadow: 0 0 14px #158fca;
}

.download-button {
    display: flex;
    min-height: 48px;
    margin-left: 16px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #f6fbff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    background: rgba(5, 30, 46, .74);
    border: 1px solid #4ad0ff;
    box-shadow: inset 0 0 18px rgba(34, 178, 231, .16), 0 0 12px rgba(46, 201, 255, .15);
}

.download-button:hover {
    color: #fff;
    box-shadow: inset 0 0 22px rgba(34, 178, 231, .23), 0 0 18px rgba(46, 201, 255, .3);
}

/* Rates */
.rates {
    position: relative;
    z-index: 4;
    display: grid;
    min-height: 156px;
    margin-top: 14px;
    grid-template-columns: repeat(7, 1fr);
    background: linear-gradient(180deg, rgba(6, 26, 40, .98), rgba(2, 15, 25, .98));
    border: 1px solid rgba(67, 150, 197, .35);
    box-shadow: inset 0 0 28px rgba(0,0,0,.55), 0 12px 25px rgba(0,0,0,.26);
}

.rate-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 8px 6px 12px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-right: 1px solid rgba(67, 150, 197, .24);
    cursor: help;
}

.rate-card:focus-visible {
    outline: 1px solid #54c9f3;
    outline-offset: -3px;
}

.rate-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    z-index: 20;
    width: min(245px, 80vw);
    padding: 11px 13px;
    color: #d9eaf3;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    text-transform: none;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, rgba(7, 29, 44, .99), rgba(1, 10, 17, .99));
    border: 1px solid rgba(78, 190, 237, .6);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .58), inset 0 0 18px rgba(34, 159, 210, .1);
    transform: translate(-50%, 7px);
    transition: opacity .16s ease, transform .16s ease;
}

.rate-tooltip::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 10px;
    height: 10px;
    content: "";
    background: #03111c;
    border-right: 1px solid rgba(78, 190, 237, .6);
    border-bottom: 1px solid rgba(78, 190, 237, .6);
    transform: translate(-50%, -5px) rotate(45deg);
}

.rate-card:hover .rate-tooltip,
.rate-card:focus-visible .rate-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}

.rate-card:first-child .rate-tooltip { left: 8px; transform: translate(0, 7px); }
.rate-card:first-child:hover .rate-tooltip,
.rate-card:first-child:focus-visible .rate-tooltip { transform: translate(0, 0); }
.rate-card:last-child .rate-tooltip { right: 8px; left: auto; transform: translate(0, 7px); }
.rate-card:last-child:hover .rate-tooltip,
.rate-card:last-child:focus-visible .rate-tooltip { transform: translate(0, 0); }

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

.rate-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 50% 38%, rgba(34, 147, 200, .14), transparent 50%);
}

.rate-art {
    display: block;
    width: 84px;
    height: 84px;
    background-image: url("../images/uzoria/rates-server-blocks.png");
    background-repeat: no-repeat;
    background-size: 300% 200%;
    filter: drop-shadow(0 5px 8px rgba(0,0,0,.48));
}

.rate-art.sprite-1 { background-position: 0 0; }
.rate-art.sprite-2 { background-position: 50% 0; }
.rate-art.sprite-3 { background-position: 100% 0; }
.rate-art.sprite-4 { background-position: 0 100%; }
.rate-art.sprite-5 { background-position: 50% 100%; }
.rate-art.sprite-6 { background-position: 100% 100%; }
.rate-art.sprite-7 {
    position: relative;
    background-image: none;
}

.rate-art.sprite-7::after {
    position: absolute;
    inset: 8px;
    display: grid;
    place-items: center;
    content: "▤";
    color: #d6b36f;
    font: 52px/1 Georgia, serif;
    text-shadow: 0 0 12px rgba(57, 184, 235, .55), 0 3px 2px #000;
    border: 1px solid rgba(66, 175, 222, .24);
    border-radius: 6px;
}

.rate-card small,
.rate-card strong {
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
}

.rate-card small {
    min-height: 28px;
    color: #e1edf4;
    font-size: 9px;
}

.rate-card strong {
    color: #f0c45c;
    font: 700 20px/1 Georgia, serif;
    text-shadow: 0 2px 4px #000;
}

/* Feature cards */
.feature-grid {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-card {
    position: relative;
    display: block;
    width: 100%;
    min-height: 225px;
    padding: 0;
    overflow: hidden;
    color: inherit;
    text-align: initial;
    appearance: none;
    -webkit-appearance: none;
    background-color: #03121d;
    background-image: url("../images/uzoria/line-site-text-trailer.png");
    background-repeat: no-repeat;
    background-size: 400% 100%;
    border: 1px solid rgba(68, 158, 207, .3);
    box-shadow: inset 0 0 22px rgba(0,0,0,.28), 0 10px 20px rgba(0,0,0,.28);
    cursor: pointer;
}

.feature-card:hover,
.feature-card:focus-visible {
    border-color: rgba(90, 204, 250, .72);
    box-shadow: inset 0 0 30px rgba(0,0,0,.18), 0 0 24px rgba(34, 163, 219, .22);
    transform: translateY(-3px);
    outline: 0;
}

.feature-pvp { background-position: 0 0; }
.feature-pve { background-position: 33.333% 0; }
.feature-solo { background-position: 66.666% 0; }
.feature-trailer { background-position: 100% 0; }

.feature-card::after {
    position: absolute;
    inset: 0;
    content: "";
    z-index: 1;
    background: linear-gradient(180deg, transparent 28%, rgba(1, 9, 15, .2) 50%, rgba(1, 9, 15, .92) 100%);
}

.trailer-teaser {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.feature-content {
    position: absolute;
    right: 10px;
    bottom: 14px;
    left: 10px;
    z-index: 2;
    text-align: center;
}

.feature-content h2,
.feature-title {
    display: block;
    margin: 0;
    color: #fff;
    font: 31px/1.1 Georgia, serif;
    text-shadow: 0 3px 5px #000;
}

.feature-content h2 em,
.feature-title em {
    color: var(--gold);
    font-style: normal;
}

.feature-content p,
.feature-subtitle {
    display: block;
    margin: 4px 0 10px;
    color: #c6d9e5;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.feature-content a,
.feature-more {
    display: inline-block;
    min-width: 125px;
    padding: 7px 15px;
    color: #e8f6fe;
    font-size: 10px;
    text-transform: uppercase;
    background: rgba(1, 12, 21, .75);
    border: 1px solid rgba(58, 162, 215, .45);
}

.feature-title-small {
    font: 600 16px/1.2 "Uzoria Sans", Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.play-button {
    display: grid;
    width: 66px;
    height: 66px;
    margin: 14px auto 8px;
    padding-left: 5px;
    place-items: center;
    color: #fff;
    font-size: 27px;
    background: rgba(1, 11, 19, .73);
    border: 2px solid #dff8ff;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(84, 211, 255, .32);
}

.feature-trailer .feature-content {
    top: 16px;
    bottom: auto;
}

.feature-trailer .feature-content h2 {
    font: 15px "Uzoria Sans", sans-serif;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    margin-top: 22px;
    margin-bottom: 26px;
    grid-template-columns: 1.42fr .92fr .86fr;
    gap: 18px;
}

.panel-frame {
    min-width: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(4, 20, 31, .97), rgba(2, 13, 22, .97));
    border: 1px solid rgba(53, 135, 181, .29);
    box-shadow: inset 0 0 30px rgba(0,0,0,.32), 0 9px 20px rgba(0,0,0,.22);
}

.section-heading {
    display: flex;
    min-height: 34px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(58, 135, 177, .18);
}

.section-heading h2 {
    margin: 0 0 9px;
    color: #f2f7fa;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.section-heading a {
    margin-bottom: 8px;
    color: #54c5f4;
    font-size: 9px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(84, 197, 244, .45);
}

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

.news-item {
    display: grid;
    min-height: 65px;
    padding: 5px 0;
    grid-template-columns: 86px 1fr;
    gap: 13px;
    align-items: center;
    border-bottom: 1px solid rgba(55, 130, 169, .14);
}

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

.news-thumb {
    display: block;
    width: 86px;
    height: 56px;
    overflow: hidden;
    background-image: url("../images/uzoria/line-site-text-trailer.png");
    background-repeat: no-repeat;
    background-size: 400% 100%;
    border: 1px solid rgba(72, 162, 205, .32);
}

.news-thumb img,
.full-news-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item time {
    color: #547e98;
    font-size: 9px;
}

.news-item h3 {
    margin: 1px 0 2px;
    color: #edf6fb;
    font-size: 12px;
    font-weight: 600;
}

.news-item p {
    margin: 0;
    color: #819daf;
    font-size: 9px;
}

.ranking-tabs {
    display: grid;
    margin-bottom: 5px;
    grid-template-columns: repeat(4, 1fr);
}

.ranking-tabs button {
    padding: 8px 4px;
    color: #7f9aac;
    font-size: 10px;
    background: rgba(3, 17, 27, .84);
    border: 1px solid rgba(52, 130, 171, .22);
}

.ranking-tabs button.is-active {
    color: #ffe4a1;
    background: linear-gradient(180deg, rgba(146, 93, 19, .44), rgba(26, 24, 18, .4));
    border-bottom-color: #d69d3f;
}

.ranking-list {
    display: none;
}

.ranking-list.is-active {
    display: block;
}

.ranking-row {
    display: grid;
    min-height: 27px;
    padding: 2px 7px;
    grid-template-columns: 26px 20px 1fr auto;
    align-items: center;
    gap: 6px;
    color: #c9d9e3;
    font-size: 10px;
    border-bottom: 1px solid rgba(59, 133, 174, .18);
}

.ranking-row-team {
    grid-template-columns: 26px 20px minmax(0, 1fr) auto auto;
    gap: 5px;
}

.ranking-row img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.ranking-row strong,
.ranking-row .character-link,
.ranking-row .team-link {
    overflow: hidden;
    color: #e9f2f7;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-team-icon {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: #f0c65d;
    font-size: 10px;
    line-height: 1;
    background: linear-gradient(145deg, #123d55, #061722);
    border: 1px solid rgba(94, 184, 225, .48);
    border-radius: 4px 4px 7px 7px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .65);
}

.team-link {
    min-width: 0;
    overflow: hidden;
    color: #eaf6fb;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-link:hover,
.team-link:focus {
    color: #ffd77d;
    text-decoration: underline;
}

.ranking-record {
    color: #82a8bb;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.ranking-rating {
    color: #f2cb74 !important;
    font-variant-numeric: tabular-nums;
}

.ranking-record-short { display: none; }

.character-link {
    color: #eaf6fb;
    font-weight: 600;
}

.character-link:hover,
.character-link:focus {
    color: #ffd77d;
    text-decoration: underline;
}

.rank-number {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: #dbe8ee;
    background: #0b2839;
    border-radius: 3px;
}

.rank-number.is-first {
    color: #2b1b02;
    background: linear-gradient(180deg, #ffd967, #d18b1d);
}

.empty-state {
    margin: 18px 5px;
    color: #7894a7;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.start-steps {
    padding: 0;
    margin: 0 0 14px;
    list-style: none;
}

.start-steps li {
    position: relative;
    display: grid;
    min-height: 58px;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 10px;
}

.start-steps li:not(:last-child)::after {
    position: absolute;
    bottom: -4px;
    left: 22px;
    width: 1px;
    height: 14px;
    content: "";
    background: linear-gradient(#b88131, transparent);
}

.start-steps li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #f3c65f;
    font: 20px Georgia, serif;
    background: rgba(8, 26, 36, .78);
    border: 1px solid #89642e;
    border-radius: 50%;
    clip-path: polygon(50% 0, 88% 17%, 100% 50%, 84% 86%, 50% 100%, 15% 86%, 0 50%, 16% 16%);
}

.start-steps strong,
.start-steps small {
    display: block;
}

.start-steps strong {
    color: #f2f7fa;
    font-size: 11px;
    text-transform: uppercase;
}

.start-steps small {
    margin-top: 2px;
    color: #718da0;
    font-size: 9px;
}

.outline-gold-button {
    width: 100%;
    padding: 11px;
    color: #ffe4a2;
    font-size: 10px;
    text-transform: uppercase;
    background: rgba(26, 20, 10, .22);
    border: 1px solid #d09a40;
    box-shadow: inset 0 0 14px rgba(218, 158, 55, .1);
}

/* Closing banner and footer */
.closing-banner {
    position: relative;
    min-height: 160px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(1, 11, 18, .25), rgba(1, 12, 20, .55)),
        url("../images/uzoria/Background-up-horde-alliance.png") no-repeat center 71% / cover;
    border-top: 1px solid rgba(69, 166, 217, .22);
    border-bottom: 1px solid rgba(69, 166, 217, .22);
}

.closing-banner blockquote {
    margin: 0 0 15px;
    color: #d8eef9;
    font: 19px Georgia, serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 7px #000;
    border: 0;
}

.closing-banner p {
    margin: 0;
    color: #b5d0de;
    font: 10px Georgia, serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.site-footer {
    min-height: 115px;
    padding: 26px 0;
    background: #020c14;
}

.footer-inner {
    display: grid;
    grid-template-columns: 190px 1fr 220px;
    align-items: center;
    gap: 25px;
}

.footer-brand strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 29px;
}

.footer-brand-flag {
    display: block;
    width: 40px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 7px rgba(61, 193, 238, .42));
}

.footer-center {
    text-align: center;
}

.footer-center nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-center nav a,
.footer-center nav button,
.footer-center nav span {
    padding: 0;
    color: #b2c7d3;
    font-size: 9px;
    letter-spacing: .7px;
    text-transform: uppercase;
    background: transparent;
    border: 0;
}

.footer-center p {
    margin: 10px 0 0;
    color: #536f80;
    font-size: 8px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.developer-credit {
    color: #d6b260;
    text-transform: none;
}

.developer-credit:hover { color: #f4d885; }

.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #d9eff9;
    font-size: 11px;
    background: linear-gradient(180deg, #0a4770, #05243b);
    border: 1px solid rgba(58, 167, 223, .42);
    border-radius: 50%;
}

.socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 14px rgba(50, 185, 241, .32);
}

.socials svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.socials small {
    width: 100%;
    color: #8ca9ba;
    font-size: 9px;
    letter-spacing: 1.8px;
    text-align: right;
    text-transform: uppercase;
}

/* Inner pages */
.inner-page {
    min-height: calc(100vh - 150px);
    padding-bottom: 70px;
}

.inner-hero {
    position: relative;
    min-height: 350px;
    display: grid;
    padding-top: 66px;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(1, 10, 17, .24), rgba(2, 13, 22, .95)),
        url("../images/uzoria/Background-up-horde-alliance.png") no-repeat center 40% / cover;
    border-bottom: 1px solid rgba(68, 174, 224, .34);
}

.inner-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 50% 32%, rgba(25, 161, 218, .2), transparent 34rem);
    pointer-events: none;
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 790px;
    padding: 70px 20px 58px;
}

.inner-hero-content > span,
.eyebrow {
    color: #e6bf6a;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.inner-hero h1 {
    margin: 10px 0 12px;
    color: #fff;
    font: 700 48px/1.1 Georgia, serif;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px #000, 0 0 24px rgba(45, 171, 229, .35);
}

.inner-hero p {
    max-width: 690px;
    margin: 0 auto;
    color: #b8d0dc;
    font-size: 16px;
}

.inner-stack {
    position: relative;
    z-index: 2;
    display: grid;
    margin-top: -34px;
    gap: 22px;
}

.lore-intro {
    padding: 34px clamp(24px, 6vw, 75px);
    text-align: center;
}

.lore-intro h2,
.download-stage h2,
.faq-panel > h2,
.split-story h2,
.content-card h2,
.full-news-card h2 {
    color: #f6fbff;
    font-family: Georgia, serif;
}

.lore-intro h2 {
    margin: 6px 0 13px;
    font-size: 29px;
}

.lore-intro > p:last-child {
    max-width: 830px;
    margin: auto;
    color: #a8c0ce;
    font-size: 16px;
}

.project-pillars,
.connection-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.content-card {
    position: relative;
    min-height: 230px;
    padding: 30px 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(7, 29, 43, .98), rgba(2, 13, 22, .98));
    border: 1px solid rgba(63, 158, 207, .32);
    box-shadow: inset 0 0 28px rgba(32, 121, 163, .07), 0 14px 28px rgba(0,0,0,.25);
}

.content-card::after {
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 150px;
    height: 150px;
    content: "";
    background: radial-gradient(circle, rgba(36, 164, 219, .12), transparent 65%);
}

.content-card h2 {
    margin: 18px 0 10px;
    font-size: 23px;
}

.content-card p {
    position: relative;
    z-index: 1;
    color: #9db5c3;
    font-size: 15px;
}

.content-card a {
    position: relative;
    z-index: 1;
    color: #f0c66c;
    font-size: 14px;
}

.card-glyph,
.download-emblem {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #f1c86e;
    font: 28px Georgia, serif;
    background: radial-gradient(circle, rgba(28, 113, 156, .38), rgba(3, 19, 30, .85));
    border: 1px solid rgba(62, 177, 226, .44);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.card-glyph { margin: 8px auto 26px; }

.project-pillars .content-card {
    text-align: center;
}

.split-story {
    display: grid;
    padding: 38px;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
}

.rune-list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.rune-list li {
    position: relative;
    padding: 7px 0 7px 24px;
    color: #a9c0cd;
}

.rune-list li::before {
    position: absolute;
    top: 9px;
    left: 2px;
    color: #e3b755;
    content: "◆";
    font-size: 10px;
}

.story-quote {
    display: flex;
    padding: 28px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: rgba(0, 8, 14, .55);
    border: 1px solid rgba(69, 154, 196, .2);
}

.story-quote blockquote {
    color: #f2d693;
    font: 20px/1.5 Georgia, serif;
}

.story-quote p {
    color: #829dac;
}

.story-quote .fantasy-button {
    min-width: 0;
    margin-top: 12px;
}

.download-stage {
    display: grid;
    min-height: 230px;
    padding: 36px;
    grid-template-columns: 82px 1fr auto;
    align-items: center;
    gap: 28px;
}

.download-emblem {
    width: 72px;
    height: 72px;
    font-size: 35px;
}

.download-stage h2 {
    margin: 4px 0 8px;
    font-size: 28px;
}

.download-stage p {
    max-width: 610px;
    color: #9fb7c5;
}

.file-meta {
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 8px;
}

.file-meta span {
    padding: 6px 9px;
    color: #87a4b5;
    font-size: 11px;
    background: rgba(4, 22, 34, .85);
    border: 1px solid rgba(64, 145, 187, .22);
}

.file-meta strong {
    color: #dcebf2;
}

.fantasy-button.is-disabled {
    opacity: .68;
    cursor: not-allowed;
}

.step-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #f2c75f;
    font: 22px Georgia, serif;
    border: 1px solid #936c31;
    border-radius: 50%;
}

.realmlist-copy {
    display: flex;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #fff0aa;
    text-align: left;
    background: rgba(0, 8, 14, .82);
    border: 1px solid rgba(222, 169, 66, .56);
}

.realmlist-copy code {
    color: #fff0aa;
    background: transparent;
}

.realmlist-copy span {
    color: #72cdec;
    font-size: 10px;
    text-transform: uppercase;
}

.help-strip {
    display: flex;
    padding: 22px 28px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(4, 22, 34, .92);
    border: 1px solid rgba(64, 153, 198, .25);
}

.help-strip strong,
.help-strip span {
    display: block;
}

.help-strip strong {
    color: #f4f8fa;
    font-size: 16px;
}

.help-strip span {
    color: #809cac;
}

.help-strip .outline-gold-button {
    width: auto;
    min-width: 220px;
    text-align: center;
}

.source-notice {
    padding: 13px 18px;
    color: #d7c89d;
    background: rgba(135, 91, 18, .12);
    border: 1px solid rgba(203, 151, 58, .34);
}

.forum-source-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.forum-source-links a {
    padding: 10px 16px;
    color: #cceaf7;
    background: rgba(5, 29, 43, .88);
    border: 1px solid rgba(66, 165, 210, .35);
}

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

.full-news-card {
    display: grid;
    overflow: hidden;
    grid-template-columns: 250px 1fr;
}

.full-news-art {
    min-height: 220px;
    overflow: hidden;
    background-image: url("../images/uzoria/line-site-text-trailer.png");
    background-repeat: no-repeat;
    background-size: 400% 100%;
}

.full-news-copy {
    padding: 28px 30px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #6e94a9;
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.news-meta span {
    color: #e0b55c;
}

.full-news-card h2 {
    margin: 9px 0 12px;
    font-size: 25px;
}

.full-news-card p {
    color: #a5bdca;
    font-size: 15px;
    line-height: 1.65;
}

.full-news-card a {
    color: #f0c466;
}

.contact-card {
    text-align: center;
}

.faq-panel {
    padding: 32px;
}

.faq-panel > h2 {
    margin: 4px 0 18px;
}

.faq-panel details {
    background: rgba(1, 10, 17, .55);
    border-top: 1px solid rgba(61, 145, 186, .2);
}

.faq-panel details:last-child {
    border-bottom: 1px solid rgba(61, 145, 186, .2);
}

.faq-panel summary {
    padding: 15px 18px;
    color: #e9f4f9;
    cursor: pointer;
}

.faq-panel details p {
    padding: 0 18px 16px;
    margin: 0;
    color: #9bb3c0;
}

.faq-panel code {
    color: #f3d27e;
    background: rgba(160, 104, 20, .12);
}

.ratings-browser {
    min-height: 650px;
    padding: 28px;
}

.ratings-toolbar {
    display: grid;
    margin-bottom: 18px;
    grid-template-columns: minmax(360px, .7fr) minmax(220px, .3fr);
    gap: 16px;
}

.ranking-search input {
    width: 100%;
    height: 42px;
    padding: 9px 13px;
    color: #e7f5fb;
    background: rgba(0, 8, 14, .75);
    border: 1px solid rgba(58, 151, 197, .36);
    outline: 0;
}

.ranking-search input:focus {
    border-color: #4bc2ee;
}

.ranking-table {
    display: none;
}

.ranking-table.is-active {
    display: block;
}

.ranking-table-head,
.ranking-table-row {
    display: grid;
    min-height: 48px;
    padding: 7px 16px;
    grid-template-columns: 90px minmax(180px, 1fr) 120px 140px;
    align-items: center;
    gap: 12px;
}

[data-ranking-row][hidden] {
    display: none !important;
}

.ranking-search-empty {
    display: none;
    padding: 30px 18px;
    color: #91aeba;
    text-align: center;
    border-bottom: 1px solid rgba(58, 132, 169, .16);
}

.ranking-search-empty.is-visible { display: block; }

.ranking-table-head {
    color: #668da3;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(1, 10, 17, .76);
    border: 1px solid rgba(62, 146, 187, .2);
}

.ranking-table-row {
    color: #b8ccd7;
    border-bottom: 1px solid rgba(58, 132, 169, .16);
}

.ranking-table-row:nth-child(odd) {
    background: rgba(8, 37, 52, .22);
}

.ranking-table-row > :last-child {
    color: #f2cb74;
}

.ranking-player {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.ranking-player img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.ranking-team {
    min-width: 0;
}

.ranking-player strong {
    overflow: hidden;
    color: #f1f7fa;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-player .character-link {
    overflow: hidden;
    color: #f1f7fa;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Personal account */
.account-stack {
    gap: 18px;
}

.account-alert {
    margin: 0;
    padding: 14px 18px;
    color: #dcecf4;
    background: rgba(4, 25, 38, .98);
    border: 1px solid rgba(70, 155, 198, .35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.account-alert-success {
    color: #c7ffd0;
    border-color: rgba(73, 190, 102, .56);
}

.account-alert-error {
    color: #ffd2d2;
    border-color: rgba(218, 84, 84, .58);
}

.account-login-panel {
    display: grid;
    min-height: 520px;
    padding: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    align-items: center;
    gap: clamp(30px, 7vw, 90px);
}

.account-login-copy h2,
.account-login-form h2,
.account-summary h2 {
    margin: 9px 0 16px;
    color: #f5fbff;
    font: 700 32px/1.15 Georgia, serif;
}

.account-login-copy > p,
.account-security > p {
    color: #9cb8c7;
    line-height: 1.75;
}

.account-login-form {
    padding: 28px;
    background: linear-gradient(155deg, rgba(1, 10, 17, .96), rgba(5, 28, 42, .94));
    border: 1px solid rgba(69, 163, 208, .34);
    box-shadow: inset 0 0 34px rgba(0, 0, 0, .42), 0 18px 34px rgba(0, 0, 0, .28);
}

.account-login-form h2 {
    margin-top: 0;
    font-size: 25px;
    text-align: center;
}

.account-summary {
    display: grid;
    padding: 28px 32px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.account-welcome {
    display: flex;
    align-items: center;
    gap: 18px;
}

.account-welcome h2,
.account-welcome p {
    margin-bottom: 0;
}

.account-welcome p {
    color: #86a8b9;
}

.account-avatar {
    display: grid;
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    place-items: center;
    color: #f1c66b;
    font-size: 28px;
    background: radial-gradient(circle, rgba(28, 126, 169, .36), rgba(2, 14, 23, .9));
    border: 1px solid rgba(98, 191, 232, .42);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(51, 174, 222, .2);
}

.account-logout {
    padding: 9px 18px;
    color: #c8dce6;
    background: rgba(2, 15, 24, .8);
    border: 1px solid rgba(64, 153, 197, .35);
}

.account-logout:hover {
    color: #fff;
    border-color: #d29c44;
}

.account-stats {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(62, 144, 183, .2);
}

.account-stats article {
    min-width: 0;
    padding: 20px 18px 4px;
    border-right: 1px solid rgba(62, 144, 183, .16);
}

.account-stats article:last-child {
    border-right: 0;
}

.account-stats small,
.account-stats strong {
    display: block;
}

.account-stats small {
    color: #6f94a7;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.account-stats strong {
    margin-top: 6px;
    overflow: hidden;
    color: #eaf4f8;
    font-size: 14px;
    text-overflow: ellipsis;
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr);
    gap: 18px;
}

.account-characters,
.account-security {
    padding: 24px;
}

.account-characters .section-heading > span {
    margin-bottom: 8px;
    color: #7498aa;
    font-size: 11px;
}

.character-cards {
    display: grid;
    gap: 8px;
}

.character-card {
    display: grid;
    min-height: 78px;
    padding: 12px 14px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    color: #b8ccd7;
    background: linear-gradient(90deg, rgba(7, 35, 50, .62), rgba(2, 15, 24, .35));
    border: 1px solid rgba(56, 137, 178, .2);
}

.character-card:hover {
    color: #d9ebf3;
    border-color: rgba(215, 161, 65, .54);
    transform: translateX(3px);
}

.character-card > img {
    width: 38px;
    height: 38px;
    border: 2px solid #9f722a;
    border-radius: 50%;
}

.character-card > span,
.character-card strong,
.character-card small {
    display: block;
    min-width: 0;
}

.character-card strong {
    color: #f2f8fb;
    font-size: 16px;
}

.character-card small {
    margin-top: 3px;
    overflow: hidden;
    color: #789bac;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.character-card em {
    color: #79c6e7;
    font-size: 11px;
    font-style: normal;
}

.character-card em.is-online {
    color: #69e783;
}

.account-security {
    align-self: start;
}

.account-security .uzoria-form {
    margin-top: 18px;
}

.ranking-pagination {
    display: flex;
    min-height: 44px;
    margin-top: 22px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.ranking-pagination button {
    min-width: 36px;
    height: 36px;
    color: #bad1dd;
    background: rgba(3, 22, 34, .9);
    border: 1px solid rgba(61, 152, 197, .32);
}

.ranking-pagination button.is-active {
    color: #281a03;
    background: linear-gradient(180deg, #f6d06e, #b77920);
    border-color: #f4c65e;
}

.feature-modal-body {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
    gap: 28px;
}

.modal-feature-art {
    min-height: 340px;
    background-image: url("../images/uzoria/line-site-text-trailer.png");
    background-repeat: no-repeat;
    background-size: 400% 100%;
    border: 1px solid rgba(65, 161, 208, .28);
}

.feature-modal-body h3 {
    margin: 3px 0 12px;
    color: #f4d27f;
    font: 25px Georgia, serif;
}

.feature-modal-body p {
    color: #acc1cc;
    font-size: 14px;
}

.feature-modal-body .outline-gold-button {
    display: inline-block;
    width: auto;
    margin-top: 16px;
    padding-right: 25px;
    padding-left: 25px;
}

.trailer-body {
    padding: 0 !important;
    background: #000;
}

.trailer-body video {
    display: block;
    width: 100%;
    max-height: 70vh;
}

.privacy-content {
    padding: 34px 38px;
}

.privacy-intro {
    padding-bottom: 22px;
    margin-bottom: 24px;
    color: #bed0d9;
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(60, 145, 187, .22);
}

.privacy-section + .privacy-section {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid rgba(60, 145, 187, .16);
}

.privacy-section h2 {
    margin: 0 0 10px;
    color: #f1cc73;
    font: 23px/1.25 Georgia, serif;
}

.privacy-section p,
.privacy-section li {
    color: #a8bec9;
    font-size: 14px;
    line-height: 1.7;
}

.privacy-section ul { padding-left: 21px; }
.privacy-section a { color: #66ccef; }

.trailer-placeholder {
    min-height: 420px;
    display: grid;
    padding: 40px;
    place-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(1, 9, 15, .45), rgba(1, 9, 15, .88)),
        url("../images/uzoria/line-site-text-trailer.png") no-repeat right center / 400% 100%;
}

.trailer-placeholder > span {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    place-items: center;
    color: #fff;
    font-size: 27px;
    border: 2px solid #d9f5ff;
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(49, 182, 232, .3);
}

.trailer-placeholder h3 {
    color: #f3d17b;
    font: 28px Georgia, serif;
}

.trailer-placeholder p {
    max-width: 500px;
    color: #a6bcc8;
}

/* Forms and Bootstrap modals */
.uzoria-modal {
    padding-right: 0 !important;
}

.modal-backdrop.in {
    opacity: .84;
}

.uzoria-modal .modal-dialog {
    margin-top: 7vh;
}

.uzoria-modal .modal-content {
    overflow: hidden;
    color: #dfeef6;
    background: linear-gradient(180deg, #071b29, #020d16);
    border: 1px solid rgba(64, 179, 231, .46);
    border-radius: 2px;
    box-shadow: 0 15px 60px rgba(0,0,0,.8), inset 0 0 36px rgba(27, 115, 157, .08);
}

.uzoria-modal .modal-header {
    position: relative;
    padding: 20px 24px 17px;
    text-align: center;
    background: linear-gradient(180deg, rgba(7, 37, 55, .98), rgba(3, 21, 33, .96));
    border-bottom: 1px solid rgba(64, 179, 231, .34);
}

.uzoria-modal .modal-header::after {
    position: absolute;
    right: 18%;
    bottom: -1px;
    left: 18%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.uzoria-modal .modal-title {
    color: #fff;
    font: 26px Georgia, serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.uzoria-modal .modal-header p {
    margin: 4px 0 0;
    color: #8cacbe;
}

.uzoria-modal .close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 3;
    color: #dff7ff;
    font-size: 28px;
    font-weight: 300;
    text-shadow: none;
    opacity: .8;
}

.uzoria-modal .modal-body {
    padding: 24px;
}

.registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 25px;
}

.rules-box {
    max-height: 540px;
    overflow: auto;
    padding: 17px 20px;
    color: #a9bfcc;
    font-size: 12px;
    background: rgba(0, 7, 12, .52);
    border: 1px solid rgba(62, 141, 182, .2);
}

.rules-box > p {
    color: #e7f4fa;
    font-size: 14px;
    text-transform: uppercase;
}

.rules-box ul {
    padding-left: 18px;
}

.rules-box li {
    margin-bottom: 9px;
}

.rules-box strong {
    color: #e2c47e;
}

.uzoria-form label {
    display: block;
    margin-bottom: 13px;
    color: #b9cfdb;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.uzoria-form input[type="text"],
.uzoria-form input[type="email"],
.uzoria-form input[type="password"] {
    display: block;
    width: 100%;
    height: 42px;
    margin-top: 6px;
    padding: 9px 12px;
    color: #edf8fd;
    background: rgba(0, 8, 14, .72);
    border: 1px solid rgba(64, 153, 197, .34);
    border-radius: 2px;
    outline: 0;
}

.uzoria-form input:focus {
    border-color: #4dc8f5;
    box-shadow: 0 0 12px rgba(56, 191, 241, .16);
}

.captcha-wrap {
    margin: 13px 0;
}

.captcha-wrap img {
    max-width: 100%;
}

.form-submit {
    width: 100%;
    min-width: 0;
    margin-top: 5px;
}

.account-tools {
    display: flex;
    margin-top: 13px;
    justify-content: center;
    gap: 12px;
}

.account-tools button,
.copy-realmlist {
    padding: 5px 0;
    color: #76d4f7;
    font-size: 10px;
    background: transparent;
    border: 0;
    border-bottom: 1px dashed rgba(81, 187, 230, .45);
}

.alert {
    border-radius: 2px;
}

.connect-content .content_box1 {
    color: #b6cad5;
    line-height: 1.7;
}

.connect-content .content_box1 p:last-child {
    padding: 12px;
    color: #ffe09a !important;
    background: rgba(165, 110, 25, .12);
    border: 1px solid rgba(203, 148, 57, .34);
}

.copy-realmlist {
    display: block;
    margin: 12px auto 0;
}

.online-list {
    display: grid;
    gap: 4px;
}

.online-list > div {
    display: grid;
    padding: 8px 10px;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 8px;
    background: rgba(9, 39, 55, .42);
    border-bottom: 1px solid rgba(65, 153, 197, .2);
}

.online-list img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.online-list span {
    color: #829faf;
    font-size: 10px;
}

.site-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    max-width: min(370px, calc(100vw - 40px));
    padding: 12px 17px;
    color: #f8e4aa;
    background: rgba(3, 18, 28, .97);
    border: 1px solid #b98433;
    box-shadow: 0 10px 30px rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
    .header-inner { gap: 9px; }
    .primary-nav a { padding-right: 7px; padding-left: 7px; font-size: 10px; }
    .header-actions .language-static { display: none; }
    .status-bar { padding-right: 16px; padding-left: 16px; }
    .status-item { padding-right: 10px; padding-left: 10px; }
    .dashboard-grid { grid-template-columns: 1.25fr 1fr; }
    .start-panel { grid-column: 1 / -1; }
    .start-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .start-steps li:not(:last-child)::after { display: none; }
}

@media (max-width: 980px) {
    .site-header { position: fixed; }
    .header-inner { justify-content: space-between; }
    .menu-toggle { display: block; order: 3; }
    .header-actions { margin-left: auto; }
    .primary-nav {
        position: absolute;
        top: 66px;
        right: 0;
        left: 0;
        display: none;
        padding: 10px 16px 16px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(2, 14, 23, .98);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 25px rgba(0,0,0,.55);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 10px 8px; }
    .primary-nav a::after { right: auto; bottom: 5px; width: 100px; }
    .hero, .hero-inner { min-height: 650px; }
    .hero-kicker { margin-bottom: 62px; }
    .status-bar { grid-template-columns: repeat(2, 1fr); background-image: none; border: 1px solid var(--line); }
    .status-item { border-bottom: 1px solid rgba(74,148,189,.15); }
    .download-button { min-height: 52px; margin: 10px 0 0; grid-column: 1 / -1; }
    .rates { grid-template-columns: repeat(4, 1fr); }
    .rate-card { border-bottom: 1px solid rgba(67,150,197,.18); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .project-pillars, .connection-grid, .support-grid { grid-template-columns: 1fr; }
    .content-card { min-height: 0; }
    .download-stage { grid-template-columns: 72px 1fr; }
    .download-stage .fantasy-button { grid-column: 1 / -1; }
    .full-news-card { grid-template-columns: 190px 1fr; }
    .ratings-toolbar { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .site-shell { width: min(100% - 20px, var(--shell)); }
    .brand-copy strong { font-size: 20px; }
    .brand-flag { width: 36px; height: 34px; }
    .header-login { padding: 8px 9px; font-size: 10px; }
    .header-register { min-width: 0; padding: 8px 10px; }
    .hero, .hero-inner { min-height: 610px; }
    .hero-inner { padding-top: 95px; }
    .hero-art { right: -420px; left: -420px; height: 550px; }
    .hero-kicker { margin-bottom: 52px; font-size: 10px; letter-spacing: 3px; }
    .hero-game-logo img { width: min(360px, 100%); }
    .hero-realm-name { font-size: 34px; letter-spacing: 2px; }
    .hero-client-version { margin-top: 7px; gap: 8px; font-size: 17px; letter-spacing: 2px; }
    .hero-client-version::before, .hero-client-version::after { width: 38px; }
    .hero-expansion { font-size: 14px; letter-spacing: 2px; }
    .hero-modes { font-size: 12px; }
    .hero-buttons { width: 100%; flex-direction: column; align-items: center; gap: 9px; }
    .fantasy-button { width: min(290px, 92%); min-width: 0; min-height: 44px; }
    .page-stack { margin-top: -16px; }
    .status-bar { grid-template-columns: 1fr; padding: 8px; }
    .status-item { border-right: 0; }
    .download-button { grid-column: auto; }
    .rates { grid-template-columns: repeat(2, 1fr); }
    .rate-card { min-height: 140px; }
    .rate-card:last-child { grid-column: 1 / -1; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 260px; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .start-panel { grid-column: auto; }
    .start-steps { grid-template-columns: 1fr; }
    .news-item { grid-template-columns: 74px 1fr; }
    .news-thumb { width: 74px; height: 52px; }
    .registration-layout { grid-template-columns: 1fr; }
    .rules-box { max-height: 330px; }
    .uzoria-modal .modal-dialog { margin: 12px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: inline-block; }
    .socials { justify-content: center; }
    .socials small { text-align: center; }
    .closing-banner blockquote { font-size: 15px; letter-spacing: 1.5px; }
    .inner-hero { min-height: 310px; padding-top: 60px; }
    .inner-hero-content { padding: 55px 8px 48px; }
    .inner-hero h1 { font-size: 36px; }
    .inner-hero p { font-size: 14px; }
    .inner-stack { margin-top: -20px; }
    .lore-intro, .split-story, .download-stage, .faq-panel, .ratings-browser, .privacy-content { padding: 24px 18px; }
    .split-story { grid-template-columns: 1fr; gap: 20px; }
    .download-stage { grid-template-columns: 1fr; text-align: center; }
    .download-emblem { margin: auto; }
    .file-meta, .forum-source-links { justify-content: center; }
    .help-strip { align-items: stretch; flex-direction: column; text-align: center; }
    .help-strip .outline-gold-button { min-width: 0; }
    .full-news-card { grid-template-columns: 1fr; }
    .full-news-art { min-height: 170px; }
    .full-news-copy { padding: 22px 19px; }
    .forum-source-links { flex-direction: column; text-align: center; }
    .ratings-toolbar .ranking-tabs { grid-template-columns: repeat(2, 1fr); }
    .ranking-table-head, .ranking-table-row { padding-right: 8px; padding-left: 8px; grid-template-columns: 58px minmax(120px, 1fr) 65px 80px; gap: 6px; font-size: 11px; }
    .ranking-table-head { font-size: 8px; }
    .ranking-record-long { display: none; }
    .ranking-record-short { display: inline; }
    .feature-modal-body { grid-template-columns: 1fr; }
    .modal-feature-art { min-height: 210px; }
    .trailer-placeholder { min-height: 320px; padding: 25px; }
    .account-login-panel { min-height: 0; padding: 24px 18px; grid-template-columns: 1fr; gap: 24px; }
    .account-login-form { padding: 22px 16px; }
    .account-summary { padding: 22px 18px; grid-template-columns: 1fr; }
    .account-welcome { align-items: flex-start; }
    .account-stats { grid-template-columns: repeat(2, 1fr); }
    .account-stats article:nth-child(2) { border-right: 0; }
    .account-grid { grid-template-columns: 1fr; }
    .character-card { grid-template-columns: 38px minmax(0, 1fr); }
    .character-card em { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
