:root {
    --alez-bg: #070504;
    --alez-bg-soft: #12100f;
    --alez-panel: rgba(22, 16, 13, 0.88);
    --alez-panel-solid: #17110e;
    --alez-line: rgba(166, 41, 39, 0.28);
    --alez-line-bright: rgba(215, 74, 66, 0.55);
    --alez-orange: #8f1d1d;
    --alez-flame: #d64a42;
    --alez-red: #8f151b;
    --alez-gold: #d8b05e;
    --alez-cyan: #61d9e8;
    --alez-text: #f6ead7;
    --alez-muted: #b4a392;
    --alez-shadow: rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body.alez-home {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--alez-text);
    background:
        radial-gradient(circle at 18% 0, rgba(176, 44, 26, 0.32), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(97, 217, 232, 0.14), transparent 22rem),
        linear-gradient(180deg, #080604 0%, #0d0907 40%, #060504 100%);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

.alez-home a {
    color: inherit;
}

.alez-home img,
.alez-home video {
    max-width: 100%;
}

.alez-shell {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
}

.alez-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.alez-site-header {
    position: absolute;
    z-index: 30;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    width: min(1180px, calc(100% - 40px));
    padding: 10px 14px;
    border: 1px solid rgba(166, 41, 39, 0.24);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(16, 11, 9, 0.92), rgba(7, 5, 4, 0.82));
    box-shadow: 0 18px 50px var(--alez-shadow);
    backdrop-filter: blur(12px);
}

.alez-brand {
    display: inline-flex;
    align-items: center;
    min-width: 158px;
}

.alez-brand img {
    display: block;
    width: 158px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(180, 36, 38, 0.3));
}

.alez-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.alez-nav a,
.alez-header-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 6px;
    color: #e6d2bd;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.alez-nav a:hover,
.alez-nav a.active {
    color: #fff2dc;
    background: rgba(155, 29, 36, 0.15);
}

.alez-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alez-header-actions a {
    border: 1px solid rgba(166, 41, 39, 0.28);
}

.alez-header-actions .alez-download-link {
    color: #fff4ee;
    border-color: transparent;
    background: linear-gradient(180deg, var(--alez-flame), var(--alez-orange));
    box-shadow: 0 8px 22px rgba(155, 29, 36, 0.26);
}

.alez-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 790px;
    padding: 150px 0 108px;
    overflow: hidden;
}

.alez-hero-video {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        linear-gradient(180deg, rgba(8, 5, 4, 0.1), rgba(8, 5, 4, 0.86)),
        url("../img/slides/background4.jpg") center top / cover no-repeat;
}

.alez-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    filter: saturate(1.25) contrast(1.08);
}

.alez-hero::before,
.alez-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.alez-hero::before {
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 48% 78%, rgba(255, 116, 31, 0.28), transparent 22rem),
        radial-gradient(circle at 75% 26%, rgba(97, 217, 232, 0.12), transparent 17rem),
        linear-gradient(90deg, rgba(8, 5, 4, 0.92), rgba(8, 5, 4, 0.35), rgba(8, 5, 4, 0.9));
}

.alez-hero::after {
    inset: auto 0 0;
    z-index: -2;
    height: 260px;
    background: linear-gradient(180deg, transparent, var(--alez-bg));
}

.alez-embers {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.72;
    background-image:
        radial-gradient(circle, rgba(255, 180, 88, 0.88) 0 1px, transparent 2px),
        radial-gradient(circle, rgba(255, 87, 45, 0.7) 0 1px, transparent 2px);
    background-size: 140px 140px, 190px 190px;
    animation: alez-embers 16s linear infinite;
}

@keyframes alez-embers {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -140px, 0);
    }
}

.alez-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
    gap: 50px;
}

.alez-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 8px 12px;
    border: 1px solid rgba(166, 41, 39, 0.28);
    border-radius: 999px;
    color: var(--alez-flame);
    background: rgba(23, 13, 9, 0.68);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.alez-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--alez-cyan);
    box-shadow: 0 0 16px rgba(97, 217, 232, 0.8);
}

.alez-hero-logo {
    display: block;
    width: min(500px, 88vw);
    margin: 0 0 18px;
    filter:
        drop-shadow(0 12px 22px rgba(0, 0, 0, 0.65))
        drop-shadow(0 0 18px rgba(155, 29, 36, 0.35));
}

.alez-hero h1 {
    margin: 0;
    max-width: 780px;
    color: #fff8ea;
    font-size: 58px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.alez-hero-copy {
    max-width: 650px;
    margin: 20px 0 0;
    color: #d7c5b3;
    font-size: 18px;
    line-height: 1.65;
}

.alez-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.alez-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid rgba(255, 191, 96, 0.4);
    border-radius: 7px;
    color: #1d0f07;
    background: linear-gradient(180deg, #c74642, #8f1d1d 58%, #4e0b0d);
    box-shadow: 0 14px 28px rgba(177, 48, 25, 0.34), inset 0 1px rgba(255, 255, 255, 0.34);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.alez-btn.secondary {
    color: var(--alez-text);
    background: rgba(24, 18, 15, 0.74);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.alez-btn:hover {
    filter: brightness(1.08);
}

.alez-hero-panel {
    padding: 20px;
    border: 1px solid var(--alez-line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(23, 16, 13, 0.9), rgba(12, 8, 6, 0.86));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.alez-status-grid {
    display: grid;
    gap: 12px;
}

.alez-status-card {
    position: relative;
    min-height: 92px;
    padding: 18px 18px 18px 20px;
    overflow: hidden;
    border: 1px solid rgba(166, 41, 39, 0.18);
    border-radius: 7px;
    background:
        linear-gradient(90deg, rgba(155, 29, 36, 0.15), transparent),
        rgba(9, 7, 6, 0.68);
}

.alez-status-card strong {
    display: block;
    color: #fff2df;
    font-size: 28px;
    line-height: 1;
}

.alez-status-card span {
    display: block;
    margin-top: 8px;
    color: var(--alez-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.alez-main {
    position: relative;
    z-index: 3;
    background:
        linear-gradient(180deg, var(--alez-bg), #110b08 48%, #080604 100%);
}

.alez-section {
    padding: 86px 0;
}

.alez-section.tight {
    padding-top: 54px;
}

.alez-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.alez-eyebrow {
    margin: 0 0 8px;
    color: var(--alez-flame);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.alez-section-title {
    margin: 0;
    color: #fff3df;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
}

.alez-section-copy {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--alez-muted);
    font-size: 15px;
    line-height: 1.7;
}

.alez-welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 28px;
    align-items: center;
}

.alez-video-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--alez-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(7, 5, 4, 0.18), rgba(7, 5, 4, 0.82)),
        url("../img/slides/background6.jpg") center / cover no-repeat;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.alez-video-card video {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    opacity: 0.38;
}

.alez-play-core {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(255, 196, 105, 0.62);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(14, 9, 7, 0.62);
    box-shadow: 0 0 0 12px rgba(155, 29, 36, 0.12), 0 0 46px rgba(155, 29, 36, 0.55);
}

.alez-play-core::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 7px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 25px solid var(--alez-flame);
}

.alez-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.alez-feature-item {
    padding: 17px 18px;
    border: 1px solid rgba(166, 41, 39, 0.18);
    border-radius: 7px;
    background: rgba(19, 14, 12, 0.72);
}

.alez-feature-item strong {
    display: block;
    color: #fff1dc;
    font-size: 16px;
}

.alez-feature-item span {
    display: block;
    margin-top: 7px;
    color: var(--alez-muted);
    line-height: 1.55;
}

.alez-showcase-grid,
.alez-news-grid,
.alez-store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.alez-showcase-card,
.alez-news-card,
.alez-store-card {
    overflow: hidden;
    border: 1px solid rgba(166, 41, 39, 0.2);
    border-radius: 8px;
    background: var(--alez-panel);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.alez-showcase-card {
    min-height: 214px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(8, 5, 4, 0.15), rgba(8, 5, 4, 0.85)),
        var(--showcase-image, url("../img/slides/background3.png")) center / cover no-repeat;
}

.alez-showcase-card strong,
.alez-news-card h3,
.alez-store-card h3 {
    display: block;
    margin: 0;
    color: #fff3df;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.alez-showcase-card p,
.alez-news-card p,
.alez-store-card p {
    margin: 12px 0 0;
    color: #c9b6a2;
    line-height: 1.6;
}

.alez-news-card,
.alez-store-card {
    padding: 22px;
}

.alez-news-date {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--alez-cyan);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.alez-card-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--alez-flame);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.alez-adventure {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    border-top: 1px solid rgba(166, 41, 39, 0.16);
    border-bottom: 1px solid rgba(166, 41, 39, 0.16);
    background:
        linear-gradient(90deg, rgba(8, 5, 4, 0.95), rgba(8, 5, 4, 0.6), rgba(8, 5, 4, 0.95)),
        url("../img/site-raids-bg.png") center / cover no-repeat;
}

.alez-adventure .alez-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.alez-footer {
    padding: 46px 0 28px;
    color: #ae9d8b;
    background: #060504;
}

.alez-footer-grid {
    display: grid;
    grid-template-columns: 1fr repeat(3, minmax(120px, 170px));
    gap: 24px;
}

.alez-footer strong {
    display: block;
    color: #fff0da;
    margin-bottom: 12px;
}

.alez-footer a {
    display: block;
    color: #bfae9e;
    margin: 8px 0;
    text-decoration: none;
}

.alez-footer a:hover {
    color: var(--alez-flame);
}

.alez-copy {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(166, 41, 39, 0.12);
    color: #817467;
    font-size: 13px;
}

@media (max-width: 980px) {
    .alez-site-header {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }

    .alez-hero {
        padding-top: 220px;
    }

    .alez-hero-grid,
    .alez-welcome-grid,
    .alez-adventure .alez-wrap,
    .alez-footer-grid {
        grid-template-columns: 1fr;
    }

    .alez-hero-panel {
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .alez-wrap,
    .alez-site-header {
        width: min(100% - 24px, 1180px);
    }

    .alez-site-header {
        top: 12px;
    }

    .alez-brand img {
        width: 132px;
    }

    .alez-nav {
        flex-wrap: wrap;
    }

    .alez-nav a,
    .alez-header-actions a {
        min-height: 34px;
        padding: 0 9px;
        font-size: 11px;
    }

    .alez-header-actions {
        display: none;
    }

    .alez-hero {
        min-height: 720px;
        padding-top: 184px;
    }

    .alez-hero h1 {
        font-size: 40px;
    }

    .alez-hero-copy {
        font-size: 16px;
    }

    .alez-actions {
        width: 100%;
    }

    .alez-btn {
        width: 100%;
    }

    .alez-showcase-grid,
    .alez-news-grid,
    .alez-store-grid {
        grid-template-columns: 1fr;
    }

    .alez-section {
        padding: 62px 0;
    }

    .alez-section-head {
        display: block;
    }
}

body.reason-theme {
    background: #09090c;
}

.reason-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 0, rgba(182, 39, 31, 0.18), transparent 18rem),
        linear-gradient(180deg, #101014 0, #07070a 48%, #090604 100%);
}

.reason-wrap {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.reason-nav {
    position: relative;
    z-index: 50;
    margin: 0;
    min-height: 132px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #111115;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
}

.reason-nav-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px) minmax(0, 1fr);
    align-items: stretch;
    min-height: 132px;
}

.reason-nav-side {
    display: grid;
    gap: clamp(12px, 1.05vw, 28px);
    min-height: 132px;
    min-width: 0;
}

.reason-nav-left {
    grid-column: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-nav-right {
    grid-column: 3;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reason-nav-side a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 132px;
    padding: 0 clamp(2px, 0.35vw, 8px);
    color: #f4f1f0;
    font-size: clamp(22px, 1.35vw, 30px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.8);
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.reason-nav-side a:hover,
.reason-nav-side a.active {
    color: #9b1d24;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 143, 27, 0.2), transparent 42%),
        linear-gradient(180deg, rgba(255, 93, 70, 0.08), rgba(255, 93, 70, 0.16));
    box-shadow: inset 0 -2px 0 rgba(255, 128, 28, 0.55);
}

.reason-nav-logo {
    position: relative;
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 132px;
    padding-top: 0;
    pointer-events: auto;
}

.reason-nav-logo img {
    display: block;
    width: min(320px, 100%);
    max-height: 186px;
    height: auto;
    object-fit: contain;
    margin-top: 0;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 18px rgba(255, 109, 33, 0.35));
}

.reason-nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.reason-mobile-bar,
.reason-mobile-menu {
    display: none;
}

.reason-home,
.reason-content {
    position: relative;
    z-index: 1;
}

.reason-hero {
    position: relative;
    min-height: 690px;
    padding: 176px 0 70px;
    overflow: hidden;
}

.reason-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(6, 6, 9, 0.12), rgba(6, 6, 9, 0.88)),
        url("../img/slides/background4.jpg") top center / cover no-repeat;
    filter: saturate(1.08) contrast(1.05);
}

.reason-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 34%, rgba(255, 101, 25, 0.2), transparent 24rem),
        radial-gradient(circle at 80% 20%, rgba(255, 183, 86, 0.12), transparent 18rem),
        linear-gradient(90deg, rgba(9, 8, 10, 0.94), rgba(9, 8, 10, 0.42), rgba(9, 8, 10, 0.94));
}

.reason-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: end;
}

.reason-tag {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid rgba(155, 29, 36, 0.34);
    border-radius: 4px;
    color: #ff9a16;
    background: rgba(11, 9, 10, 0.68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.reason-hero h1 {
    max-width: 760px;
    margin: 20px 0 0;
    color: #fff;
    font-size: 62px;
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: 0;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.75);
}

.reason-hero p,
.reason-lead,
.reason-side-copy {
    color: #cbbeb2;
    font-size: 17px;
    line-height: 1.7;
}

.reason-hero p {
    max-width: 660px;
}

.reason-hero-actions,
.reason-download-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.reason-primary-btn,
.reason-secondary-btn,
.reason-product-bottom button,
.reason-mini-btn,
.reason-vote-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(166, 41, 39, 0.55);
    border-radius: 4px;
    color: #fff4ee;
    background: linear-gradient(180deg, #c74642, #9b1d24 56%, #4b090c);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(139, 21, 25, 0.22);
}

.reason-secondary-btn {
    color: #f7eadf;
    background: linear-gradient(180deg, rgba(39, 31, 28, 0.92), rgba(17, 14, 13, 0.92));
}

.reason-primary-btn.full {
    width: 100%;
}

.reason-status-board {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(155, 29, 36, 0.2);
    background: rgba(12, 10, 10, 0.82);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
}

.reason-status-board div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.035);
}

.reason-status-board strong {
    color: #d64a42;
    font-size: 26px;
}

.reason-status-board span {
    color: #d8cfc7;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.reason-main-grid,
.reason-store-grid,
.reason-vote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    padding: 54px 0 80px;
}

.reason-content {
    padding: 128px 0 80px;
}

.reason-panel {
    margin-bottom: 22px;
    border: 1px solid rgba(155, 29, 36, 0.22);
    background: linear-gradient(180deg, rgba(24, 21, 20, 0.96), rgba(12, 10, 10, 0.96));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.reason-panel-title {
    min-height: 58px;
    padding: 17px 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    background: linear-gradient(90deg, rgba(156, 34, 24, 0.36), transparent);
    font-size: 20px;
    font-weight: 950;
    text-transform: uppercase;
}

.reason-panel > :not(.reason-panel-title) {
    padding: 20px;
}

.reason-news-list {
    display: grid;
    gap: 16px;
}

.reason-news-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 180px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 7, 0.5);
}

.reason-news-image,
.reason-article-hero {
    background-position: center;
    background-size: cover;
}

.reason-news-body {
    padding: 22px;
}

.reason-news-body time,
.reason-article time {
    color: #9b1d24;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.reason-news-body h3,
.reason-product-card h3 {
    margin: 8px 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.reason-news-body p,
.reason-product-card p,
.reason-panel p {
    color: #cbbeb2;
    line-height: 1.65;
}

.reason-read-more {
    color: #9b1d24;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    text-decoration: none;
}

.reason-quick-links {
    display: grid;
    gap: 10px;
}

.reason-quick-links a {
    padding: 13px 14px;
    border: 1px solid rgba(155, 29, 36, 0.16);
    color: #f8eee6;
    background: rgba(255, 255, 255, 0.035);
    text-decoration: none;
    font-weight: 800;
}

.reason-legal-body {
    display: grid;
    gap: 16px;
}

.reason-legal-body h2 {
    margin: 10px 0 0;
    color: #fff4eb;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.25;
    text-transform: uppercase;
}

.reason-legal-body p {
    margin: 0;
}

.reason-legal-body a {
    color: #f0c0bc;
    font-weight: 850;
    text-decoration: none;
}

.reason-legal-body a:hover {
    color: #fff4eb;
}

.reason-legal-links {
    margin-top: 8px;
}

.reason-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 6px 0 8px;
}

.reason-contact-actions .reason-primary-btn,
.reason-contact-actions .reason-secondary-btn,
.reason-discord-btn {
    gap: 10px;
}

.reason-discord-btn .fab,
.reason-contact-actions .material-icons {
    font-size: 20px;
    line-height: 1;
}

.reason-table-wrap {
    overflow-x: auto;
}

.reason-table {
    width: 100%;
    border-collapse: collapse;
}

.reason-table th,
.reason-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    text-align: left;
}

.reason-table th {
    color: #9b1d24;
    font-size: 12px;
    text-transform: uppercase;
}

.reason-table td {
    color: #e5d8ca;
}

.reason-filter-row,
.reason-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.reason-filter-row label {
    display: grid;
    gap: 6px;
    color: #f1e7dc;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.reason-filter-row select,
.reason-vote-form input {
    min-height: 44px;
    border: 1px solid rgba(155, 29, 36, 0.22);
    color: #f5e8dc;
    background: #111;
}

.reason-skill-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
    gap: 8px;
    margin: 20px 0;
}

.reason-skill-tabs a,
.reason-category-row button {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(155, 29, 36, 0.18);
    color: #e9ded4;
    background: rgba(255, 255, 255, 0.035);
    text-decoration: none;
    font-weight: 800;
}

.reason-skill-tabs a.active,
.reason-category-row button.active,
.reason-category-row button:hover {
    color: #12100d;
    background: linear-gradient(180deg, #c74642, #9b1d24);
}

.reason-skill-tabs img {
    width: 20px;
    height: 20px;
}

.reason-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.reason-product-card {
    min-height: 330px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 0, rgba(155, 29, 36, 0.16), transparent 56%),
        linear-gradient(180deg, rgba(22, 18, 19, 0.94), rgba(7, 6, 8, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 36px rgba(0, 0, 0, 0.24);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.reason-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 74, 66, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 24px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(155, 29, 36, 0.14);
}

.reason-product-img {
    display: grid;
    place-items: center;
    height: 92px;
    margin-bottom: 10px;
    border: 1px solid rgba(214, 74, 66, 0.14);
    background: radial-gradient(circle, rgba(214, 74, 66, 0.15), rgba(0, 0, 0, 0.22) 62%);
}

.reason-product-img img {
    max-width: 78px;
    max-height: 78px;
    image-rendering: auto;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.45));
}

.reason-product-card span {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    align-self: flex-start;
    padding: 0 8px;
    border: 1px solid rgba(214, 74, 66, 0.25);
    color: #ffc0ad;
    background: rgba(155, 29, 36, 0.14);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.reason-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.reason-product-bottom strong {
    color: #fff;
    font-size: 20px;
}

.reason-product-bottom button,
.reason-mini-btn,
.reason-vote-form button {
    min-height: 44px;
    padding: 0 16px;
}

.reason-vote-form button {
    min-height: 52px;
    white-space: nowrap;
}

.reason-mini-btn {
    text-decoration: none;
}

.reason-notice {
    margin-bottom: 16px;
    padding: 13px 14px;
    border: 1px solid rgba(97, 217, 232, 0.32);
    color: #e9fbff;
    background: linear-gradient(90deg, rgba(36, 120, 132, 0.26), rgba(155, 29, 36, 0.08));
    font-weight: 800;
}

.reason-account-row {
    margin: 18px 0 0;
}

.reason-admin-login {
    display: grid;
    gap: 14px;
    max-width: 380px;
    margin-top: 20px;
}

.reason-account-row label {
    display: grid;
    max-width: 420px;
    gap: 7px;
    color: #f7eee5;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.reason-admin-login label {
    display: grid;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.reason-account-row input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(155, 29, 36, 0.3);
    color: #f5e8dc;
    background: linear-gradient(180deg, rgba(18, 16, 16, 0.96), rgba(8, 7, 8, 0.96));
    font-size: 16px;
    font-weight: 800;
    outline: none;
}

.reason-admin-login input {
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(155, 29, 36, 0.28);
    color: #f5e8dc;
    background: #111;
}

.reason-admin-login input:focus {
    outline: none;
    border-color: rgba(97, 217, 232, 0.55);
    box-shadow: 0 0 0 3px rgba(97, 217, 232, 0.08);
}

.reason-activity-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reason-activity-list li {
    display: grid;
    gap: 4px;
    padding: 12px;
    color: #e7dbcf;
    background: rgba(255, 255, 255, 0.035);
}

.reason-activity-list span,
.reason-activity-list em {
    color: #b9afa5;
    font-size: 12px;
    font-style: normal;
}

.reason-activity-list strong {
    color: #fff;
    font-size: 14px;
}

.reason-store-side-card {
    background:
        linear-gradient(180deg, rgba(23, 18, 18, 0.96), rgba(9, 7, 8, 0.98)),
        rgba(255, 255, 255, 0.025);
}

.reason-store-side-head {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

.reason-store-side-head h2 {
    margin: 0;
    color: #fff1df;
    font-family: "Spectral SC", "MedievalSharp", Georgia, serif;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.75);
}

.reason-store-side-head p,
.reason-store-side-head span {
    margin: 0;
    color: #b9afa5;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.reason-store-donor-list,
.reason-store-rank-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reason-store-donor-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    color: #e7dbcf;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
}

.reason-store-donor-list img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.reason-store-donor-list span {
    color: #e7dbcf;
}

.reason-vote-leader-list li {
    display: flex;
}

.reason-vote-leader-list strong {
    margin-left: auto;
    color: #c9aa71;
    font-size: 13px;
    font-weight: 950;
}

.reason-store-rank-list li {
    display: grid;
    grid-template-columns: minmax(118px, 43%) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 28px;
    color: #e7dbcf;
}

.reason-store-rank-list strong {
    color: #fff1df;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.2;
    white-space: nowrap;
}

.reason-store-rank-list span {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    min-width: 0;
    color: #d9d0c7;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    text-align: left;
}

.reason-store-rank-list img,
.reason-store-rank-list i {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.reason-store-rank-list img {
    object-fit: contain;
}

.reason-store-rank-list i {
    display: inline-grid;
    place-items: center;
    color: #15110e;
    background: #c9aa71;
    font-style: normal;
    font-weight: 950;
}

.reason-store-rank-list b {
    color: #d9d0c7;
    font-weight: 850;
    text-transform: none;
    white-space: nowrap;
}

.reason-cart-empty {
    padding: 18px;
    color: #b9afa5;
    border: 1px dashed rgba(155, 29, 36, 0.22);
    text-align: center;
}

.reason-cart-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reason-cart-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.reason-cart-row img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.reason-cart-row span {
    display: grid;
    gap: 2px;
    color: #f8eadc;
}

.reason-cart-row em {
    color: #b9afa5;
    font-size: 12px;
    font-style: normal;
}

.reason-cart-row div:last-child {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.reason-cart-row div:last-child a,
.reason-cart-row div:last-child button,
.reason-cart-row div:last-child b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    color: #f8eadc;
    border: 1px solid rgba(155, 29, 36, 0.28);
    background: rgba(0, 0, 0, 0.22);
    text-decoration: none;
    cursor: pointer;
}

.reason-cart-row div:last-child button {
    font: inherit;
}

.reason-cart-total {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(155, 29, 36, 0.2);
    color: #f8eadc;
}

.reason-checkout-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.reason-checkout-actions form {
    margin: 0;
}

.reason-checkout-actions form button {
    width: 100%;
}

.reason-provider-choice {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(214, 74, 66, 0.22);
    background: linear-gradient(180deg, rgba(22, 15, 17, 0.96), rgba(8, 6, 7, 0.96));
}

.reason-provider-choice[hidden] {
    display: none;
}

.reason-provider-choice > span {
    color: #ffc0ad;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reason-crypto-choice {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(201, 170, 113, 0.22);
    background: linear-gradient(180deg, rgba(12, 18, 20, 0.96), rgba(7, 8, 9, 0.96));
}

.reason-crypto-choice[hidden] {
    display: none;
}

.reason-crypto-choice > span {
    color: #f2d29a;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reason-provider-btn {
    display: grid;
    width: 100%;
    min-height: 58px;
    padding: 10px 14px;
    border: 1px solid rgba(214, 74, 66, 0.34);
    color: #fff4eb;
    background: linear-gradient(180deg, rgba(79, 26, 28, 0.96), rgba(22, 10, 12, 0.96));
    text-align: left;
    cursor: pointer;
}

.reason-provider-btn strong {
    font-size: 15px;
    text-transform: uppercase;
}

.reason-provider-btn em {
    color: #cbbeb2;
    font-size: 12px;
    font-style: normal;
}

.reason-provider-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
}

.reason-provider-cryptapi {
    border-color: rgba(201, 170, 113, 0.42);
    background:
        linear-gradient(135deg, rgba(201, 170, 113, 0.16), transparent 48%),
        linear-gradient(180deg, rgba(55, 35, 20, 0.98), rgba(16, 10, 7, 0.98));
}

.reason-provider-paddle {
    border-color: rgba(95, 176, 225, 0.34);
    background:
        linear-gradient(135deg, rgba(95, 176, 225, 0.14), transparent 50%),
        linear-gradient(180deg, rgba(25, 40, 55, 0.96), rgba(10, 16, 24, 0.96));
}

.reason-provider-coin {
    min-height: 52px;
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 62%),
        rgba(17, 20, 20, 0.96);
}

.reason-provider-btn:hover {
    border-color: rgba(255, 177, 104, 0.58);
    background: linear-gradient(180deg, rgba(137, 33, 29, 0.98), rgba(42, 13, 15, 0.98));
}

.reason-rank-list,
.reason-reward-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reason-rank-list li,
.reason-reward-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 12px;
    color: #e7dbcf;
    background: rgba(255, 255, 255, 0.035);
}

.reason-rank-list li span:last-child {
    margin-left: auto;
}

.reason-rank-row {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--rank-accent, #d64a42);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 58%),
        rgba(255, 255, 255, 0.035);
}

.reason-rank-row strong {
    color: #fff3df;
}

.reason-rank-name {
    color: var(--rank-accent, #f4eee8);
    font-weight: 950;
    text-transform: uppercase;
}

.reason-top-donators b {
    color: #d24b4b;
}

.reason-vote-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
    margin-top: 18px;
}

.reason-vote-form label {
    display: grid;
    gap: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.reason-vote-form input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(155, 29, 36, 0.3);
    color: #f5e8dc;
    background: linear-gradient(180deg, rgba(18, 16, 16, 0.96), rgba(8, 7, 8, 0.96));
    font-size: 16px;
    font-weight: 800;
    outline: none;
}

.reason-vote-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.reason-vote-site {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(155, 29, 36, 0.18);
    background: rgba(5, 5, 7, 0.54);
}

.reason-vote-site strong {
    color: #fff;
    font-size: 18px;
}

.reason-vote-site span {
    color: #d64a42;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.reason-vote-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 12px;
    color: #fff;
    border: 1px solid rgba(155, 29, 36, 0.28);
    background: linear-gradient(180deg, rgba(92, 29, 18, 0.7), rgba(26, 18, 16, 0.95));
    text-decoration: none;
    font-weight: 950;
    text-transform: uppercase;
}

.reason-vote-button.is-disabled,
.reason-vote-button[aria-disabled="true"] {
    color: rgba(255, 244, 238, 0.58);
    background: linear-gradient(180deg, rgba(42, 34, 33, 0.75), rgba(18, 15, 15, 0.92));
    cursor: not-allowed;
    pointer-events: auto;
}

.reason-article {
    max-width: 940px;
}

.reason-article-hero {
    min-height: 330px;
    margin-bottom: 22px;
    border: 1px solid rgba(155, 29, 36, 0.22);
}

.reason-news-meta,
.reason-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 10px;
}

.reason-news-topic,
.reason-article-topic {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    padding: 0 9px;
    border: 1px solid rgba(216, 74, 66, 0.32);
    border-radius: 999px;
    color: #ffe0aa;
    background: rgba(155, 29, 36, 0.14);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.reason-article-video {
    overflow: hidden;
    margin: 0 0 22px;
    border: 1px solid rgba(155, 29, 36, 0.22);
    border-radius: 8px;
    background: #080607;
}

.reason-article-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.reason-article-video video {
    display: block;
    width: 100%;
    max-height: 620px;
    background: #050404;
}

.reason-article-video-link {
    display: inline-flex;
    margin-bottom: 22px;
}

.exchange-page {
    background:
        linear-gradient(180deg, rgba(8, 8, 11, 0.72), rgba(8, 8, 11, 0.96)),
        url("../img/slides/background4.jpg") top center / cover no-repeat;
}

.exchange-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 18px;
}

.exchange-search {
    margin-bottom: 16px;
}

.exchange-tabs {
    margin-bottom: 18px;
}

.exchange-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.exchange-stats div {
    min-height: 104px;
    padding: 20px;
    border: 1px solid rgba(155, 29, 36, 0.22);
    background: linear-gradient(180deg, rgba(25, 22, 21, 0.97), rgba(11, 10, 10, 0.97));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.exchange-stats strong {
    display: block;
    color: #d64a42;
    font-size: 34px;
    line-height: 1;
}

.exchange-stats span {
    display: block;
    margin-top: 10px;
    color: #f4eee8;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.exchange-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
}

.exchange-offer-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 7, 0.54);
}

.exchange-offer-card.buy {
    border-color: rgba(97, 217, 232, 0.26);
}

.exchange-offer-card.sell {
    border-color: rgba(214, 74, 66, 0.34);
}

.exchange-item-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(155, 29, 36, 0.2);
    background: radial-gradient(circle, rgba(155, 29, 36, 0.22), rgba(0, 0, 0, 0.34));
}

.exchange-item-icon img,
.exchange-table-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.exchange-offer-body {
    min-width: 0;
}

.exchange-offer-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.exchange-offer-top strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.exchange-offer-top em,
.exchange-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    color: #fff4ee;
    background: rgba(155, 29, 36, 0.2);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
}

.exchange-offer-top em.buy,
.exchange-pill.buy {
    color: #e9fbff;
    background: rgba(36, 120, 132, 0.26);
}

.exchange-offer-body dl {
    display: grid;
    gap: 7px;
    margin: 0;
}

.exchange-offer-body dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.exchange-offer-body dt {
    color: #b9afa5;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.exchange-offer-body dd {
    margin: 0;
    color: #f5e8dc;
    text-align: right;
}

.exchange-table-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.exchange-table-item small {
    display: block;
    color: #b9afa5;
    font-size: 11px;
}

.hs-page {
    background:
        linear-gradient(180deg, rgba(8, 8, 11, 0.62), rgba(8, 8, 11, 0.96)),
        url("../img/slides/background4.jpg") top center / cover no-repeat;
}

.hs-heading,
.admin-head h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.hs-icon-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hs-title-img {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
}

body.reason-theme .hs-title-img,
body.reason-theme .hs-boss-icon,
body.reason-theme .hs-skill-cell img,
body.reason-theme .hs-skills img,
body.reason-theme .hs-overall-icon,
body.reason-theme .hs-title-icon,
body.reason-theme .reason-skill-tabs img,
body.reason-theme .hs-rank-badge img,
body.reason-theme .admin-badge-preview,
body.reason-theme .reason-rank-list img,
body.reason-theme .reason-rank-row img {
    image-rendering: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hs-tabs,
.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hs-tabs a,
.admin-tabs a {
    min-height: 46px;
    padding: 14px 18px 0;
    border: 1px solid rgba(155, 29, 36, 0.2);
    color: #ded7d0;
    background: rgba(8, 8, 10, 0.78);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
}

.hs-tabs a.active,
.admin-tabs a.active {
    color: #171009;
    background: linear-gradient(180deg, #c74642, #9b1d24);
}

.hs-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid rgba(155, 29, 36, 0.28);
    background:
        radial-gradient(circle at 0 50%, rgba(155, 29, 36, 0.14), transparent 28rem),
        rgba(6, 6, 8, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 16px 36px rgba(0, 0, 0, 0.24);
}

.hs-search span {
    display: none;
}

.hs-search input,
.hs-filter-stack select,
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(155, 29, 36, 0.28);
    color: #f7eee5;
    background: linear-gradient(180deg, rgba(18, 16, 16, 0.96), rgba(8, 7, 8, 0.96));
    font: inherit;
    font-size: 15px;
    outline: none;
}

.hs-search input {
    border-width: 1px;
}

.hs-search input::placeholder,
.reason-account-row input::placeholder,
.reason-vote-form input::placeholder {
    color: rgba(247, 238, 229, 0.55);
}

.hs-search input:focus,
.reason-account-row input:focus,
.reason-vote-form input:focus {
    border-color: rgba(214, 74, 66, 0.72);
    box-shadow: 0 0 0 3px rgba(155, 29, 36, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hs-search button,
.admin-inline-form button {
    min-height: 50px;
    padding: 0 24px;
    border: 0;
    color: #171009;
    background: linear-gradient(180deg, #c74642, #9b1d24);
    font-weight: 950;
    text-transform: uppercase;
}

body.reason-theme .hs-search input[type="search"],
body.reason-theme .reason-vote-form input[type="text"],
body.reason-theme .reason-account-row input[type="text"] {
    box-sizing: border-box;
    height: 52px !important;
    margin: 0;
    border: 1px solid rgba(155, 29, 36, 0.3) !important;
    color: #f5e8dc;
    background: linear-gradient(180deg, rgba(18, 16, 16, 0.96), rgba(8, 7, 8, 0.96)) !important;
    box-shadow: none !important;
}

body.reason-theme .hs-search input[type="search"]:focus,
body.reason-theme .reason-vote-form input[type="text"]:focus,
body.reason-theme .reason-account-row input[type="text"]:focus {
    border-color: rgba(214, 74, 66, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(155, 29, 36, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.hs-filter-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.hs-board {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.hs-table-panel {
    overflow: hidden;
    border: 1px solid rgba(155, 29, 36, 0.24);
    background:
        radial-gradient(circle at 80% 0, rgba(214, 74, 66, 0.12), transparent 24rem),
        linear-gradient(180deg, rgba(21, 18, 18, 0.98), rgba(8, 7, 8, 0.98));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.hs-skills,
.hs-results,
.admin-form,
.admin-table-card,
.admin-stat-card {
    border: 1px solid rgba(155, 29, 36, 0.22);
    background: linear-gradient(180deg, rgba(25, 22, 21, 0.97), rgba(11, 10, 10, 0.97));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hs-skills h2 {
    margin: 0;
    padding: 16px 18px;
    color: #fff;
    background: linear-gradient(90deg, rgba(156, 34, 24, 0.36), transparent);
    font-size: 18px;
    text-transform: uppercase;
}

.hs-skills a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #d6cec6;
    text-decoration: none;
    font-weight: 850;
}

.hs-skills a.active,
.hs-skills a:hover {
    color: #9b1d24;
    background: rgba(155, 29, 36, 0.08);
}

.hs-boss-list {
    max-height: 720px;
    overflow-y: auto;
}

.hs-boss-icon,
.hs-skill-cell img {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.hs-boss-emblem,
.reason-rank-medal {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 214, 120, 0.28);
    border-radius: 50%;
    color: #180d08;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.55), transparent 28%),
        linear-gradient(135deg, #f4c15f, #b06524 62%, #612616);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.26);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.hs-rank-badge {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fff2ce;
    overflow: visible;
    font-size: 0;
    line-height: 1;
    text-shadow: none;
}

.hs-rank-badge img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    image-rendering: auto;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.42));
}

.reason-rank-medal {
    background: linear-gradient(135deg, #5fb0ff, #184d88);
}

.hs-rank-badge.rank-1,
.hs-rank-badge.rank-2 {
    background: transparent;
}

.hs-rank-badge.rank-3 {
    background: transparent;
}

.hs-rank-badge.rank-4 {
    background: transparent;
}

.hs-rank-badge.rank-5 {
    background: transparent;
}

.hs-rank-badge.rank-6 {
    background: transparent;
}

.hs-rank-badge.rank-7 {
    background: transparent;
}

.hs-rank-badge.rank-8 {
    background: transparent;
}

.hs-player-wrap,
.hs-player-cell {
    display: inline-flex;
    align-items: center;
}

.hs-player-wrap {
    gap: 9px;
}

.hs-player-cell {
    min-height: 36px;
    padding: 4px 12px;
    border: 1px solid rgba(214, 74, 66, 0.18);
    background: linear-gradient(90deg, rgba(155, 29, 36, 0.17), rgba(255, 255, 255, 0.025));
}

.hs-player-link {
    color: #fff5e8 !important;
    font-weight: 950;
    letter-spacing: 0.02em;
}

.hs-rank-number,
.hs-mode-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid rgba(214, 74, 66, 0.22);
    color: #ffd4c6;
    background: rgba(155, 29, 36, 0.14);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.hs-mode-pill {
    color: #f6ead7;
    background: rgba(255, 255, 255, 0.045);
}

.hs-skill-cell {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hs-skills img {
    width: 20px;
    height: 20px;
}

.hs-overall-icon,
.hs-title-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: #171009;
    background: #9b1d24;
    font-size: 13px;
    font-weight: 950;
}

.hs-results-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
    font-weight: 950;
    text-transform: uppercase;
}

.hs-title-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.hs-table-wrap {
    overflow-x: auto;
}

.hs-table,
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.hs-table th,
.hs-table td,
.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    color: #e5d8ca;
    text-align: left;
}

.hs-table th,
.admin-table th {
    color: #9b1d24;
    font-size: 12px;
    text-transform: uppercase;
}

.hs-table a,
.admin-table a {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.reason-table tbody tr {
    transition: background 140ms ease, box-shadow 140ms ease;
}

.reason-table tbody tr:hover {
    background: rgba(155, 29, 36, 0.08);
    box-shadow: inset 3px 0 0 rgba(214, 74, 66, 0.7);
}

.hs-pager {
    display: flex;
    justify-content: space-between;
    padding: 18px;
}

.hs-pager a {
    color: #9b1d24;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.admin-stat-card {
    display: grid;
    gap: 8px;
    min-height: 120px;
    padding: 20px;
    text-decoration: none;
}

.admin-stat-card strong {
    color: #d64a42;
    font-size: 34px;
}

.admin-stat-card span {
    color: #f4eee8;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.admin-form,
.admin-table-card {
    padding: 18px;
}

.admin-form h2,
.admin-table-card h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 19px;
    text-transform: uppercase;
}

.admin-form {
    display: grid;
    gap: 12px;
}

.admin-form label {
    display: grid;
    gap: 6px;
    color: #f4eee8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-form textarea {
    min-height: 120px;
    padding: 12px;
    resize: vertical;
}

.admin-inline-form {
    display: inline-flex;
    margin-left: 8px;
}

.admin-inline-form button {
    min-height: 30px;
    padding: 0 10px;
    color: #fff;
    background: #8d241d;
}

.admin-table-card {
    overflow-x: auto;
}

.admin-badge-preview,
.reason-rank-list img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.reason-rank-row img {
    width: 26px;
    height: 26px;
}

.reason-footer {
    padding: 42px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #07070a;
}

.reason-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(3, minmax(120px, 170px));
    gap: 24px;
    color: #afa49a;
}

.reason-footer-logo {
    width: 150px;
}

.reason-footer strong {
    display: block;
    color: #fff;
    margin-bottom: 12px;
}

.reason-footer a {
    display: block;
    margin: 8px 0;
    color: #c8bdb2;
    text-decoration: none;
}

@media (max-width: 1050px) {
    .reason-nav-row {
        grid-template-columns: 1fr;
        padding-top: 126px;
    }

    .reason-nav-left,
    .reason-nav-right {
        grid-column: auto;
    }

    .reason-nav-side {
        min-height: unset;
    }

    .reason-nav-side a {
        min-height: 58px;
        font-size: 18px;
    }

    .reason-nav-logo img {
        width: 190px;
    }

    .reason-nav-logo {
        position: absolute;
        left: 50%;
        top: 0;
        width: 220px;
        min-height: 126px;
        transform: translateX(-50%);
    }

    .reason-hero {
        padding-top: 150px;
    }

    .reason-hero-grid,
    .reason-main-grid,
    .reason-store-grid,
    .reason-vote-layout,
    .reason-footer-grid,
    .hs-board,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .reason-nav-side {
        grid-template-columns: repeat(3, 1fr);
    }

    .reason-nav-side a {
        font-size: 13px;
    }

    .reason-hero h1 {
        font-size: 40px;
    }

    .reason-news-card {
        grid-template-columns: 1fr;
    }

    .reason-news-image {
        min-height: 170px;
    }

    .reason-vote-form {
        grid-template-columns: 1fr;
    }

    .hs-search {
        grid-template-columns: 1fr;
    }

    .hs-search span {
        display: none;
    }

    .hs-search input {
        border-width: 1px;
    }

    .hs-boss-list {
        max-height: 320px;
    }
}

body.reason-theme.alez-home {
    background: #080607 !important;
}

body.reason-theme.alez-home .reason-page {
    background: linear-gradient(180deg, #080607 0, #100b0c 45%, #070506 100%);
}

body.reason-theme:not(.alez-home) {
    background: #080607;
}

body.reason-theme:not(.alez-home) .reason-page {
    background-image:
        radial-gradient(circle at 50% 0, rgba(255, 137, 47, 0.12), transparent 22rem),
        linear-gradient(180deg, rgba(5, 4, 5, 0.72) 0%, rgba(8, 6, 7, 0.9) 42%, rgba(8, 5, 5, 0.98) 100%),
        url("../img/slides/background4.jpg");
    background-position: center top, center top, center top;
    background-size: auto, auto, cover;
    background-repeat: no-repeat;
    background-attachment: scroll, scroll, fixed;
}

body.reason-theme #playnow,
body.reason-theme .playbutton-container,
body.reason-theme .playbutton,
body.reason-theme .temp-play,
body.reason-theme .temp-play-btn,
body.reason-theme .play-button:not(.reason-primary-btn):not(.reason-secondary-btn) {
    display: none !important;
}

body.reason-theme .reason-nav-side a:hover,
body.reason-theme .reason-nav-side a.active {
    color: #f2d7d4;
    background:
        radial-gradient(circle at 50% 48%, rgba(154, 23, 29, 0.28), transparent 42%),
        linear-gradient(180deg, rgba(111, 15, 21, 0.14), rgba(111, 15, 21, 0.32));
    box-shadow: inset 0 -2px 0 rgba(183, 33, 39, 0.72);
}

body.reason-theme .reason-nav-logo img {
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 18px rgba(160, 28, 34, 0.38));
}

@media (min-width: 1051px) and (max-width: 1220px) {
    .reason-nav-row {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 300px) minmax(0, 1fr);
    }

    .reason-nav-side {
        gap: 8px;
    }

    .reason-nav-side a {
        padding: 0 2px;
        font-size: clamp(19px, 1.65vw, 22px);
    }

    .reason-nav-logo img {
        width: min(260px, 100%);
        max-height: 150px;
    }
}

body.reason-theme .reason-tag,
body.reason-theme .reason-news-body time,
body.reason-theme .reason-article time,
body.reason-theme .reason-read-more,
body.reason-theme .hs-table th,
body.reason-theme .admin-table th,
body.reason-theme .reason-table th {
    color: #d24b4b;
}

body.reason-theme::-webkit-scrollbar {
    width: 10px;
    background: #080607;
}

body.reason-theme::-webkit-scrollbar-track {
    background: #080607;
}

body.reason-theme::-webkit-scrollbar-thumb {
    border: 2px solid #080607;
    border-radius: 999px;
    background: #342226 !important;
}

body.reason-theme::-webkit-scrollbar-thumb:hover {
    background: #4a2a2f !important;
}

.reason-home-clean {
    overflow: hidden;
}

.reason-home-hero {
    position: relative;
    display: grid;
    min-height: 675px;
    overflow: hidden;
    place-items: center;
    padding: 92px 0 96px;
    text-align: center;
}

.reason-home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(6, 4, 5, 0.18), rgba(6, 4, 5, 0.78) 72%, #080607 100%),
        linear-gradient(90deg, rgba(6, 4, 5, 0.92), rgba(6, 4, 5, 0.35), rgba(6, 4, 5, 0.92)),
        url("../img/slides/background4.jpg") top center / cover no-repeat;
    filter: saturate(0.92) contrast(1.08);
}

.reason-home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 180px;
    background: linear-gradient(180deg, transparent, #080607);
    pointer-events: none;
}

.reason-home-hero-inner {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding-top: 10px;
}

.reason-home-hero h1,
.reason-home-copy h2,
.reason-home-section-head h2,
.reason-home-cta h2,
.reason-error-panel h1 {
    margin: 0;
    color: #fff4eb;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.reason-home-hero h1 {
    max-width: 860px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
}

.reason-home-hero p {
    max-width: 720px;
    margin: 0;
    color: #d2c1b7;
    font-size: 18px;
    line-height: 1.7;
}

.reason-home-actions {
    justify-content: center;
}

.reason-home-welcome,
.reason-home-news,
.reason-home-cta {
    position: relative;
    padding: 78px 0;
    background: #080607;
}

.reason-home-welcome::before,
.reason-home-news::before,
.reason-home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(166, 41, 39, 0.12);
    pointer-events: none;
}

.reason-home-welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.reason-home-media {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(166, 41, 39, 0.22);
    border-radius: 6px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.reason-home-media-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 6, 7, 0.05), rgba(8, 6, 7, 0.78)),
        url("../img/slides/background6.jpg") center / cover no-repeat;
    filter: saturate(0.9) contrast(1.06);
}

.reason-home-copy h2,
.reason-home-section-head h2,
.reason-home-cta h2 {
    margin-top: 12px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
}

.reason-home-copy p,
.reason-home-cta p {
    margin: 18px 0 0;
    color: #cbbeb2;
    font-size: 17px;
    line-height: 1.7;
}

.reason-home-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.reason-home-stat-strip div {
    min-height: 88px;
    padding: 16px;
    border: 1px solid rgba(166, 41, 39, 0.2);
    background: linear-gradient(180deg, rgba(25, 20, 20, 0.92), rgba(9, 7, 8, 0.94));
}

.reason-home-stat-strip strong {
    display: block;
    color: #d24b4b;
    font-size: 30px;
    line-height: 1;
}

.reason-home-stat-strip span {
    display: block;
    margin-top: 10px;
    color: #f4eee8;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.reason-home-section-head {
    display: grid;
    justify-items: center;
    margin-bottom: 28px;
    text-align: center;
}

.reason-home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reason-home-news-card {
    overflow: hidden;
    border: 1px solid rgba(166, 41, 39, 0.22);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(24, 19, 19, 0.96), rgba(10, 8, 9, 0.96));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.reason-home-news-image {
    display: block;
    min-height: 180px;
    background-position: center;
    background-size: cover;
}

.reason-home-news-body {
    padding: 20px;
}

.reason-home-news-body time {
    color: #d24b4b;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.reason-home-news-body h3 {
    margin: 10px 0 0;
    color: #fff4eb;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 950;
}

.reason-home-news-body p {
    min-height: 72px;
    margin: 12px 0 16px;
    color: #cbbeb2;
    line-height: 1.6;
}

.reason-home-news-link {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.reason-home-cta {
    text-align: center;
    background:
        linear-gradient(90deg, rgba(8, 6, 7, 0.95), rgba(8, 6, 7, 0.64), rgba(8, 6, 7, 0.95)),
        url("../img/site-raids-bg.png") center / cover no-repeat;
}

.reason-home-cta p {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
}

.reason-error-page {
    min-height: 520px;
    padding: 86px 0 120px;
    background:
        linear-gradient(180deg, rgba(8, 6, 7, 0.72), #080607),
        url("../img/slides/background4.jpg") top center / cover no-repeat;
}

.reason-error-wrap {
    display: grid;
    place-items: center;
}

.reason-error-panel {
    max-width: 720px;
    text-align: center;
}

.reason-error-panel h1 {
    margin-top: 14px;
    font-size: clamp(32px, 5vw, 56px);
}

.reason-error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

@media (max-width: 960px) {
    .reason-home-welcome-grid,
    .reason-home-news-grid {
        grid-template-columns: 1fr;
    }

    .reason-home-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .reason-home-hero {
        min-height: 560px;
        padding: 62px 0 70px;
    }

    .reason-home-stat-strip {
        grid-template-columns: 1fr;
    }

    .reason-home-welcome,
    .reason-home-news,
    .reason-home-cta {
        padding: 54px 0;
    }
}

.reason-content.reason-download-page {
    padding: 0;
    background: #080607;
}

.reason-download-hero {
    position: relative;
    display: grid;
    min-height: 560px;
    place-items: center;
    overflow: hidden;
    padding: 76px 0 86px;
    text-align: center;
}

.reason-download-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(6, 4, 5, 0.2), rgba(6, 4, 5, 0.82) 72%, #080607 100%),
        linear-gradient(90deg, rgba(6, 4, 5, 0.92), rgba(6, 4, 5, 0.3), rgba(6, 4, 5, 0.92)),
        url("../img/slides/background4.jpg") top center / cover no-repeat;
}

.reason-download-hero-inner {
    display: grid;
    justify-items: center;
    gap: 16px;
}

.reason-download-hero h1,
.reason-download-feature h2,
.reason-download-help h2 {
    margin: 0;
    color: #fff4eb;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.reason-download-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.98;
}

.reason-download-hero p,
.reason-download-feature p,
.reason-download-help p {
    max-width: 720px;
    margin: 0;
    color: #d2c1b7;
    font-size: 18px;
    line-height: 1.7;
}

.reason-download-actions {
    justify-content: center;
}

.reason-download-section,
.reason-download-help {
    position: relative;
    padding: 76px 0;
    background: #080607;
}

.reason-download-section::before,
.reason-download-help::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(166, 41, 39, 0.12);
    pointer-events: none;
}

.reason-download-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 22px;
    align-items: stretch;
}

.reason-download-feature {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(166, 41, 39, 0.28);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(24, 19, 19, 0.93), rgba(10, 8, 9, 0.96)),
        url("../img/slides/background6.jpg") center / cover no-repeat;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.reason-download-feature h2,
.reason-download-help h2 {
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.05;
}

.reason-webclient-devices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.reason-webclient-devices span {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid rgba(210, 75, 75, 0.28);
    border-radius: 6px;
    color: #f5e7df;
    background:
        linear-gradient(180deg, rgba(35, 22, 24, 0.9), rgba(10, 8, 9, 0.94));
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 22px rgba(0, 0, 0, 0.18);
}

.reason-webclient-devices .material-icons {
    color: #d24b4b;
    font-size: 22px;
}

.reason-webclient-btn {
    gap: 10px;
}

.reason-webclient-btn .material-icons {
    font-size: 22px;
}

.reason-download-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.reason-download-card {
    display: grid;
    min-height: 124px;
    grid-template-columns: 52px minmax(0, 1fr);
    align-content: center;
    gap: 6px 14px;
    padding: 18px;
    border: 1px solid rgba(166, 41, 39, 0.22);
    border-radius: 6px;
    color: #fff4eb;
    background: linear-gradient(180deg, rgba(24, 19, 19, 0.96), rgba(10, 8, 9, 0.96));
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.reason-download-card:hover {
    transform: translateY(-2px);
    border-color: rgba(210, 75, 75, 0.55);
    background: linear-gradient(180deg, rgba(40, 24, 24, 0.98), rgba(14, 9, 10, 0.98));
}

.reason-download-card.featured {
    border-color: rgba(210, 75, 75, 0.46);
    box-shadow: inset 0 0 0 1px rgba(210, 75, 75, 0.18), 0 18px 42px rgba(0, 0, 0, 0.2);
}

.reason-download-card .material-icons {
    grid-row: span 2;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(166, 41, 39, 0.28);
    border-radius: 6px;
    color: #d24b4b;
    background: rgba(5, 5, 7, 0.45);
    font-size: 28px;
}

.reason-download-card strong {
    overflow-wrap: anywhere;
    font-size: 18px;
    font-weight: 950;
    text-transform: uppercase;
}

.reason-download-card em {
    color: #cbbeb2;
    font-style: normal;
    line-height: 1.45;
}

.reason-download-help {
    background:
        linear-gradient(90deg, rgba(8, 6, 7, 0.96), rgba(8, 6, 7, 0.72), rgba(8, 6, 7, 0.96)),
        url("../img/site-raids-bg.png") center / cover no-repeat;
}

.reason-download-help-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.reason-download-help .reason-hero-actions {
    justify-content: flex-end;
}

@media (max-width: 1050px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .reason-wrap {
        width: min(100% - 24px, 720px);
    }

    .reason-nav {
        min-height: auto;
        background: linear-gradient(180deg, rgba(15, 12, 13, 0.98), rgba(8, 7, 8, 0.98));
    }

    .reason-nav-row {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 10px 12px 14px;
    }

    .reason-nav-logo {
        position: relative;
        left: auto;
        top: auto;
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        min-height: 0;
        transform: none;
    }

    .reason-nav-logo img {
        width: min(230px, 70vw);
        max-height: 112px;
        object-fit: contain;
    }

    .reason-nav-left,
    .reason-nav-right {
        grid-column: auto;
    }

    .reason-nav-left {
        grid-row: 2;
    }

    .reason-nav-right {
        grid-row: 3;
    }

    .reason-nav-side {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 0;
        gap: 6px;
    }

    .reason-nav-side a {
        min-width: 0;
        min-height: 42px;
        padding: 0 8px;
        border: 1px solid rgba(166, 41, 39, 0.18);
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.025);
        font-size: clamp(11px, 3vw, 14px);
        line-height: 1;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .reason-home-hero,
    .reason-download-hero {
        min-height: auto;
        padding: 46px 0 62px;
    }

    .reason-home-hero h1,
    .reason-download-hero h1 {
        font-size: clamp(34px, 12vw, 52px);
        line-height: 1.02;
    }

    .reason-home-hero p,
    .reason-download-hero p,
    .reason-home-copy p,
    .reason-home-cta p,
    .reason-download-feature p,
    .reason-download-help p {
        font-size: 16px;
        line-height: 1.6;
    }

    .reason-hero-actions {
        width: 100%;
        justify-content: center;
    }

    .reason-primary-btn,
    .reason-secondary-btn,
    .reason-product-bottom button,
    .reason-mini-btn,
    .reason-vote-form button {
        width: 100%;
        min-height: 48px;
        padding-right: 14px;
        padding-left: 14px;
        white-space: normal;
        text-align: center;
    }

    .reason-home-welcome-grid,
    .reason-home-news-grid,
    .reason-store-grid,
    .reason-vote-layout,
    .reason-download-layout,
    .reason-download-help-grid,
    .reason-footer-grid {
        grid-template-columns: 1fr;
    }

    .reason-download-list {
        grid-template-columns: 1fr;
    }

    .reason-home-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reason-home-media {
        min-height: 250px;
    }

    .reason-download-section,
    .reason-download-help,
    .reason-home-welcome,
    .reason-home-news,
    .reason-home-cta {
        padding: 48px 0;
    }

    .reason-download-feature {
        min-height: 260px;
    }

    .reason-download-help .reason-hero-actions {
        justify-content: center;
    }

    .hs-table-wrap,
    .reason-table-wrap,
    .admin-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 520px) {
    .reason-wrap {
        width: min(100% - 18px, 460px);
    }

    .reason-nav-row {
        padding: 8px 9px 12px;
    }

    .reason-nav-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reason-nav-side a {
        min-height: 40px;
        font-size: 12px;
    }

    .reason-nav-logo img {
        width: min(210px, 74vw);
        max-height: 100px;
    }

    .reason-home-stat-strip {
        grid-template-columns: 1fr;
    }

    .reason-download-card {
        grid-template-columns: 44px minmax(0, 1fr);
        min-height: 108px;
        padding: 14px;
    }

    .reason-webclient-devices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .reason-webclient-devices span {
        min-height: 46px;
        padding: 0 8px;
        font-size: 12px;
    }

    .reason-download-card .material-icons {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .reason-download-card strong {
        font-size: 15px;
    }
}

@media (max-width: 1050px) {
    html,
    body,
    .reason-page {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .reason-nav {
        position: sticky;
        top: 0;
        z-index: 100;
        min-height: 0;
        border-bottom-color: rgba(166, 41, 39, 0.24);
        background: linear-gradient(180deg, rgba(14, 11, 12, 0.98), rgba(7, 6, 7, 0.98));
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.54);
    }

    .reason-nav-row {
        display: none !important;
    }

    .reason-mobile-bar {
        display: flex;
        min-height: 76px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 8px 12px;
    }

    .reason-mobile-logo {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        text-decoration: none;
    }

    .reason-mobile-logo img {
        display: block;
        width: min(188px, 56vw);
        max-height: 68px;
        object-fit: contain;
        filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 14px rgba(160, 28, 34, 0.38));
    }

    .reason-mobile-menu-btn {
        display: inline-flex;
        width: 46px;
        height: 42px;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(215, 74, 66, 0.4);
        border-radius: 6px;
        background: linear-gradient(180deg, rgba(42, 23, 24, 0.98), rgba(17, 9, 10, 0.98));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(0, 0, 0, 0.26);
        cursor: pointer;
    }

    .reason-mobile-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: #f3d7d4;
        box-shadow: 0 0 10px rgba(210, 75, 75, 0.28);
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .reason-nav-toggle:checked ~ .reason-mobile-bar .reason-mobile-menu-btn span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .reason-nav-toggle:checked ~ .reason-mobile-bar .reason-mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .reason-nav-toggle:checked ~ .reason-mobile-bar .reason-mobile-menu-btn span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .reason-mobile-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 0 12px 14px;
    }

    .reason-nav-toggle:checked ~ .reason-mobile-menu {
        display: grid;
    }

    .reason-mobile-menu a {
        display: inline-flex;
        min-width: 0;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
        border: 1px solid rgba(166, 41, 39, 0.24);
        border-radius: 6px;
        color: #f4f1f0;
        background: rgba(255, 255, 255, 0.035);
        font-size: 13px;
        font-weight: 950;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        text-shadow: 0 2px 0 rgba(0, 0, 0, 0.8);
    }

    .reason-mobile-menu a.active,
    .reason-mobile-menu a:hover {
        color: #f2d7d4;
        border-color: rgba(210, 75, 75, 0.5);
        background:
            radial-gradient(circle at 50% 48%, rgba(154, 23, 29, 0.28), transparent 42%),
            linear-gradient(180deg, rgba(111, 15, 21, 0.14), rgba(111, 15, 21, 0.32));
        box-shadow: inset 0 -2px 0 rgba(210, 75, 75, 0.55);
    }

    .reason-content {
        padding-top: 44px;
    }

    .reason-home-hero {
        min-height: auto;
        padding: 42px 0 58px;
    }

    .reason-download-hero {
        min-height: auto;
        padding: 36px 0 52px;
    }

    .reason-home-hero-inner,
    .reason-download-hero-inner {
        gap: 14px;
    }

    .reason-home-hero h1,
    .reason-download-hero h1 {
        max-width: 100%;
        font-size: clamp(32px, 10vw, 48px);
        line-height: 1.04;
    }

    .reason-home-hero p,
    .reason-download-hero p {
        max-width: 36rem;
        font-size: 15px;
        line-height: 1.55;
    }

    .reason-home-welcome,
    .reason-home-news,
    .reason-home-cta,
    .reason-download-section,
    .reason-download-help {
        padding: 42px 0;
    }

    .reason-panel,
    .reason-news-card,
    .reason-download-feature,
    .reason-download-card,
    .reason-home-cta-inner {
        border-radius: 7px;
    }

    .reason-table-wrap,
    .hs-table-wrap,
    .admin-table-wrap {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 520px) {
    .reason-wrap {
        width: min(100% - 18px, 460px);
    }

    .reason-mobile-bar {
        min-height: 68px;
        padding: 6px 9px;
    }

    .reason-mobile-logo img {
        width: min(164px, 54vw);
        max-height: 60px;
    }

    .reason-mobile-menu {
        grid-template-columns: 1fr;
        padding: 0 9px 12px;
    }

    .reason-mobile-menu a {
        min-height: 42px;
        font-size: 12px;
    }

    .reason-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .reason-primary-btn,
    .reason-secondary-btn,
    .reason-product-bottom button,
    .reason-mini-btn,
    .reason-vote-form button {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        white-space: normal;
    }

    .reason-download-list {
        gap: 10px;
    }
}

@media (max-width: 1050px) {
    .reason-footer {
        padding: 30px 0 26px;
    }

    .reason-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 14px 10px;
        align-items: start;
        text-align: center;
    }

    .reason-footer-grid > div:first-child {
        display: grid;
        grid-column: 1 / -1;
        justify-items: center;
        gap: 8px;
        max-width: 620px;
        margin: 0 auto 4px;
    }

    .reason-footer-logo {
        width: min(132px, 44vw);
    }

    .reason-footer p {
        max-width: 36rem;
        margin: 0;
        color: #b9aca3;
        font-size: 14px;
        line-height: 1.5;
    }

    .reason-footer strong {
        margin-bottom: 7px;
        color: #fff4eb;
        font-size: 12px;
        font-weight: 950;
        line-height: 1;
        text-transform: uppercase;
    }

    .reason-footer a {
        min-height: 28px;
        margin: 3px 0;
        color: #c8bdb2;
        font-size: 12px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 420px) {
    .reason-footer-grid {
        gap: 12px 6px;
    }

    .reason-footer strong {
        font-size: 11px;
    }

    .reason-footer a {
        min-height: 26px;
        font-size: 11px;
    }
}

@media (max-width: 1050px) {
    body.reason-theme:not(.alez-home) .reason-page {
        background-attachment: scroll, scroll, scroll;
    }

    body.reason-theme.alez-home,
    body.reason-theme .reason-page {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    body.reason-theme .reason-nav {
        display: block;
        height: 82px;
        min-height: 82px;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible;
    }

    body.reason-theme .reason-mobile-bar {
        height: 82px;
        min-height: 82px;
        margin: 0 !important;
        padding: 8px 12px;
    }

    body.reason-theme .reason-mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 110;
        padding: 12px;
        border-top: 1px solid rgba(214, 74, 66, 0.22);
        border-bottom: 1px solid rgba(214, 74, 66, 0.38);
        background:
            radial-gradient(circle at 18% 0, rgba(137, 22, 27, 0.26), transparent 15rem),
            linear-gradient(180deg, #151011 0, #0a0708 58%, #050405 100%) !important;
        box-shadow: 0 22px 36px rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    body.reason-theme .reason-nav-toggle:not(:checked) ~ .reason-mobile-menu {
        display: none !important;
    }

    body.reason-theme .reason-nav-toggle:checked ~ .reason-mobile-menu {
        display: grid !important;
    }

    body.reason-theme .reason-mobile-menu a {
        border-color: rgba(214, 74, 66, 0.34);
        color: #fff4eb;
        background:
            linear-gradient(180deg, rgba(35, 22, 24, 0.98), rgba(12, 8, 9, 0.98));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 18px rgba(0, 0, 0, 0.26);
    }

    body.reason-theme .reason-mobile-menu a.active,
    body.reason-theme .reason-mobile-menu a:hover {
        border-color: rgba(232, 91, 84, 0.62);
        background:
            linear-gradient(180deg, rgba(112, 25, 29, 0.98), rgba(38, 13, 16, 0.98));
        box-shadow: inset 0 -2px 0 rgba(232, 91, 84, 0.55), 0 10px 24px rgba(0, 0, 0, 0.34);
    }
}

@media (max-width: 520px) {
    body.reason-theme .reason-nav,
    body.reason-theme .reason-mobile-bar {
        height: 72px;
        min-height: 72px;
    }
}

/* Modern store/forms polish */
@keyframes reason-flame-flicker {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(214, 74, 66, 0.28));
    }
    45% {
        filter: drop-shadow(0 0 19px rgba(255, 140, 54, 0.32));
    }
    70% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 126, 0.22));
    }
}

@keyframes reason-panel-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.reason-theme input[type="text"],
body.reason-theme input[type="search"],
body.reason-theme input[type="email"],
body.reason-theme input[type="password"],
body.reason-theme input[type="number"],
body.reason-theme select,
body.reason-theme textarea {
    box-sizing: border-box !important;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 0 18px !important;
    border: 1px solid rgba(221, 95, 63, 0.34) !important;
    border-radius: 12px !important;
    color: #fff4e8 !important;
    background:
        linear-gradient(180deg, rgba(22, 14, 13, 0.96), rgba(7, 5, 5, 0.98)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -10px 22px rgba(0, 0, 0, 0.22),
        0 10px 24px rgba(0, 0, 0, 0.16) !important;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 50px !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    caret-color: #ffb15f;
    outline: none;
}

body.reason-theme textarea {
    min-height: 132px;
    padding-top: 14px !important;
    line-height: 1.45 !important;
}

body.reason-theme select {
    line-height: 1.25 !important;
}

body.reason-theme input::placeholder,
body.reason-theme textarea::placeholder {
    color: rgba(232, 207, 183, 0.58) !important;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    opacity: 1;
}

body.reason-theme input[type="text"]:focus,
body.reason-theme input[type="search"]:focus,
body.reason-theme input[type="email"]:focus,
body.reason-theme input[type="password"]:focus,
body.reason-theme input[type="number"]:focus,
body.reason-theme select:focus,
body.reason-theme textarea:focus {
    border-color: rgba(255, 171, 91, 0.74) !important;
    background:
        radial-gradient(circle at 18% 0, rgba(167, 49, 34, 0.28), transparent 18rem),
        linear-gradient(180deg, rgba(28, 17, 14, 0.98), rgba(8, 5, 5, 0.98)) !important;
    box-shadow:
        0 0 0 3px rgba(214, 74, 66, 0.16),
        0 16px 34px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.reason-theme .reason-panel-title,
body.reason-theme .hs-heading h1,
body.reason-theme .reason-home-copy h2,
body.reason-theme .reason-home-news h2,
body.reason-theme .admin-page-title h1 {
    color: #fff2df;
    font-family: "Spectral SC", "MedievalSharp", Georgia, serif !important;
    letter-spacing: 0.045em;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.8),
        0 0 18px rgba(214, 74, 66, 0.36),
        0 0 28px rgba(255, 150, 64, 0.18);
    animation: reason-flame-flicker 4.8s ease-in-out infinite;
}

body.reason-theme .reason-primary-btn,
body.reason-theme .reason-mini-btn,
body.reason-theme .reason-product-bottom button,
body.reason-theme .reason-vote-form button,
body.reason-theme .hs-search button,
body.reason-theme .admin-action,
body.reason-theme .admin-form button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 190, 109, 0.35) !important;
    border-radius: 12px !important;
    color: #fff7ed !important;
    background:
        radial-gradient(circle at 50% -20%, rgba(255, 186, 91, 0.38), transparent 42%),
        linear-gradient(180deg, #d84f36 0%, #9f2428 48%, #3a0d12 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -6px 14px rgba(0, 0, 0, 0.24),
        0 12px 26px rgba(0, 0, 0, 0.34),
        0 0 22px rgba(214, 74, 66, 0.18) !important;
    font-family: "Spectral SC", "MedievalSharp", Georgia, serif !important;
    font-weight: 950 !important;
    letter-spacing: 0.055em !important;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.62) !important;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

body.reason-theme .reason-primary-btn::after,
body.reason-theme .reason-mini-btn::after,
body.reason-theme .reason-product-bottom button::after,
body.reason-theme .reason-vote-form button::after,
body.reason-theme .hs-search button::after {
    content: "";
    position: absolute;
    inset: -70% auto -70% -45%;
    z-index: -1;
    width: 46%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transition: left 360ms ease;
}

body.reason-theme .reason-primary-btn:hover,
body.reason-theme .reason-mini-btn:hover,
body.reason-theme .reason-product-bottom button:hover,
body.reason-theme .reason-vote-form button:hover,
body.reason-theme .hs-search button:hover,
body.reason-theme .admin-action:hover,
body.reason-theme .admin-form button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 213, 139, 0.7) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 16px 32px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(232, 89, 56, 0.28) !important;
}

body.reason-theme .reason-primary-btn:hover::after,
body.reason-theme .reason-mini-btn:hover::after,
body.reason-theme .reason-product-bottom button:hover::after,
body.reason-theme .reason-vote-form button:hover::after,
body.reason-theme .hs-search button:hover::after {
    left: 120%;
}

body.reason-theme .reason-store-grid {
    align-items: start;
}

body.reason-theme .reason-account-row {
    position: relative;
    margin: 18px 0 18px;
    padding: 16px;
    border: 1px solid rgba(223, 87, 59, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 0, rgba(225, 76, 46, 0.18), transparent 16rem),
        linear-gradient(180deg, rgba(30, 19, 17, 0.86), rgba(10, 7, 7, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 34px rgba(0, 0, 0, 0.18);
}

body.reason-theme .reason-account-row label {
    display: grid;
    gap: 9px;
    color: #ffd7a8;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

body.reason-theme .reason-category-row {
    gap: 9px;
    margin: 18px 0 22px;
}

body.reason-theme .reason-category-row button {
    border-radius: 999px !important;
    border: 1px solid rgba(255, 182, 101, 0.23) !important;
    color: #dac4ad !important;
    background:
        linear-gradient(180deg, rgba(33, 22, 20, 0.95), rgba(10, 7, 7, 0.96)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 18px rgba(0, 0, 0, 0.16);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif !important;
    font-weight: 900 !important;
    transition: transform 140ms ease, border-color 140ms ease, color 140ms ease, background 140ms ease;
}

body.reason-theme .reason-category-row button.active,
body.reason-theme .reason-category-row button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 176, 91, 0.62) !important;
    color: #fff1df !important;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 171, 91, 0.28), transparent 56%),
        linear-gradient(180deg, rgba(133, 36, 28, 0.96), rgba(43, 12, 13, 0.96)) !important;
}

body.reason-theme .reason-product-grid {
    gap: 18px;
}

body.reason-theme .reason-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 91, 59, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% -8%, rgba(255, 170, 82, 0.16), transparent 11rem),
        radial-gradient(circle at 88% 18%, rgba(163, 42, 37, 0.2), transparent 10rem),
        linear-gradient(180deg, rgba(28, 18, 16, 0.98), rgba(8, 6, 6, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 32px rgba(0, 0, 0, 0.22);
    animation: reason-panel-rise 420ms ease both;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.reason-theme .reason-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 34%),
        radial-gradient(circle at 50% 105%, rgba(210, 74, 48, 0.18), transparent 44%);
}

body.reason-theme .reason-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 179, 94, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 42px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(214, 74, 66, 0.13);
}

body.reason-theme .reason-product-img {
    border-radius: 15px;
    border: 1px solid rgba(255, 189, 106, 0.18);
    background:
        radial-gradient(circle, rgba(255, 184, 91, 0.14), rgba(22, 13, 12, 0.9) 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
}

body.reason-theme .reason-product-img img {
    image-rendering: auto;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.42));
}

body.reason-theme .reason-product-card h3 {
    color: #fff2df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 18px;
    letter-spacing: 0.025em;
}

body.reason-theme .reason-product-card > span {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    padding: 5px 10px;
    border: 1px solid rgba(255, 180, 91, 0.2);
    border-radius: 999px;
    color: #ffd2a0;
    background: rgba(94, 30, 24, 0.28);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 900;
}

body.reason-theme .reason-cart-row {
    border-radius: 15px;
    border: 1px solid rgba(255, 179, 94, 0.18);
    background:
        linear-gradient(180deg, rgba(28, 18, 16, 0.9), rgba(8, 6, 6, 0.92));
}

body.reason-theme .reason-cart-row img {
    border-radius: 12px;
    background: radial-gradient(circle, rgba(255, 184, 91, 0.12), rgba(12, 8, 8, 0.8));
}

body.reason-theme .reason-checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 14px 0 12px;
}

body.reason-theme .reason-checkout-steps span {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-height: 54px;
    padding: 8px 5px;
    border: 1px solid rgba(255, 180, 91, 0.16);
    border-radius: 13px;
    color: #cbb6a0;
    background: rgba(20, 13, 12, 0.76);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

body.reason-theme .reason-checkout-steps b {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: #180908;
    background: linear-gradient(180deg, #ffd28a, #d95235);
}

body.reason-theme .reason-checkout-steps .is-active {
    border-color: rgba(255, 190, 104, 0.42);
    color: #fff1df;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 176, 91, 0.17), transparent 60%),
        rgba(59, 17, 16, 0.72);
}

body.reason-theme .reason-provider-choice,
body.reason-theme .reason-crypto-choice {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 184, 91, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 0, rgba(227, 75, 48, 0.18), transparent 18rem),
        linear-gradient(180deg, rgba(24, 15, 14, 0.96), rgba(7, 5, 5, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 32px rgba(0, 0, 0, 0.24);
    animation: reason-panel-rise 260ms ease both;
}

body.reason-theme .reason-provider-choice[hidden],
body.reason-theme .reason-crypto-choice[hidden] {
    display: none !important;
}

body.reason-theme .reason-payment-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

body.reason-theme .reason-payment-head span {
    color: #fff0dc;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0.04em;
}

body.reason-theme .reason-payment-head strong {
    color: #c8ad93;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-align: right;
}

body.reason-theme .reason-payment-head-compact span {
    font-size: 15px;
}

body.reason-theme .reason-payment-grid,
body.reason-theme .reason-crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

body.reason-theme .reason-payment-grid > form,
body.reason-theme .reason-crypto-grid > form {
    display: contents;
}

body.reason-theme .reason-provider-btn {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 88px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(255, 190, 109, 0.26);
    border-radius: 17px;
    color: #fff3e4;
    background:
        radial-gradient(circle at 20% 0, rgba(255, 181, 91, 0.14), transparent 48%),
        linear-gradient(180deg, rgba(37, 24, 21, 0.98), rgba(12, 8, 8, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.22);
    text-align: left;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.reason-theme .reason-provider-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 218, 139, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(230, 74, 48, 0.42), transparent 56%);
    transition: opacity 160ms ease;
}

body.reason-theme .reason-provider-btn strong {
    position: relative;
    z-index: 1;
    color: #fff2df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0.04em;
}

body.reason-theme .reason-provider-btn em {
    position: relative;
    z-index: 1;
    color: #cbb39b;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.35;
}

body.reason-theme .reason-provider-btn:hover,
body.reason-theme .reason-provider-btn.is-selected {
    transform: translateY(-3px);
    border-color: rgba(255, 190, 109, 0.66);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 20px 36px rgba(0, 0, 0, 0.35),
        0 0 26px rgba(219, 77, 49, 0.18);
}

body.reason-theme .reason-provider-btn:hover::before,
body.reason-theme .reason-provider-btn.is-selected::before {
    opacity: 1;
}

body.reason-theme .reason-provider-coin {
    min-height: 74px;
    padding: 14px;
    border-radius: 15px;
}

body.reason-theme .reason-provider-coin strong {
    font-size: 15px;
}

body.reason-theme .reason-provider-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.58;
    transform: none;
}

@media (max-width: 720px) {
    body.reason-theme .reason-payment-grid,
    body.reason-theme .reason-crypto-grid,
    body.reason-theme .reason-checkout-steps {
        grid-template-columns: 1fr;
    }

    body.reason-theme .reason-payment-head {
        display: grid;
        align-items: start;
    }

    body.reason-theme .reason-payment-head strong {
        text-align: left;
    }
}

/* Page banners and smoother checkout sheet */
body.reason-theme .reason-content > .reason-page-banner {
    position: relative;
    overflow: hidden;
    margin-top: -8px;
    padding: 58px 0 38px;
    border-bottom: 1px solid rgba(218, 81, 56, 0.18);
    background:
        radial-gradient(circle at 50% -20%, rgba(255, 161, 70, 0.18), transparent 24rem),
        radial-gradient(circle at 14% 20%, rgba(164, 35, 31, 0.2), transparent 18rem),
        linear-gradient(180deg, rgba(13, 8, 8, 0.72), rgba(8, 6, 7, 0.98)),
        url("../img/slides/background4.jpg") center 26% / cover no-repeat;
}

body.reason-theme .reason-content > .reason-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 4, 5, 0.94), rgba(5, 4, 5, 0.38), rgba(5, 4, 5, 0.94)),
        radial-gradient(circle at 50% 100%, rgba(222, 75, 47, 0.18), transparent 34rem);
    pointer-events: none;
}

body.reason-theme .reason-page-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

body.reason-theme .reason-page-banner h1,
body.reason-theme .reason-download-hero h1,
body.reason-theme .reason-home-hero h1 {
    margin: 0;
    color: #fff2df;
    font-family: "Spectral SC", "MedievalSharp", Georgia, serif !important;
    font-size: clamp(42px, 8vw, 82px);
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow:
        0 4px 0 rgba(0, 0, 0, 0.78),
        0 0 18px rgba(255, 125, 55, 0.28),
        0 0 42px rgba(204, 45, 36, 0.26);
    animation: reason-flame-flicker 4.6s ease-in-out infinite;
}

body.reason-theme .reason-page-banner p {
    max-width: 700px;
    margin: 0;
    color: #d8c3af;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
}

body.reason-theme .reason-page-banner-store,
body.reason-theme .reason-page-banner-vote,
body.reason-theme .reason-page-banner-news,
body.reason-theme .reason-page-banner-hiscores,
body.reason-theme .reason-page-banner-tradepost {
    background:
        radial-gradient(circle at 50% -20%, rgba(255, 161, 70, 0.2), transparent 24rem),
        radial-gradient(circle at 14% 20%, rgba(164, 35, 31, 0.2), transparent 18rem),
        linear-gradient(180deg, rgba(13, 8, 8, 0.72), rgba(8, 6, 7, 0.98)),
        url("../img/slides/background4.jpg") center 26% / cover no-repeat;
}

body.reason-theme .reason-store-grid {
    padding-top: 34px;
}

body.reason-theme .reason-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
    gap: 20px;
}

body.reason-theme .reason-product-card {
    display: grid;
    min-height: 370px;
    grid-template-rows: auto auto auto 1fr auto;
    padding: 16px;
    border-radius: 20px;
}

body.reason-theme .reason-product-img {
    position: relative;
    height: 154px;
    margin: -2px -2px 14px;
    border: 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 200, 109, 0.2), transparent 34%),
        radial-gradient(circle at 50% 72%, rgba(211, 67, 43, 0.22), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.08));
    box-shadow: inset 0 -1px 0 rgba(255, 185, 101, 0.12);
}

body.reason-theme .reason-product-img::after {
    content: "";
    position: absolute;
    right: 16%;
    bottom: 20px;
    left: 16%;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.38), transparent 70%);
    filter: blur(2px);
}

body.reason-theme .reason-product-img img {
    position: relative;
    z-index: 1;
    max-width: 132px;
    max-height: 132px;
    transform: translateY(-2px) scale(1.06);
    image-rendering: auto;
    filter:
        drop-shadow(0 14px 14px rgba(0, 0, 0, 0.54))
        drop-shadow(0 0 18px rgba(255, 164, 74, 0.12));
}

body.reason-theme .reason-product-card:hover .reason-product-img img {
    transform: translateY(-8px) scale(1.12);
}

body.reason-theme .reason-product-card h3 {
    min-height: 44px;
    margin-top: 2px;
    line-height: 1.18;
}

body.reason-theme .reason-product-bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 181, 91, 0.14);
}

body.reason-theme .reason-product-bottom strong {
    color: #ffe0aa;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 24px;
    text-shadow: 0 0 18px rgba(255, 155, 64, 0.18);
}

body.reason-theme .reason-payment-sheet {
    padding: 16px;
}

body.reason-theme .reason-payment-sheet .reason-payment-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

body.reason-theme .reason-method-panel {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    padding: 18px;
    border: 1px solid rgba(255, 190, 109, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 0, rgba(255, 169, 78, 0.13), transparent 16rem),
        linear-gradient(180deg, rgba(38, 24, 21, 0.94), rgba(10, 7, 7, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 26px rgba(0, 0, 0, 0.22);
}

body.reason-theme .reason-method-panel::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px 20%;
    height: 130px;
    opacity: 0.42;
    background: radial-gradient(circle, rgba(214, 74, 66, 0.22), transparent 64%);
    pointer-events: none;
}

body.reason-theme .reason-method-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

body.reason-theme .reason-method-copy strong {
    color: #fff2df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: 0.035em;
}

body.reason-theme .reason-method-copy em,
body.reason-theme .reason-payment-disabled {
    color: #cdb49c;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

body.reason-theme .reason-crypto-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 9px;
}

body.reason-theme .reason-crypto-strip form {
    margin: 0;
}

body.reason-theme .reason-coin-pill {
    display: grid;
    width: 100%;
    min-height: 66px;
    align-content: center;
    gap: 2px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 190, 109, 0.28);
    border-radius: 14px;
    color: #fff0dc;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 184, 91, 0.16), transparent 62%),
        linear-gradient(180deg, rgba(32, 21, 19, 0.98), rgba(9, 6, 6, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 20px rgba(0, 0, 0, 0.2);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    text-align: left;
    cursor: pointer;
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

body.reason-theme .reason-coin-pill strong {
    color: #ffdb9f;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

body.reason-theme .reason-coin-pill span {
    color: #bfa68f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}

body.reason-theme .reason-coin-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 202, 124, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 14px 26px rgba(0, 0, 0, 0.28);
}

body.reason-theme .reason-method-paddle {
    display: grid;
    align-content: space-between;
}

body.reason-theme .reason-method-paddle form {
    position: relative;
    z-index: 1;
}

body.reason-theme .reason-method-paddle .reason-provider-btn {
    min-height: 58px;
    align-items: center;
    text-align: center;
}

body.reason-theme .reason-home-hero {
    min-height: 720px;
}

body.reason-theme .reason-home-hero h1 {
    max-width: 900px;
}

body.reason-theme .reason-home-stat-strip div,
body.reason-theme .reason-home-news-card,
body.reason-theme .reason-home-media {
    border-radius: 18px;
}

body.reason-theme .reason-home-stat-strip div {
    background:
        radial-gradient(circle at 50% 0, rgba(255, 171, 91, 0.13), transparent 60%),
        linear-gradient(180deg, rgba(28, 18, 16, 0.96), rgba(9, 6, 6, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 820px) {
    body.reason-theme .reason-payment-sheet .reason-payment-grid {
        grid-template-columns: 1fr;
    }

    body.reason-theme .reason-content > .reason-page-banner {
        padding: 44px 0 30px;
    }

    body.reason-theme .reason-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
}

@media (max-width: 520px) {
    body.reason-theme .reason-page-banner h1,
    body.reason-theme .reason-download-hero h1,
    body.reason-theme .reason-home-hero h1 {
        font-size: clamp(36px, 12vw, 52px);
    }

    body.reason-theme .reason-product-img {
        height: 138px;
    }

    body.reason-theme .reason-product-img img {
        max-width: 112px;
        max-height: 112px;
    }
}

/* Store checkout modal */
body.reason-modal-open {
    overflow: hidden;
}

body.reason-theme .reason-checkout-modal[hidden] {
    display: none !important;
}

body.reason-theme .reason-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

body.reason-theme .reason-checkout-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(199, 63, 41, 0.2), transparent 24rem),
        rgba(3, 2, 3, 0.82);
    backdrop-filter: blur(9px);
}

body.reason-theme .reason-checkout-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(760px, calc(100vh - 34px));
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(255, 186, 96, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 0, rgba(255, 164, 75, 0.15), transparent 18rem),
        radial-gradient(circle at 82% 18%, rgba(154, 36, 32, 0.22), transparent 18rem),
        linear-gradient(180deg, rgba(30, 18, 16, 0.98), rgba(7, 5, 5, 0.985));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 34px 90px rgba(0, 0, 0, 0.62),
        0 0 42px rgba(220, 73, 48, 0.16);
    animation: reason-panel-rise 220ms ease both;
}

body.reason-theme .reason-checkout-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 190, 109, 0.25);
    border-radius: 999px;
    color: #f2d1b5;
    background: rgba(11, 7, 7, 0.72);
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

body.reason-theme .reason-checkout-close:hover {
    color: #fff3e6;
    border-color: rgba(255, 196, 118, 0.58);
    background: rgba(101, 27, 22, 0.86);
}

body.reason-theme .reason-checkout-modal-head {
    display: grid;
    gap: 8px;
    max-width: 720px;
    padding-right: 44px;
}

body.reason-theme .reason-checkout-modal-head h2 {
    margin: 0;
    color: #fff1df;
    font-family: "Spectral SC", "MedievalSharp", Georgia, serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.72), 0 0 26px rgba(230, 77, 48, 0.28);
}

body.reason-theme .reason-checkout-modal-head p {
    max-width: 680px;
    margin: 0;
    color: #d0b9a2;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
}

body.reason-theme .reason-checkout-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

body.reason-theme .reason-checkout-summary div {
    min-height: 74px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 185, 101, 0.18);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 180, 91, 0.11), transparent 60%),
        rgba(12, 8, 8, 0.72);
}

body.reason-theme .reason-checkout-summary span {
    display: block;
    color: #bfa58d;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.reason-theme .reason-checkout-summary strong {
    display: block;
    margin-top: 8px;
    color: #fff2df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 18px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

body.reason-theme .reason-checkout-modal-grid {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    gap: 16px;
}

body.reason-theme .reason-payment-methods {
    display: grid;
    gap: 10px;
    align-content: start;
}

body.reason-theme .reason-payment-method {
    position: relative;
    display: grid;
    gap: 5px;
    min-height: 120px;
    padding: 17px;
    border: 1px solid rgba(255, 186, 96, 0.18);
    border-radius: 18px;
    color: #ead0b7;
    background:
        linear-gradient(180deg, rgba(29, 19, 17, 0.96), rgba(9, 6, 6, 0.96));
    text-align: left;
    cursor: pointer;
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

body.reason-theme .reason-payment-method span {
    color: #e88955;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 13px;
    font-weight: 950;
}

body.reason-theme .reason-payment-method strong {
    color: #fff0dd;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.reason-theme .reason-payment-method em {
    color: #c2aa93;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.45;
}

body.reason-theme .reason-payment-method:hover,
body.reason-theme .reason-payment-method.active {
    transform: translateY(-2px);
    border-color: rgba(255, 198, 120, 0.62);
    background:
        radial-gradient(circle at 18% 0, rgba(255, 181, 91, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(74, 29, 22, 0.96), rgba(14, 8, 8, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 16px 30px rgba(0, 0, 0, 0.28);
}

body.reason-theme .reason-payment-stage {
    min-height: 250px;
    padding: 18px;
    border: 1px solid rgba(255, 186, 96, 0.22);
    border-radius: 20px;
    background:
        radial-gradient(circle at 70% 0, rgba(255, 168, 80, 0.12), transparent 16rem),
        linear-gradient(180deg, rgba(18, 12, 11, 0.94), rgba(7, 5, 5, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 16px 32px rgba(0, 0, 0, 0.22);
}

body.reason-theme .reason-payment-stage-panel[hidden] {
    display: none !important;
}

body.reason-theme .reason-payment-stage-copy {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

body.reason-theme .reason-payment-stage-copy strong {
    color: #fff1df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0.035em;
}

body.reason-theme .reason-payment-stage-copy span {
    color: #cbb29b;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

body.reason-theme .reason-crypto-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 10px;
}

body.reason-theme .reason-crypto-options form {
    margin: 0;
}

body.reason-theme .reason-crypto-option {
    display: grid;
    width: 100%;
    min-height: 92px;
    align-content: center;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 190, 109, 0.22);
    border-radius: 16px;
    color: #fff0dd;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 183, 91, 0.14), transparent 64%),
        linear-gradient(180deg, rgba(33, 21, 18, 0.98), rgba(9, 6, 6, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 20px rgba(0, 0, 0, 0.18);
    text-align: left;
    cursor: pointer;
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

body.reason-theme .reason-crypto-option span {
    color: #ffd78f;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

body.reason-theme .reason-crypto-option strong {
    color: #bfa68f;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

body.reason-theme .reason-crypto-option:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 205, 129, 0.64);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 30px rgba(0, 0, 0, 0.28);
}

body.reason-theme .reason-checkout-empty {
    padding: 18px;
    border: 1px dashed rgba(255, 190, 109, 0.32);
    border-radius: 16px;
    color: #d9bea4;
    background: rgba(14, 9, 8, 0.72);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 800;
}

@media (max-width: 820px) {
    body.reason-theme .reason-checkout-dialog {
        padding: 22px;
    }

    body.reason-theme .reason-checkout-summary,
    body.reason-theme .reason-checkout-modal-grid {
        grid-template-columns: 1fr;
    }

    body.reason-theme .reason-payment-method {
        min-height: 96px;
    }
}

@media (max-width: 520px) {
    body.reason-theme .reason-checkout-modal {
        padding: 10px;
    }

    body.reason-theme .reason-checkout-dialog {
        max-height: calc(100vh - 20px);
        padding: 18px;
        border-radius: 18px;
    }

    body.reason-theme .reason-checkout-modal-head {
        padding-right: 36px;
    }
}

/* Store invoice/status */
body.reason-theme .reason-invoice-page .reason-wrap {
    padding-top: 34px;
}

body.reason-theme .reason-invoice-card {
    overflow: hidden;
    border: 1px solid rgba(255, 186, 96, 0.24);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 0, rgba(255, 164, 75, 0.15), transparent 20rem),
        radial-gradient(circle at 90% 10%, rgba(154, 36, 32, 0.2), transparent 18rem),
        linear-gradient(180deg, rgba(28, 18, 16, 0.98), rgba(7, 5, 5, 0.985));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 26px 62px rgba(0, 0, 0, 0.38);
}

body.reason-theme .reason-invoice-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border-bottom: 1px solid rgba(255, 186, 96, 0.14);
}

body.reason-theme .reason-invoice-head h2 {
    margin: 8px 0 0;
    color: #fff2df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 950;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

body.reason-theme .reason-invoice-head p {
    max-width: 680px;
    margin: 10px 0 0;
    color: #cdb49c;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 800;
    line-height: 1.6;
}

body.reason-theme .reason-invoice-status {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid rgba(255, 186, 96, 0.24);
    border-radius: 999px;
    color: #ffe3aa;
    background: rgba(14, 9, 8, 0.82);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.reason-theme .reason-invoice-status.status-paid {
    color: #c9ffc9;
    border-color: rgba(90, 220, 110, 0.42);
    background: rgba(20, 70, 31, 0.34);
}

body.reason-theme .reason-invoice-status.status-cancelled,
body.reason-theme .reason-invoice-status.status-failed {
    color: #ffc7c7;
    border-color: rgba(232, 72, 72, 0.42);
    background: rgba(94, 21, 21, 0.34);
}

body.reason-theme .reason-status-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 24px 28px 0;
    padding: 18px;
    border: 1px solid rgba(255, 186, 96, 0.2);
    border-radius: 18px;
    background:
        radial-gradient(circle at 14% 0, rgba(255, 180, 91, 0.12), transparent 18rem),
        rgba(12, 8, 8, 0.72);
}

body.reason-theme .reason-status-callout strong {
    display: block;
    color: #fff2df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

body.reason-theme .reason-status-callout span {
    display: block;
    margin-top: 5px;
    color: #ccb49c;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 800;
    line-height: 1.55;
}

body.reason-theme .reason-status-callout em {
    flex: 0 0 auto;
    padding: 10px 12px;
    border: 1px solid rgba(255, 186, 96, 0.22);
    border-radius: 999px;
    color: #ffe0a8;
    background: rgba(0, 0, 0, 0.2);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.reason-theme .reason-status-callout.status-paid {
    border-color: rgba(90, 220, 110, 0.28);
    background:
        radial-gradient(circle at 14% 0, rgba(90, 220, 110, 0.12), transparent 18rem),
        rgba(8, 20, 10, 0.68);
}

body.reason-theme .reason-status-callout.status-cancelled,
body.reason-theme .reason-status-callout.status-failed {
    border-color: rgba(232, 72, 72, 0.28);
    background:
        radial-gradient(circle at 14% 0, rgba(232, 72, 72, 0.13), transparent 18rem),
        rgba(34, 8, 8, 0.68);
}

body.reason-theme .reason-invoice-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 24px 28px;
}

body.reason-theme .reason-invoice-meta div {
    min-height: 76px;
    padding: 14px;
    border: 1px solid rgba(255, 186, 96, 0.16);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 180, 91, 0.1), transparent 60%),
        rgba(12, 8, 8, 0.72);
}

body.reason-theme .reason-invoice-meta span {
    display: block;
    color: #bfa58d;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.reason-theme .reason-invoice-meta strong {
    display: block;
    margin-top: 8px;
    color: #fff2df;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

body.reason-theme .reason-crypto-invoice {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
    gap: 18px;
    margin: 0 28px 24px;
    padding: 20px;
    border: 1px solid rgba(255, 186, 96, 0.22);
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 0, rgba(255, 164, 75, 0.13), transparent 18rem),
        rgba(12, 8, 8, 0.72);
}

body.reason-theme .reason-crypto-invoice h3 {
    margin: 8px 0;
    color: #fff2df;
    font-family: "Spectral SC", Georgia, serif;
    font-size: 28px;
    text-transform: uppercase;
}

body.reason-theme .reason-crypto-invoice p {
    margin: 0;
    color: #cdb49c;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 800;
    line-height: 1.55;
}

body.reason-theme .reason-crypto-paybox {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

body.reason-theme .reason-crypto-paybox img {
    width: 150px;
    max-width: 100%;
    border: 8px solid #f4eadf;
    border-radius: 16px;
    background: #fff;
}

body.reason-theme .reason-crypto-paybox dl {
    display: grid;
    gap: 6px;
    margin: 0;
}

body.reason-theme .reason-crypto-paybox dt {
    color: #d99663;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.reason-theme .reason-crypto-paybox dd {
    margin: 0 0 8px;
    color: #fff1df;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 900;
    overflow-wrap: anywhere;
}

body.reason-theme .reason-invoice-table {
    margin: 0 28px 24px;
}

body.reason-theme .reason-invoice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    padding: 0 28px 28px;
}

@media (max-width: 820px) {
    body.reason-theme .reason-invoice-head,
    body.reason-theme .reason-crypto-invoice {
        display: grid;
    }

    body.reason-theme .reason-invoice-meta {
        grid-template-columns: 1fr;
    }

    body.reason-theme .reason-crypto-paybox {
        grid-template-columns: 1fr;
    }

    body.reason-theme .reason-status-callout {
        display: grid;
    }

    body.reason-theme .reason-status-callout em {
        width: max-content;
        max-width: 100%;
    }
}
