@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
    --bg: #070708;
    --bg-light: #0d0d10;
    --text: #f5f2ed;
    --gray: #96918b;
    --red: #bd171e;
    --red-light: #ff3138;
    --border: rgba(255, 255, 255, 0.09);
}

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

body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(150, 10, 20, .12), transparent 30%),
        #070708;
    color: var(--text);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
    background-size: 50px 50px;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.cursor-light {
    width: 500px;
    height: 500px;
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(190, 20, 30, .13), transparent 68%);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

a { color: inherit; text-decoration: none; }
.section { padding: 130px 0; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: .3s ease;
    background: linear-gradient(to bottom, rgba(7,7,8,.9), transparent);
}

.header.scrolled {
    background: rgba(7,7,8,.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 15px; }

.logo-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    transform: rotate(45deg);
    border: 1px solid rgba(255,255,255,.2);
    font-family: "Oswald";
    font-weight: 700;
    font-size: 10px;
}

.logo-text {
    font-weight: 800;
    font-size: 19px;
    letter-spacing: .15em;
}

.logo-text strong { color: var(--red-light); }

.nav { display: flex; gap: 35px; }
.nav a { color: #aaa7a2; font-size: 17px; font-weight: 650; transition: .2s; }
.nav a:hover { color: white; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header-button {
    border-color: rgba(255, 49, 56, .34);
    color: #ffd7d8;
}

.admin-header-button:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.header-button {
    padding: 15px 23px;
    border: 1px solid rgba(255,255,255,.12);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
    transition: .25s;
}

.header-button:hover { background: white; color: black; }

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(to top, #070708, transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.subtitle {
    color: #bbb7b1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .3em;
    margin-bottom: 20px;
}

.subtitle::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 1px;
    margin-right: 12px;
    vertical-align: middle;
    background: var(--red-light);
}

h1, h2, h3 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(70px, 8vw, 120px);
    line-height: .86;
    letter-spacing: -.035em;
    margin: 0 0 35px;
}

h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.82);
}

.hero-description {
    max-width: 590px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 40px 0 55px;
}

.main-button, .submit-button {
    border: none;
    min-height: 56px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    color: white;
    background: linear-gradient(135deg, #cc1d25, #8e0d13);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .13em;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(190,20,30,.18);
    transition: .25s ease;
}

.main-button:hover, .submit-button:hover {
    transform: translateY(-4px);
    filter: brightness(1.15);
    box-shadow: 0 25px 55px rgba(190,20,30,.3);
}

.submit-button:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.arrow { font-size: 18px; transition: .25s; }
.main-button:hover .arrow, .submit-button:hover .arrow { transform: translate(4px,-4px); }

.simple-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    position: relative;
}

.simple-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 1px;
    width: 35%;
    background: var(--red-light);
    transition: .3s;
}

.simple-link:hover::after { width: 100%; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 620px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.step { padding: 20px; border-right: 1px solid var(--border); }
.step:first-child { padding-left: 0; }
.step:last-child { border: 0; }
.step span { color: var(--red-light); font-family: "Oswald"; }
.step p { color: #918d87; font-size: 11px; margin: 5px 0 0; }

.hero-visual { position: relative; }

.game-card {
    position: relative;
    width: min(100%, 440px);
    aspect-ratio: .8;
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(circle at center, rgba(175,15,24,.15), transparent 35%),
        linear-gradient(145deg, #111114, #08080a);
    box-shadow: 0 35px 100px rgba(0,0,0,.55);
}

.game-card::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255,255,255,.05);
}

.game-card-line {
    position: absolute;
    inset: 40px;
    border: 1px dashed rgba(255,255,255,.06);
}

.classified {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 8px;
    letter-spacing: .2em;
    color: #77736e;
}

.game-version {
    position: absolute;
    right: 28px;
    bottom: 28px;
    font-size: 8px;
    letter-spacing: .2em;
    color: #77736e;
}

.game-title {
    position: absolute;
    left: 30px;
    bottom: 28px;
    font-family: "Oswald";
    font-size: 14px;
    letter-spacing: .12em;
}

.emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%,-50%);
    display: grid;
    place-items: center;
}

.ring { position: absolute; border-radius: 50%; }

.ring-1 {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,.13);
    animation: rotate 25s linear infinite;
}

.ring-1::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border-top: 2px solid var(--red);
    border-right: 2px solid transparent;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border: 1px dashed rgba(255,255,255,.16);
    animation: rotateReverse 18s linear infinite;
}

.emblem-logo {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    transform: rotate(45deg);
    background: #111114;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 0 60px rgba(190,20,30,.25);
    font-family: "Oswald";
    font-size: 37px;
    font-weight: 700;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.circle-one {
    width: 600px;
    height: 600px;
    right: -200px;
    top: 50px;
    background: radial-gradient(circle, rgba(175,10,20,.15), transparent 70%);
}

.circle-two {
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -250px;
    border: 1px solid rgba(255,255,255,.03);
}

.scroll-down {
    position: absolute;
    z-index: 5;
    bottom: 25px;
    left: 50%;
    width: 28px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 100px;
}

.scroll-down span {
    position: absolute;
    width: 3px;
    height: 7px;
    left: 50%;
    top: 8px;
    background: var(--red-light);
    border-radius: 100px;
    transform: translateX(-50%);
    animation: scrollDown 1.8s infinite;
}

.section-header { max-width: 800px; margin-bottom: 55px; }

h2 {
    margin: 0;
    font-size: clamp(45px, 6vw, 80px);
    line-height: .95;
}

h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.7);
}

.about-title {
    line-height: 1;
}

.about-title .about-title-main {
    display: block;
    color: var(--text);
    -webkit-text-stroke: 0;
    line-height: 1;
}

.about-title .about-title-outline {
    display: block;
    line-height: 1;
    margin-top: 30px;
}

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

.info-card {
    min-height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    background:
        linear-gradient(140deg, rgba(255,255,255,.025), transparent),
        rgba(14,14,17,.72);
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: "";
    width: 170px;
    height: 170px;
    position: absolute;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190,20,30,.18), transparent 70%);
    transition: .4s;
}

.info-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.2); }
.info-card:hover::after { transform: scale(1.6); }
.number { color: var(--red-light); font-family: "Oswald"; }
.info-card h3 { font-size: 28px; margin: 0 0 15px; }
.info-card p { margin: 0; color: var(--gray); font-size: 13px; line-height: 1.7; }

.beta { border-top: 1px solid var(--border); }

.beta-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}

.beta-info h2 { margin-bottom: 30px; }
.beta-info > p { color: var(--gray); line-height: 1.8; max-width: 470px; }

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid var(--border);
    margin-top: 20px;
    font-size: 11px;
    color: #c7c4bf;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: #37d05c;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(55,208,92,.6);
}

.status-closed {
    color: #ffd9da;
    border-color: rgba(255,49,56,.27);
    background: rgba(255,49,56,.045);
}

.status-closed .status-dot {
    background: #ff3138;
    box-shadow: 0 0 15px rgba(255,49,56,.6);
}

.beta-closed-note {
    max-width: 540px;
    margin-top: 16px;
    padding: 17px 18px;
    border-left: 2px solid var(--red-light);
    background: rgba(255,49,56,.05);
}

.beta-closed-note strong,
.beta-closed-note span {
    display: block;
}

.beta-closed-note strong {
    margin-bottom: 6px;
    color: #fff0f0;
    font-size: 15px;
}

.beta-closed-note span {
    color: #aaa39c;
    font-size: 14px;
    line-height: 1.65;
}

.beta-form {
    padding: 44px;
    border: 1px solid var(--border);
    background: rgba(12,12,15,.82);
    box-shadow: 0 30px 90px rgba(0,0,0,.4);
}

.field { margin-bottom: 28px; }

.field label {
    display: block;
    margin-bottom: 12px;
    color: #eee9e2;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 750;
    letter-spacing: .015em;
}

.field-hint {
    display: block;
    margin-top: 9px;
    color: #85807a;
    font-size: 12px;
    line-height: 1.5;
}

input, textarea, select {
    width: 100%;
    padding: 18px 19px;
    border: 1px solid rgba(255,255,255,.09);
    outline: none;
    background: #09090b;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: .25s;
}

input, select { height: 62px; }
textarea { min-height: 150px; resize: vertical; }

input:focus, textarea:focus, select:focus {
    border-color: rgba(255,50,55,.6);
    box-shadow: 0 0 0 4px rgba(190,20,30,.08);
}

input::placeholder, textarea::placeholder { color: #595653; }

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    font-size: 13px;
    line-height: 1.65;
    margin: 7px 0 24px;
}

.checkbox input {
    width: 17px;
    height: 17px;
    min-width: 17px;
    accent-color: var(--red);
}

.submit-button { width: 100%; }

.form-message {
    text-align: center;
    margin-top: 17px;
    min-height: 22px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.55;
}

.form-message.success { color: #5ce178; }
.form-message.error { color: #ff6167; }

footer { padding: 30px 0; border-top: 1px solid var(--border); }

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo { font-family: "Oswald"; font-weight: 700; letter-spacing: .1em; }
.footer-logo span { color: var(--red-light); }
.footer-inner p { color: #696560; font-size: 10px; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .9s cubic-bezier(.2,.7,.2,1),
        transform .9s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-small { transition-delay: .1s; }
.delay { transition-delay: .2s; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotateReverse { to { transform: rotate(-360deg); } }

@keyframes scrollDown {
    0%, 100% { opacity: .3; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 18px); }
}

@media (max-width: 950px) {
    .nav { display: none; }
    .hero-grid, .beta-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 130px; }
    .game-card { margin: 30px auto 0; width: min(100%, 550px); aspect-ratio: 1; }
    .cards { grid-template-columns: 1fr; }
    .info-card { min-height: 230px; }
}

@media (max-width: 600px) {
    .container { width: calc(100% - 26px); }
    .header-inner { height: 76px; }
    .header-actions { gap: 7px; }
    .header-button { padding: 11px 12px; font-size: 11px; }
    .logo-text { font-size: 13px; }
    .logo-icon { width: 36px; height: 36px; }
    .about-title .about-title-outline { margin-top: 26px; }
    .hero { min-height: auto; padding: 115px 0 90px; }
    h1 { font-size: clamp(65px, 22vw, 90px); }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .main-button { width: 100%; }
    .simple-link { width: fit-content; }
    .steps { grid-template-columns: 1fr; }
    .step, .step:first-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: 0; }
    .section { padding: 90px 0; }
    .game-card { aspect-ratio: .9; }
    .emblem { width: 220px; height: 220px; }
    .emblem-logo { width: 95px; height: 95px; font-size: 30px; }
    .beta-form { padding: 22px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .cursor-light { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ===== BETA STATE COLORS ===== */
.beta-state-subtitle {
    transition: color .25s ease;
}

.beta-state-subtitle.is-open {
    color: #7ce996;
}

.beta-state-subtitle.is-open::before {
    background: #48d76b;
    box-shadow: 0 0 14px rgba(72, 215, 107, .45);
}

.beta-state-subtitle.is-closed {
    color: #ff7378;
}

.beta-state-subtitle.is-closed::before {
    background: var(--red-light);
    box-shadow: 0 0 14px rgba(255, 49, 56, .42);
}

.status-open {
    color: #bdf7ca;
    border-color: rgba(72, 215, 107, .28);
    background: rgba(72, 215, 107, .055);
}

.status-open .status-dot {
    background: #48d76b;
    box-shadow: 0 0 16px rgba(72, 215, 107, .62);
}

.status-closed {
    color: #ffd3d5;
    border-color: rgba(255, 49, 56, .34);
    background: rgba(255, 49, 56, .065);
}

.status-closed .status-dot {
    background: #ff3138;
    box-shadow: 0 0 16px rgba(255, 49, 56, .62);
}

/* ===== APPLICATION STATUS CHECK ===== */
.application-check {
    border-top: 1px solid var(--border);
    background:
        radial-gradient(circle at 75% 50%, rgba(145, 12, 20, .08), transparent 34%),
        rgba(5, 5, 7, .28);
}

.application-check-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.application-check-info > p {
    max-width: 500px;
    margin: 26px 0 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.application-check-card {
    padding: 38px;
    border: 1px solid var(--border);
    background: rgba(12, 12, 15, .84);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.status-check-form > label {
    display: block;
    margin-bottom: 12px;
    color: #eee9e2;
    font-size: 16px;
    font-weight: 750;
}

.status-check-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.status-check-row input {
    min-width: 0;
}

.status-check-button {
    min-height: 62px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    background: linear-gradient(135deg, #cc1d25, #8e0d13);
    cursor: pointer;
    font: 800 12px "Manrope", sans-serif;
    letter-spacing: .1em;
    transition: .25s ease;
}

.status-check-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.status-check-button:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.status-check-result {
    display: none;
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .16);
}

.status-check-result.visible {
    display: block;
}

.status-check-result .status-result-label {
    display: block;
    margin-bottom: 7px;
    color: #7d7872;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.status-check-result strong {
    display: block;
    margin-bottom: 5px;
    font: 700 25px "Oswald", sans-serif;
    text-transform: uppercase;
}

.status-check-result p {
    margin: 0;
    color: #aaa49d;
    font-size: 13px;
    line-height: 1.65;
}

.status-check-result.status-new strong { color: #e7e2dc; }
.status-check-result.status-review {
    border-color: rgba(230, 185, 77, .28);
    background: rgba(230, 185, 77, .055);
}
.status-check-result.status-review strong { color: #ffd977; }
.status-check-result.status-approved {
    border-color: rgba(72, 215, 107, .28);
    background: rgba(72, 215, 107, .055);
}
.status-check-result.status-approved strong { color: #7ce996; }
.status-check-result.status-rejected,
.status-check-result.status-error {
    border-color: rgba(255, 49, 56, .3);
    background: rgba(255, 49, 56, .055);
}
.status-check-result.status-rejected strong,
.status-check-result.status-error strong { color: #ff8589; }

@media (max-width: 950px) {
    .application-check-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 600px) {
    .application-check-card { padding: 22px; }
    .status-check-row { grid-template-columns: 1fr; }
    .status-check-button { width: 100%; }
}

/* =========================================================
   LORD RUSSIA — GUI ДЛЯ ПРОВЕРКИ СТАТУСА ЗАЯВКИ
   ========================================================= */

.application-check-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.028), transparent 42%),
        rgba(10, 10, 13, .92);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255,255,255,.025);
}

.application-check-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d51d25, transparent);
    opacity: .85;
}

.application-check-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210, 25, 34, .12), transparent 68%);
    pointer-events: none;
}

.status-check-form {
    position: relative;
    z-index: 1;
}

.status-check-form > label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #f2eee8;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .025em;
}

.status-check-form > label::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #d91f28;
    box-shadow: 0 0 14px rgba(217, 31, 40, .65);
}

.status-check-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 12px;
    align-items: stretch;
}

.status-check-row input {
    min-width: 0;
    height: 64px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    outline: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,.018), transparent),
        #09090b;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.status-check-row input::placeholder {
    color: #5f5b57;
    font-weight: 500;
}

.status-check-row input:hover {
    border-color: rgba(255,255,255,.2);
}

.status-check-row input:focus {
    border-color: rgba(231, 40, 48, .75);
    background: #0c0c0f;
    box-shadow:
        0 0 0 4px rgba(215, 28, 37, .09),
        0 0 30px rgba(215, 28, 37, .08),
        inset 0 0 0 1px rgba(255,255,255,.015);
}

.status-check-button {
    position: relative;
    isolation: isolate;
    min-height: 64px;
    padding: 0 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 87, 92, .35);
    border-radius: 7px;
    color: #fff;
    background:
        linear-gradient(135deg, #e0222b 0%, #ba151d 52%, #8d0d14 100%);
    box-shadow:
        0 14px 34px rgba(183, 18, 27, .24),
        inset 0 1px 0 rgba(255,255,255,.15);
    cursor: pointer;
    font: 900 12px "Manrope", sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        filter .22s ease,
        border-color .22s ease;
}

.status-check-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -55%;
    width: 45%;
    height: 260%;
    transform: rotate(20deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
    transition: left .45s ease;
}

.status-check-button::after {
    content: "↗";
    display: inline-block;
    margin-left: 12px;
    font-size: 17px;
    line-height: 1;
    vertical-align: -1px;
    transition: transform .22s ease;
}

.status-check-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    border-color: rgba(255, 115, 120, .58);
    box-shadow:
        0 18px 42px rgba(190, 20, 29, .34),
        0 0 26px rgba(213, 29, 37, .14),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.status-check-button:hover::before {
    left: 125%;
}

.status-check-button:hover::after {
    transform: translate(3px, -3px);
}

.status-check-button:active {
    transform: translateY(0) scale(.985);
}

.status-check-button:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(215, 28, 37, .16),
        0 18px 42px rgba(190, 20, 29, .34);
}

.status-check-button:disabled {
    cursor: wait;
    opacity: .58;
    filter: grayscale(.15);
    transform: none;
    box-shadow: none;
}

.status-check-result {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    padding: 20px 22px;
    border-radius: 7px;
}

.status-check-result::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: currentColor;
    opacity: .7;
}

@media (max-width: 700px) {
    .application-check-card {
        padding: 24px;
    }

    .status-check-row {
        grid-template-columns: 1fr;
    }

    .status-check-row input,
    .status-check-button {
        width: 100%;
        min-height: 60px;
    }
}

/* =========================================================
   LORD RUSSIA — PROFILE HEADER
   ========================================================= */
.profile-header-button {
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.025);
}

.profile-header-button:hover {
    border-color: rgba(210,31,40,.42);
    background: rgba(210,31,40,.08);
    color: #fff;
}

@media (max-width: 760px) {
    .header-actions {
        gap: 6px;
    }

    .header-actions .header-button {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 9px;
    }
}

@media (max-width: 560px) {
    .profile-header-button {
        display: none;
    }
}
/* Keep profile/admin/application controls visible on small screens */
@media (max-width: 560px) {
    .profile-header-button {
        display: inline-flex;
    }

    .header-inner {
        height: auto;
        min-height: 68px;
        padding: 10px 0;
        flex-wrap: wrap;
    }

    .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .header-actions .header-button {
        min-width: 0;
        justify-content: center;
        text-align: center;
        padding: 10px 6px;
        font-size: 8px;
        white-space: nowrap;
    }
}


/* =========================================================
   LORD RUSSIA — requirements, tester limit, maintenance
   ========================================================= */
.requirements {
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0));
}
.requirements-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:center; }
.requirements-copy > p { max-width:520px; color:var(--gray); line-height:1.8; }
.requirements-card { border:1px solid var(--border); background:rgba(10,10,13,.82); box-shadow:0 30px 90px rgba(0,0,0,.35); }
.requirement-item { display:grid; grid-template-columns:70px 1fr; gap:20px; align-items:center; min-height:112px; padding:24px 28px; border-bottom:1px solid var(--border); }
.requirement-number { color:var(--red-light); font-family:"Oswald",sans-serif; font-size:18px; }
.requirement-item small { display:block; margin-bottom:5px; color:#77716b; font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.requirement-item strong { color:#f6f2ec; font-family:"Oswald",sans-serif; font-size:27px; letter-spacing:.02em; }
.requirements-note { margin:0; padding:18px 28px; color:#77716b; font-size:11px; line-height:1.65; }

.public-limit-meter { max-width:430px; margin-top:18px; }
.public-limit-meter > div { height:5px; overflow:hidden; border-radius:20px; background:rgba(255,255,255,.07); }
.public-limit-meter > div span { display:block; height:100%; border-radius:inherit; background:linear-gradient(90deg,#2bd761,#86ff9e); box-shadow:0 0 16px rgba(43,215,97,.35); transition:width .5s ease; }
.public-limit-meter strong { display:block; margin-top:8px; color:#8e8983; font-size:11px; letter-spacing:.06em; }
.public-limit-meter.is-full > div span { background:linear-gradient(90deg,#ba161d,#ff454c); box-shadow:0 0 16px rgba(255,49,56,.35); }
.public-limit-meter.is-full strong { color:#ff7a7e; }

.maintenance-page { min-height:100vh; overflow:hidden; display:grid; place-items:center; padding:30px; }
.maintenance-page::before { content:""; position:fixed; inset:0; background:radial-gradient(circle at 50% 40%,rgba(189,23,30,.14),transparent 35%),linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.015) 1px,transparent 1px); background-size:auto,48px 48px,48px 48px; pointer-events:none; }
.maintenance-shell { position:relative; z-index:2; width:min(760px,100%); padding:55px; border:1px solid rgba(255,255,255,.1); background:rgba(9,9,11,.88); box-shadow:0 40px 120px rgba(0,0,0,.58); }
.maintenance-logo { width:62px; height:62px; display:grid; place-items:center; margin-bottom:34px; border:1px solid rgba(255,255,255,.18); transform:rotate(45deg); font-family:"Oswald",sans-serif; font-weight:700; font-size:17px; }
.maintenance-logo::first-line { transform:rotate(-45deg); }
.maintenance-shell h1 { margin:0 0 28px; font-size:clamp(52px,9vw,92px); line-height:.9; }
.maintenance-shell h1 span { color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.78); }
.maintenance-shell > p { max-width:600px; color:#9c9690; line-height:1.8; }
.maintenance-status { display:inline-flex; align-items:center; gap:10px; margin-top:20px; padding:13px 16px; border:1px solid rgba(255,49,56,.24); color:#ffd9da; background:rgba(255,49,56,.05); font-size:12px; font-weight:800; }
.maintenance-status span { width:9px; height:9px; border-radius:50%; background:#ff3138; box-shadow:0 0 16px rgba(255,49,56,.7); animation:maintenancePulse 1.5s ease-in-out infinite; }
.maintenance-admin-link { display:block; width:max-content; margin-top:30px; color:#7c7771; font-size:11px; transition:.2s; }
.maintenance-admin-link:hover { color:#fff; }
@keyframes maintenancePulse { 50% { opacity:.35; transform:scale(.8); } }

@media(max-width:950px){ .requirements-grid{grid-template-columns:1fr; gap:38px;} }
@media(max-width:600px){ .requirement-item{grid-template-columns:48px 1fr;padding:20px 18px;} .requirement-item strong{font-size:23px;} .maintenance-shell{padding:34px 22px;} }
