:root {

    --color-parchment: #140f0e;
    --color-parchment-light: #1f1714;
    --color-parchment-dark: #0f0b0a;
    --color-sand: #191210;
    --color-sand-dark: #120d0c;

    --color-ink: #f4e7d1;
    --color-ink-soft: #d7c5ad;
    --color-ink-muted: #9c8975;

    --color-gold: rgb(201 138 52 / 0.68);
    --color-gold-mid: #d99f45;
    --color-gold-light: #f2c877;
    --color-gold-dark: #dca64c;
    --color-corona: #f6c948;

    --color-wine: #b23a2c;
    --color-wine-light: #d1573f;

    --color-online: #35c06b;
    --color-live: #e0392c;

    --color-border: rgb(201 138 52 / 0.16);
    --color-border-strong: rgb(201 138 52 / 0.23);

    --font-heading: "Cinzel", Georgia, serif;
    --font-body: inherit;
    --font-mono: "JetBrains Mono", monospace;

    --shadow-soft: 0 2px 0.75rem -0.25rem rgba(0, 0, 0, .6);
    --shadow-card: 0 0.875rem 2.125rem -1.125rem rgba(0, 0, 0, .72);
    --shadow-warm: 0 1.5rem 3.125rem -1.375rem rgba(0, 0, 0, .8);

    --hairline-gold: linear-gradient(90deg, transparent, rgba(201, 138, 52, .5) 18%, rgba(242, 200, 119, .72) 50%, rgba(201, 138, 52, .5) 82%, transparent);
    --hairline-ember: linear-gradient(90deg, transparent, rgba(178, 58, 44, .45) 18%, rgba(209, 87, 63, .7) 50%, rgba(178, 58, 44, .45) 82%, transparent);
    --glow-gold: 0 0 1.5rem -0.375rem rgba(242, 200, 119, .5);
    --glow-ember: 0 0 1.625rem -0.375rem rgba(178, 58, 44, .6);

    --shield: polygon(50% 0, 100% 0, 100% 60%, 50% 100%, 0 60%, 0 0);

    --ease-out: cubic-bezier(.2, .7, .3, 1);
    --header-h: 3.75rem;
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

    --container-width: 77.5rem;
    --container-width-narrow: 68.75rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: clamp(15.4px, 15.125px + 0.209vw, 19.8px);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (min-width: 2560px) {
    html {
        font-size: clamp(19.8px, 12.5px + 0.32vw, 24.75px);
    }
}

body {
    margin: 0;
}

[x-cloak] {
    display: none !important;
}

.page {
    position: relative;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--color-ink-soft);
    line-height: 1.5;
    background-color: var(--color-parchment);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.5'/%3E%3C/svg%3E"),
    radial-gradient(120% 80% at 50% -6%, rgba(88, 34, 34, .5) 0%, rgba(20, 12, 12, 0) 55%);
    background-repeat: repeat, no-repeat;
    background-size: 10.625rem, cover;
    background-attachment: fixed, scroll;
    background-blend-mode: overlay, normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-ink);
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
    text-wrap: balance;
}

p {
    margin: 0;
    text-wrap: pretty;
}

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--color-wine-light);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

svg {
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--color-wine);
    outline-offset: 0.1875rem;
}

::selection {
    background: rgba(178, 58, 44, .45);
    color: #fbefda;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold-dark) var(--color-sand);
}

::-webkit-scrollbar {
    width: 0.40625rem;
}

::-webkit-scrollbar-track {
    background: var(--color-sand);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold-mid), var(--color-gold-dark));
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold-mid));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: .14em;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex: none;
    object-fit: contain;
}

.btn--block {
    width: 100%;
    padding: 0.9375rem;
    font-size: 0.8125rem;
}

.section {
    position: relative;
    padding: clamp(1.9375rem, 4.4vw, 3.5625rem) clamp(1.125rem, 5vw, 4rem);
    scroll-margin-top: 5.375rem;
}

.section--muted {
    background: linear-gradient(180deg, var(--color-sand), var(--color-sand-dark));
    border-top: 3px solid var(--color-border);
}

.border-top {
    border-top: 3px solid var(--color-border);
}

#news {
    background-image:
        linear-gradient(180deg, rgba(10, 7, 6, .85) 0%, rgba(10, 7, 6, .58) 42%, rgba(10, 7, 6, .92) 100%),
        url("../images/bg/news-bg.png");
    background-size: cover, cover;
    background-position: center, top center;
    background-repeat: no-repeat, no-repeat;
}

#shop {
    background-image:
        linear-gradient(180deg, rgba(10, 7, 6, .85) 0%, rgba(10, 7, 6, .58) 42%, rgba(10, 7, 6, .92) 100%),
        url("../images/bg/store-bg.png");
    background-size: cover, cover;
    background-position: center, top center;
    background-repeat: no-repeat, no-repeat;
}

#streams {
    background-image:
        linear-gradient(180deg, rgba(10, 7, 6, .85) 0%, rgba(10, 7, 6, .58) 42%, rgba(10, 7, 6, .92) 100%),
        url("../images/bg/stream-bg.png");
    background-size: cover, cover;
    background-position: center, top center;
    background-repeat: no-repeat, no-repeat;
}

.section__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section__header {
    margin-bottom: 2.5rem;
    max-width: 42.5rem;
}

.section__header--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: none;
}

.section__heading {
    max-width: 40rem;
}

.section__title {
    font-size: clamp(1.875rem, 4.4vw, 3.125rem);
}

.section__text {
    margin-top: 0.9375rem;
    max-width: 35rem;
    font-size: 1.03125rem;
    line-height: 1.2;
    color: var(--color-ink-muted);
}

.section__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--color-border-strong);
}

.header {
    position: sticky;
    top: 0;
    z-index: 120;
    padding: 0.5rem clamp(0.5625rem, 2vw, 2rem);
    background: #0e0a09;
    backdrop-filter: blur(0.5625rem);
    -webkit-backdrop-filter: blur(0.5625rem);
    border-bottom: 1px solid var(--color-border);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}

.header--scrolled {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    background: rgba(12, 8, 8, .95);
    border-bottom-color: var(--color-border-strong);
    box-shadow: 0 0.625rem 1.875rem -1rem rgba(0, 0, 0, .7);
}

.header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__mobile-cta {
    border-radius: 2px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang {
    position: relative;
    flex: none;
}

.lang__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    height: 2.75rem;
    padding: 0 0.8125rem;
    border: none;
    border-left: 2px solid var(--color-border-strong);
    border-radius: 0.5rem;
    background: linear-gradient(180deg, rgba(38, 27, 21, .5), rgba(18, 13, 11, .55));
    color: var(--color-ink-soft);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: .08em;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.lang__btn:hover,
.lang__btn--open {
    border-left-color: var(--color-gold);
    color: var(--color-gold-light);
    background: linear-gradient(180deg, rgba(201, 138, 52, .16), rgba(178, 58, 44, .07));
}

.lang__globe {
    width: 1rem;
    height: 1rem;
    flex: none;
    color: var(--color-gold-dark);
    transition: color .2s ease;
}

.lang__btn:hover .lang__globe,
.lang__btn--open .lang__globe {
    color: var(--color-gold-light);
}

.lang__code {
    line-height: 1;
}

.lang__chevron {
    width: 0.6875rem;
    height: 0.6875rem;
    flex: none;
    color: var(--color-gold-dark);
    transition: transform .2s ease, color .2s ease;
}

.lang__btn--open .lang__chevron {
    transform: rotate(180deg);
    color: var(--color-gold-light);
}

.lang__menu {
    position: absolute;
    top: calc(100% + 0.5625rem);
    right: 0;
    min-width: 10.75rem;
    margin: 0;
    padding: 0.375rem;
    list-style: none;
    border: 1px solid var(--color-border-strong);
    border-radius: 0.6875rem;
    background: linear-gradient(180deg, rgba(28, 19, 16, .98), rgba(15, 10, 9, .98));
    box-shadow: 0 1.25rem 2.75rem -1.25rem rgba(0, 0, 0, .88), inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    z-index: 130;
}

@media (max-width: 1200px) {
    .lang__menu {
        left: 0;
        right: auto;
    }

    .lang__menu::before {
        left: 1.375rem;
        right: auto;
    }
}

.lang__menu::before {
    content: "";
    position: absolute;
    top: -0.3125rem;
    right: 1.375rem;
    width: 0.5625rem;
    height: 0.5625rem;
    background: rgba(28, 19, 16, .98);
    border-top: 1px solid var(--color-border-strong);
    border-left: 1px solid var(--color-border-strong);
    transform: rotate(45deg);
}

.lang__opt {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    width: 100%;
    padding: 0.5625rem 0.625rem;
    border: 0;
    border-radius: 0.4375rem;
    background: none;
    color: var(--color-ink-soft);
    font-family: var(--font-body);
    font-size: 0.84375rem;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.lang__opt:hover {
    background: rgba(201, 138, 52, .14);
    color: var(--color-gold-light);
}

.lang__opt--active {
    color: var(--color-gold-light);
}

.lang__opt-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    padding: 0.25rem 0;
    flex: none;
    border: 1px solid var(--color-border-strong);
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 0.65625rem;
    letter-spacing: .06em;
    color: var(--color-ink-muted);
    transition: color .18s ease, border-color .18s ease;
}

.lang__opt:hover .lang__opt-code,
.lang__opt--active .lang__opt-code {
    color: var(--color-gold-light);
    border-color: var(--color-gold);
}

.lang__opt-name {
    font-weight: 500;
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5625rem;
    padding: 0.4375rem 0.9375rem;
    border-radius: 0.375rem;
    border: 1px solid rgb(201 138 52 / 0.04);
    background: linear-gradient(180deg, rgba(38, 27, 21, .15), rgba(18, 13, 11, .17));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav-item__icon {
    position: relative;
    flex: none;
    width: 1.5625rem;
    height: 1.5625rem;
    display: grid;
    place-items: center;
    transform: rotate(0deg) translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.nav-item__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .55));
    transition: filter .28s ease;
}

.nav-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    line-height: 1;
}

.nav-item__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: .015em;
    color: var(--color-ink);
    white-space: nowrap;
    transition: color .2s ease;
}

.nav-item__desc {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.55rem;
    text-transform: uppercase;
    color: var(--color-ink-muted);
    white-space: nowrap;
    transition: color .2s ease;
}

.nav-item:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(201, 138, 52, .07), rgba(178, 58, 44, .02));
    box-shadow: 0 0.5rem 1.25rem -0.75rem rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.nav-item:hover .nav-item__icon {
    transform: rotate(-8deg) translateZ(0);
}

.nav-item:hover .nav-item__img {
    filter: drop-shadow(0 2px 0.3125rem rgba(0, 0, 0, .6)) brightness(1.08);
}

.nav-item:hover .nav-item__title {
    color: #fff;
}

.nav-item:hover .nav-item__desc {
    color: var(--color-gold-dark);
}

.header__mobile .nav-item {
    gap: 0.8125rem;
    padding: 0.875rem 0.375rem;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.header__mobile .nav-item:hover {
    transform: none;
    background: none;
    box-shadow: none;
}

.header__mobile .nav-item__icon {
    width: 2.25rem;
    height: 2.25rem;
}

.header__mobile .nav-item__title {
    font-size: 1rem;
    letter-spacing: .01em;
}

.header__mobile .nav-item__desc {
    font-size: 0.625rem;
    letter-spacing: .16em;
}

.header__burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    width: 2.75rem;
    height: 2.75rem;
    background: transparent;
    border: 1px solid var(--color-border-strong);
}

.header__burger-line {
    width: 1.25rem;
    height: 2px;
    background: var(--color-gold-dark);
    transition: transform .25s ease, opacity .25s ease;
}

.header__burger--active .header__burger-line:nth-child(1) {
    transform: translateY(0.4375rem) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: translateY(-0.4375rem) rotate(-45deg);
}

.header__mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 0.625rem 1.125rem 1.25rem;
    background: rgba(14, 10, 9, .98);
    backdrop-filter: blur(0.625rem);
    border-bottom: 1px solid var(--color-border-strong);
    box-shadow: var(--shadow-card);
}

.header__mobile-cta {
    margin-top: 0.875rem;
    text-align: center;
}

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    padding: clamp(3rem, 6vh, 6rem) clamp(1.125rem, 5vw, 4rem) clamp(3.5rem, 7vw, 6.25rem);
    background-color: #0d0908;
    background-image: url("../images/bg/r-t.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero__video {
        display: none;
    }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15)),
    linear-gradient(90deg, rgba(9, 6, 6, .94) 0%, rgba(9, 6, 6, .78) 32%, rgba(9, 6, 6, .3) 58%, rgba(9, 6, 6, .08) 82%),
    linear-gradient(180deg, rgba(9, 6, 6, 0) 0%, rgba(9, 6, 6, 0) 62%, var(--color-parchment) 100%);
}

.hero__glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(48% 46% at 70% 34%, rgba(240, 176, 92, .18) 0%, rgba(240, 176, 92, 0) 62%);
    mix-blend-mode: screen;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero__title {
    font-weight: 900;
    font-size: clamp(1.568rem, 4.032vw, 3.304rem);
    letter-spacing: .04em;
    line-height: .94;
    color: #f6ecd9;
    text-shadow: 0 2px 1.625rem rgba(0, 0, 0, .55);
    margin-bottom: 1.25rem;
}

.hero__lead {
    max-width: 31.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.1875rem, 2.2vw, 1.6875rem);
    line-height: 1.08;
    color: var(--color-ink);
    margin-bottom: .6rem;
    border-left: 2px solid var(--color-border-strong);
    padding:  0 1rem;
}

.hero__rate {
    font-weight: 800;
    color: var(--color-gold-light);
}

.hero__description {
    max-width: 29.375rem;
    font-size: clamp(0.90625rem, 1.5vw, 1.03125rem);
    line-height: 1.1;
    color: var(--color-ink-muted);
    margin-bottom: 2.375rem;
    border: 1px solid rgb(201 138 52 / 0.04);
    background: linear-gradient(306deg, rgba(38, 27, 21, .15), rgb(24 19 17));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
    padding: .5rem 1rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero__social {
    position: absolute;
    left: .2rem;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero__social::before {
    content: "";
    width: 1px;
    height: 2.5rem;
    margin-bottom: 0.25rem;
    background: linear-gradient(180deg, transparent, var(--color-gold-dark));
}

.hero__social::after {
    content: "";
    width: 1px;
    height: 2.5rem;
    margin-top: 0.25rem;
    background: linear-gradient(0deg, transparent, var(--color-gold-dark));
    order: 1;
}

.hero__social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--color-border-strong);
    background: rgba(15, 11, 10, .55);
    color: var(--color-ink-soft);
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(0.25rem);
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.hero__social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero__social-link:hover {
    color: var(--color-gold-light);
    background: rgba(201, 138, 52, .16);
    transform: translateX(0.25rem);
}

.hero__social-tip {
    position: absolute;
    left: calc(100% + 0.875rem);
    top: 50%;
    transform: translate(-0.5rem, -50%);
    padding: 0.4375rem 0.75rem;
    border: 1px solid var(--color-border-strong);
    border-radius: 0.375rem;
    background: var(--color-parchment-dark);
    color: var(--color-ink-soft);
    font-size: 0.78125rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.hero__social-link:hover .hero__social-tip,
.hero__social-link:focus-visible .hero__social-tip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

@media (max-width: 860px) {
    .hero__social {
        display: none;
    }
}

.timer-banner {
    position: absolute;
    top: clamp(1rem, 3vh, 1.75rem);
    right: clamp(.55rem, 2.3vw, 1.2rem);
    z-index: 2;
    padding: 0.875rem 1.25rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(31, 23, 20, .88), rgba(15, 11, 10, .92));
    border: 1px solid var(--color-border-strong);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(0.375rem);
    -webkit-backdrop-filter: blur(0.375rem);
}

.timer-banner__title {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    white-space: nowrap;
}

.timer-banner__display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.timer-banner__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    min-width: 2.25rem;
}

.timer-banner__digits {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.375rem;
    line-height: 1;
    color: var(--color-ink);
    font-variant-numeric: tabular-nums;
}

.timer-banner__caption {
    font-size: 0.5625rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-ink-muted);
}

.timer-banner__sep {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-gold-dark);
    opacity: .6;
    transform: translateY(-0.5rem);
}

@media (max-width: 1023px) {
    .timer-banner {
        display: none;
    }
}

.news-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
}

@media (max-width: 820px) {
    .news-feed {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 821px) {
    .news-card.news-card--wide {
        grid-column: 1 / -1;
        grid-template-columns: 10.75rem 1fr;
        padding: 1rem;
    }

    .news-card--wide .news-card__ring {
        width: 8.875rem;
        height: 8.875rem;
    }

    .news-card--wide .news-card__body {
        padding-left: 1.625rem;
        gap: 0.6875rem;
    }

    .news-card--wide .news-card__title {
        font-size: clamp(1.1875rem, 1.7vw, 1.4375rem);
    }

    .news-card--wide .news-card__text {
        max-width: 74ch;
        font-size: 0.90625rem;
    }
}

.news-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 8.625rem 1fr;
    align-items: stretch;
    padding: 0.75rem;
    text-decoration: none;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #241a15, var(--color-parchment-light) 55%, #1a1310) padding-box,
    linear-gradient(150deg, rgba(242, 200, 119, .42), rgba(201, 138, 52, .12) 42%, rgba(110, 55, 38, .1) 100%) border-box;
    box-shadow: inset 0 1px 0 rgba(242, 200, 119, .05),
    var(--shadow-card);
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}

.news-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: inset 0 1px 0 rgba(242, 200, 119, .09),
    0 1.375rem 2.5rem -1.125rem rgba(0, 0, 0, .8),
    0 0 1.375rem -0.625rem rgba(242, 200, 119, .22);
}

.news-card__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform .8s var(--ease-out);
}

.news-card__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(18, 12, 10, .92), rgba(24, 17, 13, .72) 52%, rgba(14, 10, 8, .9));
}

.news-card:hover .news-card__bg {
    transform: scale(1.04);
}

.news-card__medal {
    position: relative;
    display: grid;
    place-items: center;
}

.news-card__ring {
    position: relative;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: #0c0a08;
    box-shadow: 0 0 0 2px rgba(12, 10, 8, .95),
    0 0 0 4px var(--color-gold-dark),
    0 0 0 4.5px rgba(242, 200, 119, .6),
    0 0 1.25rem -0.25rem rgba(242, 200, 119, .45),
    inset 0 0 1.125rem rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 244, 214, .18);
}

.news-card__art {
    position: absolute;
    inset: 0;
    background-color: #0c0a08;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform .8s var(--ease-out);
}

.news-card:hover .news-card__art {
    transform: scale(1.08);
}

.news-card__scrim {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 -1.25rem 1.875rem -0.625rem rgba(7, 5, 11, .9);
}

.news-card__seal {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding: 2px 0.5625rem;
    border-radius: 0.5625rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.53125rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #160d04;
    background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold-dark));
    box-shadow: 0 2px 0.5rem rgba(0, 0, 0, .6);
}

.news-card--raid .news-card__ring {
    box-shadow: 0 0 0 2px rgba(12, 10, 8, .95),
    0 0 0 4px var(--color-wine),
    0 0 0 4.5px rgba(209, 87, 63, .6),
    0 0 1.25rem -0.25rem rgba(209, 87, 63, .45),
    inset 0 0 1.125rem rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 244, 214, .18);
}

.news-card--raid .news-card__seal {
    color: #fbe0d6;
    background: linear-gradient(180deg, var(--color-wine-light), var(--color-wine));
}

.news-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5625rem;
    padding: 0.375rem 0.25rem 0.375rem 1.25rem;
}

.news-card__body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color-gold-dark) 20%, var(--color-gold-dark) 80%, transparent);
}

.news-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    line-height: 1.18;
    letter-spacing: .01em;
    color: var(--color-ink);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .9);
    transition: color .35s var(--ease-out);
}

.news-card:hover .news-card__title {
    color: var(--color-gold-light);
}

.news-card__text {
    max-width: 46ch;
    font-size: 0.84375rem;
    line-height: 1.5;
    color: var(--color-ink-soft);
}

.news-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.875rem;
    margin-top: 2px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5625rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    transition: gap .3s var(--ease-out), color .3s var(--ease-out);
}

.news-card__link svg {
    width: 0.9375rem;
    height: 0.9375rem;
}

.news-card:hover .news-card__link {
    gap: 0.8125rem;
    color: var(--color-corona, var(--color-gold-light));
}

.news-card__date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: .04em;
    color: var(--color-ink-muted);
}

.shop-slider {
    position: relative;
    padding: 0 3.25rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
    align-items: stretch;
    gap: 1.5rem;
}

.shop-grid--slider {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 2 * 1.5rem) / 3);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.25rem 0;
    -webkit-overflow-scrolling: touch;
}

.shop-grid--slider::-webkit-scrollbar {
    display: none;
}

.shop-grid--slider .shop-card {
    scroll-snap-align: start;
}

@media (max-width: 1023px) {
    .shop-grid--slider {
        grid-auto-columns: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 640px) {
    .shop-slider {
        padding: 0 2.25rem;
    }

    .shop-grid--slider {
        grid-auto-columns: 100%;
    }
}

.shop-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transform: translateY(-50%);
    filter: drop-shadow(0 2px 6px rgba(12, 10, 8, .6));
    transition: transform .2s ease, filter .2s ease;
}

.shop-slider__nav img {
    width: 100%;
    height: auto;
    display: block;
}

.shop-slider__nav:hover {
    transform: translateY(-50%) scale(1.08);
    filter: drop-shadow(0 2px 10px rgba(242, 200, 119, .55));
}

.shop-slider__nav:disabled {
    opacity: .5;
    pointer-events: none;
}

.shop-slider__nav--prev {
    left: 0;
}

.shop-slider__nav--next {
    right: 0;
}

@keyframes slider-nav-pulse {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(0.35rem); }
}

.shop-slider__nav--next.is-pulsing {
    animation: slider-nav-pulse 1.6s ease-in-out infinite;
}

.shop-slider__nav--next.is-pulsing:hover {
    animation-play-state: paused;
}

@media (max-width: 640px) {
    .shop-slider__nav {
        width: 2rem;
    }
}

.shop-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.875rem 1.625rem;
    background: linear-gradient(180deg, var(--color-parchment-light), var(--color-parchment));
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.shop-card:hover {
    z-index: 10;
    transform: translateY(-0.3125rem);
    box-shadow: 0 1.5rem 2.625rem -1.25rem rgba(0, 0, 0, .72);
    border-color: var(--color-border-strong);
}

.shop-card__header {
    position: relative;
    z-index: 0;
    margin: -1.875rem -1.625rem 0;
    padding: 5rem 1.625rem 1.25rem;
    min-height: 11.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.shop-card__header-bg {
    position: absolute;
    top: .2rem;
    left: 50%;
    z-index: 0;
    height: 100%;
    transform: translateX(-50%);
}

.shop-card__header-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 11, 10, .12) 0%, rgba(15, 11, 10, .55) 55%, rgba(15, 11, 10, .92) 100%);
}

.shop-card__title {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.shop-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.375rem;
}

.shop-card__price-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color-ink);
}

.shop-card__price-currency {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    color: var(--color-gold-dark);
}

.shop-card__divider {
    height: 1px;
    margin-bottom: 1.25rem;
    background: var(--color-border);
}

.shop-card__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.625rem;
    font-size: 0.90625rem;
    color: var(--color-ink-soft);
}

.shop-card__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shop-card__item-name {
    flex: 1 1 auto;
    min-width: 0;
}

.shop-card__item-qty {
    flex: none;
    padding: 0.1875rem 0.5rem;
    border-radius: 0.25rem;
    font-family: var(--font-mono);
    font-size: 0.71875rem;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    color: #d99f4587;
}

.shop-card__icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    overflow: hidden;
    border-radius: 0.375rem;
    background: radial-gradient(circle, var(--color-parchment-dark) 0 62%, rgba(20, 15, 10, .92) 100%);
    box-shadow: 0 0 0 1px var(--color-border-strong), inset 0 0 0.375rem rgba(0, 0, 0, .5);
    color: var(--color-gold-light);
    cursor: default;
}

.shop-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card__icon:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 0.1875rem;
}

.shop-card__tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.75rem);
    z-index: 40;
    width: 15.625rem;
    max-width: 70vw;
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-parchment-light), var(--color-parchment-dark));
    border: 1px solid var(--color-gold);
    border-radius: 0.375rem;
    box-shadow: var(--shadow-warm);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 0.375rem);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.shop-card__tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0.75rem;
    height: 0.75rem;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--color-parchment-dark);
    border-right: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
}

.shop-card__item:hover .shop-card__tooltip,
.shop-card__item:focus-within .shop-card__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.shop-card__tooltip-img {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.375rem;
    object-fit: cover;
    box-shadow: 0 0 0 1px var(--color-border-strong);
}

.shop-card__tooltip-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-gold-light);
}

.shop-card__tooltip-text {
    font-size: 0.78125rem;
    line-height: 1.45;
    color: var(--color-ink-soft);
}

@media (max-width: 560px) {
    .shop-card__tooltip {
        width: 13.75rem;
    }
}

.stream-slider {
    position: relative;
    padding: 0 3.25rem;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
    justify-items: center;
}

.stream-grid--slider {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: calc((100% - 3 * 1.5rem) / 4);
    justify-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.stream-grid--slider::-webkit-scrollbar {
    display: none;
}

.stream-grid--slider .stream-card {
    scroll-snap-align: start;
    max-width: none;
}

@media (max-width: 1023px) {
    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stream-grid--slider {
        grid-template-columns: none;
        grid-auto-columns: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 640px) {
    .stream-grid {
        grid-template-columns: 1fr;
        max-width: 16.25rem;
        margin: 0 auto;
    }

    .stream-grid--slider {
        grid-template-columns: none;
        grid-auto-columns: 100%;
        max-width: none;
        margin: 0;
    }
}

.stream-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transform: translateY(-50%);
    filter: drop-shadow(0 2px 6px rgba(12, 10, 8, .6));
    transition: transform .2s ease, filter .2s ease;
}

.stream-slider__nav img {
    width: 100%;
    height: auto;
    display: block;
}

.stream-slider__nav:hover {
    transform: translateY(-50%) scale(1.08);
    filter: drop-shadow(0 2px 10px rgba(242, 200, 119, .55));
}

.stream-slider__nav:disabled {
    opacity: .5;
    pointer-events: none;
}

.stream-slider__nav--prev {
    left: 0;
}

.stream-slider__nav--next {
    right: 0;
}

.stream-slider__nav--next.is-pulsing {
    animation: slider-nav-pulse 1.6s ease-in-out infinite;
}

.stream-slider__nav--next.is-pulsing:hover {
    animation-play-state: paused;
}

@media (max-width: 640px) {
    .stream-slider {
        padding: 0 2.25rem;
    }

    .stream-slider__nav {
        width: 2rem;
    }
}

.stream-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 16.25rem;
    text-decoration: none;
    color: inherit;
}

.stream-card:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 0.25rem;
}

.stream-card__ring {
    position: relative;
    width: 10.75rem;
    height: 10.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 2px rgba(12, 10, 8, .4),
        0 0 0 4.5px rgba(242, 200, 119, .25),
        0 0 1.5rem -0.25rem rgba(242, 200, 119, .1);
    transition: box-shadow .3s ease;
}

.stream-card:hover .stream-card__ring {
    box-shadow:
            0 0 0 2px rgba(12, 10, 8, .5),
            0 0 0 4.5px rgba(242, 200, 119, .35),
            0 0 1.5rem -0.25rem rgba(242, 200, 119, .2);
}

.stream-card__ring::before {
    content: "";
    position: absolute;
    inset: -0.875rem;
    border-radius: 50%;
    border: 1px dashed rgba(201, 138, 52, .32);
}

.stream-card:hover .stream-card__ring::before {
    animation: stream-ring-spin 9s linear infinite;
}

.stream-card__orb {
    position: relative;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 35% 30%, #2a2016, #140f0a 75%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-card__play {
    position: relative;
    z-index: 1;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 28%, var(--color-gold-light), var(--color-gold-mid) 55%, var(--color-gold-dark) 100%);
    color: #241705;
    transition: transform .25s var(--ease-out), box-shadow .25s ease;
}

.stream-card__play svg {
    width: 1.0625rem;
    height: 1.0625rem;
    margin-left: 0.1875rem;
    filter: drop-shadow(0 1px 0 rgba(255, 244, 214, .4));
}

.stream-card:hover .stream-card__play {
    transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
    .stream-card__play {
        transition: none;
    }
}

.stream-card__ember {
    position: absolute;
    top: 0.625rem;
    right: 1.375rem;
    z-index: 1;
    width: 0.5625rem;
    height: 0.5625rem;
    border-radius: 50%;
    background: var(--color-live);
    box-shadow: 0 0 0.5rem 0.125rem rgba(224, 57, 44, .65);
    animation: stream-ember-pulse 1.7s ease-in-out infinite;
}

.stream-card__count {
    position: absolute;
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card);
    bottom: -0.5625rem;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    background: var(--color-parchment-dark);
    padding: 0.15rem 0.45rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-gold-light);
    white-space: nowrap;
}

.stream-card__count-icon {
    width: 0.75rem;
    height: 0.75rem;
    flex: none;
}

.stream-card__chain {
    width: 1px;
    height: 1.25rem;
    margin-top: 0.875rem;
    background: repeating-linear-gradient(0deg, rgba(201, 138, 52, .45) 0 0.1875rem, transparent 0.1875rem 0.375rem);
}

.stream-card__tablet {
    display: flex;
    flex-direction: column;
    gap: 0!important;
    margin-top: 0.5rem;
    width: 100%;
    background: linear-gradient(180deg, var(--color-parchment-light), var(--color-parchment));
    border: 1px solid var(--color-border);
    padding: 0.875rem 1.375rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.stream-card:hover .stream-card__tablet {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card);
}

.stream-card__name {
    margin: 0 0 0.25rem;
    font-size: 1.0625rem;
}

.stream-card__meta {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.71875rem;
    color: var(--color-ink-muted);
}

@keyframes stream-ring-spin {
    to { transform: rotate(360deg); }
}

@keyframes stream-ember-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .35; }
}

@media (prefers-reduced-motion: reduce) {
    .stream-card:hover .stream-card__ring::before,
    .stream-card__ember,
    .stream-card__play {
        animation: none;
    }
}

.stream-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.stream-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, .8);
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(0.25rem);
}

.stream-modal__panel {
    position: relative;
    width: 100%;
    max-width: clamp(20rem, 92vw, 46rem);
    background: linear-gradient(180deg, #2a1d16, #150f0d);
    border-radius: 0.75rem;
    box-shadow: 0 2rem 4rem -1rem rgba(0, 0, 0, .85), inset 0 0 2.5rem rgba(201, 138, 52, .08);
    padding: 1.25rem;
}

.stream-modal-enter {
    transition: opacity .35s cubic-bezier(.34, 1.56, .64, 1), transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.stream-modal-enter-start {
    opacity: 0;
    transform: scale(.82) translateY(1rem);
}

.stream-modal-enter-end {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.stream-modal-leave {
    transition: opacity .2s ease, transform .2s ease;
}

.stream-modal-leave-start {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.stream-modal-leave-end {
    opacity: 0;
    transform: scale(.92) translateY(0.5rem);
}

.stream-modal__close {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    z-index: 10;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(103 21 21);
    border: 1px solid var(--color-border-strong);
    color: var(--color-ink-soft);
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.stream-modal__close svg {
    width: 1rem;
    height: 1rem;
}

.stream-modal__close:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold);
    transform: rotate(90deg);
}

.stream-modal__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.125rem;
}

.stream-modal__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #0c0908;
    border: 1px solid var(--color-border-strong);
    box-shadow: 0 0 0 4.5px rgba(242, 200, 119, .12), 0 0 2rem -0.25rem rgba(242, 200, 119, .2);
}

.stream-modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.stream-modal__player-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: radial-gradient(circle at 50% 40%, #2c211a, #120d0a 72%);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-ink-soft);
}

.stream-modal__spinner {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2px solid rgba(242, 200, 119, .25);
    border-top-color: var(--color-gold-light);
    animation: stream-modal-spin .8s linear infinite;
}

@keyframes stream-modal-spin {
    to { transform: rotate(360deg); }
}

.stream-modal__live {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--color-wine-light);
    border: 1px solid var(--color-wine);
    border-radius: 999px;
    background: rgba(15, 11, 10, .78);
    backdrop-filter: blur(0.25rem);
}

.stream-modal__live-dot {
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 50%;
    background: var(--color-wine-light);
    box-shadow: 0 0 0.5rem var(--color-wine-light);
    animation: stream-modal-live-pulse 1.6s ease-in-out infinite;
}

@keyframes stream-modal-live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

.stream-modal__info {
    text-align: center;
}

.stream-modal__name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--color-gold-light);
}

.stream-modal__meta {
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    color: var(--color-ink-soft);
}

.stream-modal__count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.375rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-gold-light);
}

.stream-modal__count-icon {
    width: 0.875rem;
    height: 0.875rem;
    flex: none;
}

.stream-modal__external {
    display: inline-block;
    margin-top: 0.625rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-gold-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.stream-modal__external:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

@media (prefers-reduced-motion: reduce) {
    .stream-modal__spinner {
        animation: none;
    }

    .stream-modal__live-dot {
        animation: none;
    }
}

.footer {
    background: var(--color-sand-dark);
    border-top: 1px solid var(--color-border-strong);
    padding: clamp(1.375rem, 3vw, 1.625rem) clamp(1.125rem, 5vw, 4rem);
}

.footer__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 1.375rem;
    flex-wrap: wrap;
}
@media (max-width: 48rem) {
    .footer__nav {
        flex-direction: column;
        gap: 0;
        line-height: 1;
    }
    .footer__bottom {
        justify-content: center!important;
    }
}
.footer__nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--color-ink-soft);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__copy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-ink-muted);
}

.footer__banners {
    display: grid;
    grid-template-columns: repeat(5, 130px);
    gap: 0.625rem;
}

@media (max-width: 720px) {
    .footer__banners {
        grid-template-columns: repeat(2, 130px);
    }
}

.footer__banner-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 130px;
    height: 40px;
    border: 1px dashed var(--color-border-strong);
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, .15);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--color-ink-muted);
    transition: border-color .2s ease, color .2s ease;
}

.footer__banner-slot:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

@keyframes tick {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .35;
    }
}

@media (max-width: 1200px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: inline-flex;
    }
}

@media (max-width: 860px) {
    .hero {
        min-height: calc(100vh - var(--header-h));
        min-height: calc(100dvh - var(--header-h));
        background-image: url("../images/bg/main.png");
        background-size: cover;
        background-position: 68% center;
    }

    .hero__video {
        object-position: 68% center;
    }

    .hero__scrim {
        background: linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15)),
        linear-gradient(180deg, rgba(9, 6, 6, .5) 0%, rgba(9, 6, 6, .3) 38%, rgba(9, 6, 6, .82) 76%, var(--color-parchment) 100%);
    }

    .hero__content {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .section {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }

    .header__right .btn--ghost {
        display: none;
    }

    .hero__title {
        font-size: clamp(2.5rem, 11.5vw, 3.75rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

.accent {
    color: var(--color-gold-light);
}

.section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 21.25rem;
    background: radial-gradient(60% 100% at 50% 0, rgba(201, 138, 52, .07), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.section:nth-of-type(even)::before {
    background: radial-gradient(60% 100% at 50% 0, rgba(178, 58, 44, .07), transparent 60%);
}

.section__inner {
    position: relative;
    z-index: 1;
}

.server-card__divider,
.shop-card__divider {
    background: var(--hairline-gold);
    opacity: .85;
}

.hero__corona {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(46% 46% at 72% 33%, rgba(242, 200, 119, .1), transparent 62%);
    mix-blend-mode: screen;
}

.hero__title {
    text-shadow: 0 1px 0 rgba(0, 0, 0, .55), 0 -1px 0 rgba(242, 200, 119, .16), 0 2px 1.125rem rgba(0, 0, 0, .7), 0 0 2.875rem rgba(240, 176, 92, .3);
}

.shop-card {
    isolation: isolate;
}

.shop-card__band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1875rem;
    background: var(--color-border-strong);
}

.shop-card__price {
    position: relative;
    z-index: 2;
}

.footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer__nav-link {
    position: relative;
    padding-bottom: 0.1875rem;
    background: linear-gradient(var(--color-gold), var(--color-gold)) left bottom / 0 1px no-repeat;
    transition: background-size .3s ease, color .2s ease;
}

.footer__nav-link:hover {
    color: var(--color-gold-light);
    background-size: 100% 1px;
}

@media (max-width: 620px) {
    .news-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.25rem;
    }

    .news-card__body {
        padding: 1rem 0.375rem 0.375rem;
        text-align: left;
    }

    .news-card__body::before {
        display: none;
    }
}

.btn--ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.65rem 1.2rem 0.65rem .8rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: .07em;
    white-space: nowrap;
    cursor: pointer;
    color: var(--color-ink-soft);
    background: linear-gradient(90deg, rgba(201, 138, 52, .05), transparent);
    border: none;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
    border-left: 2px solid var(--color-border-strong);
    clip-path: polygon(0 0, calc(100% - 0.8125rem) 0, 100% 50%, calc(100% - 0.8125rem) 100%, 0 100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), color .3s ease, border-color .3s ease, background .3s ease;
}
.btn--ghost-2 {
    clip-path: none;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
    border-right: 2px solid var(--color-border-strong);
}

.btn--ghost-2:hover {
    border-right-color: var(--color-gold);
}
.btn--ghost .btn__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: none;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .55));
}

.btn--ghost:hover {
    color: var(--color-gold-light);
    border-left-color: var(--color-gold);
    background: linear-gradient(90deg, rgba(201, 138, 52, .13), transparent);
    transform: translateX(0.25rem);
}

.btn--ghost:hover .btn__icon {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .55)) brightness(1.08);
}

.btn--ghost:active {
    transform: translateX(0.25rem) scale(.97);
}

.btn--ghost:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 0.1875rem;
}

@media (prefers-reduced-motion: reduce) {
    .btn--ghost {
        transition: none;
    }
}

.start-btn {
    padding: 0.85rem 1.6rem 0.85rem 1.1rem;
    font-size: clamp(1rem, 0.85rem + 1vw, 1.5rem);
}

.start-btn .btn__icon {
    width: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    height: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}
