:root {
    --bg-site: #f6f7fb;
    --bg-wrapper: #ffffff;
    --bg-container: #f7f7f7;
    --border: #deded9;
    --contrast: #000000;
    --gray: #737373;
    --yellow: #ed9e00;
    --yellow-hover: #ffc926;
    --green: #94ca37;
    --red: #ff5e5e;
    --black: #000;
    --white: #fff;
    --text-main: #101218;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, .06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background:
        radial-gradient(900px 420px at 80% -10%, rgba(237, 158, 0, .08), transparent 60%),
        radial-gradient(800px 360px at -10% 10%, rgba(80,120,255,.05), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
    color: var(--text-main);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1412px;
    margin-inline: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 1201px) {
    .container {
        padding-left: 36px;
        padding-right: 36px;
    }
}

.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.static { position: static; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.grow { flex-grow: 1; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.self-center { align-self: center; }
.overflow-hidden { overflow: hidden; }
.whitespace-nowrap { white-space: nowrap; }
.rounded-md { border-radius: 8px; }
.rounded-sm { border-radius: 4px; }
.rounded-full { border-radius: 9999px; }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.bg-bg-site { background-color: var(--bg-site); }
.text-f-main { color: var(--text-main); }
.text-gray { color: var(--gray); }
.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.not-italic { font-style: normal; }

.text-h2 { font-size: 24px; line-height: 32px; font-weight: 800; margin: 0; }
.text-h3 { font-size: 20px; line-height: 24px; font-weight: 800; margin: 0; }
.text-tiny { font-size: 12px; line-height: 16px; font-weight: 400; }
.text-\[11px\] { font-size: 11px; }
.text-\[20px\] { font-size: 20px; }

@media (min-width: 1201px) {
    .text-h2 { font-size: 34px; line-height: 42px; }
    .text-h3 { font-size: 24px; line-height: 30px; }
}

.page-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 88px 1fr;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid var(--border);
}

.sidebar__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.sidebar__logo {
    width: 100%;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    padding: 16px;
}

.sidebar__logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
}

.sidebar__bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aside-emoji-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: .2s ease;
}

.aside-emoji {
    font-size: 22px;
    line-height: 1;
    filter: grayscale(1) saturate(0) brightness(.76) contrast(1.03);
    opacity: .9;
    transition: .2s ease;
}

.aside-emoji-link:hover {
    background: rgba(237, 158, 0, .08);
}

.aside-emoji-link:hover .aside-emoji {
    filter: grayscale(.1) saturate(.85) brightness(1);
    transform: scale(1.06);
}

.page-content-area {
    min-width: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.site-header__row {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.site-brand__logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-brand__eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 3px;
}

.site-brand__title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 24px;
}

.site-nav__link {
    color: var(--gray);
    font-weight: 600;
    position: relative;
    padding: 30px 0;
    transition: color .2s ease;
}

.site-nav__link:hover,
.site-nav__link.active {
    color: #000;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.site-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1;
    transition: .2s ease;
    padding: 12px 16px;
}

.btn-outline-custom {
    border: 1px solid rgba(0,0,0,.12);
    color: #000;
    background: #fff;
}

.btn-outline-custom:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn-primary-custom {
    background: var(--yellow);
    color: #000;
    border: 1px solid var(--yellow);
}

.btn-primary-custom:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
}

.burger {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: .2s ease;
}

.burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    padding: 0 0 16px;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0 14px;
}

.mobile-menu__link {
    padding: 10px 0;
    color: rgba(0,0,0,.84);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.mobile-menu__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.site-main {
    padding: 28px 0 40px;
}

.hero-section {
    margin-bottom: 24px;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.hero-banner--compact {
    min-height: 98px;
}

.hero-banner__media img {
    width: 100%;
    height: 100%;
    min-height: 98px;
    object-fit: cover;
    display: block;
}

.hero-banner__cta {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

.hero-banner__cta svg,
.compact-panel__btn svg,
.dragon-slider-btn svg,
.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hero-copy-card {
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffbf3a 0%, #ffcf61 100%);
    border-radius: 20px;
    padding: 28px;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.hero-copy-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(24, 19, 12, .18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 25px rgba(255, 180, 0, .18);
    margin-bottom: 18px;
    color: #fff;
    animation: badgeGlow 2.8s ease-in-out infinite;
}

.hero-copy-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34,197,94,.65);
    flex: 0 0 10px;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 12px rgba(255, 180, 0, .10);
    }
    50% {
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 0 24px rgba(255, 180, 0, .22);
    }
}

.hero-copy-card h1 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #fff;
    font-weight: 800;
}

.hero-copy-card__lead {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: rgba(255,255,255,.92);
}

.hero-copy-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-chip {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(19, 19, 19, .78);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.hero-copy-card__actions {
    margin-bottom: 16px;
}

.hero-copy-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.section-heading h2 span {
    color: var(--yellow);
}

.section-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #444;
    line-height: 1.6;
}

.section-heading--light h2 {
    color: #fff;
}

.section-heading--light p {
    color: rgba(255,255,255,.82);
}

.section-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #c892ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.features-section {
    margin-bottom: 34px;
    background: #141424;
    border-radius: 20px;
    padding: 34px 24px 24px;
    box-shadow: var(--shadow-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

.feature-card {
    background: #1a1730;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    min-height: 220px;
}

.feature-card--accent {
    box-shadow: 0 0 0 1px rgba(237, 158, 0, .18), 0 0 24px rgba(237, 158, 0, .16);
}

.feature-card__icon {
    font-size: 24px;
    margin-bottom: 14px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
    color: #ffd24d;
}

.feature-card p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}

.games-showcase {
    margin-bottom: 30px;
    background: #141424;
    border-radius: 20px;
    padding: 28px 24px 26px;
    box-shadow: var(--shadow-soft);
}

.games-showcase__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 12px;
}

.game-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    min-height: 180px;
    background: #1f2330;
    border: 1px solid rgba(255,255,255,.06);
}

.game-tile img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.game-tile__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: #ffb000;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    padding: 5px 9px;
}

.game-tile__badge--green {
    background: #6dd640;
}

.compact-games {
    margin-top: 8px;
    margin-bottom: 28px;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.compact-panel {
    background: linear-gradient(180deg, #20283a 0%, #171d2a 100%);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.compact-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.compact-panel__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 6px;
    color: #fff;
}

.compact-panel__online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

.compact-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(148,202,55,.45);
    display: inline-block;
    flex: 0 0 10px;
}

.compact-panel__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: #000;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.compact-panel__btn--small {
    padding: 9px 14px;
}

.compact-panel__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 10px;
}

.compact-panel__thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
}

.dragon-games-section {
    margin-top: 24px;
    margin-bottom: 34px;
}

.dragon-games-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.dragon-games-controls {
    display: flex;
    gap: 8px;
}

.dragon-slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    transition: .2s ease;
}

.dragon-slider-btn:hover {
    background: #fff7e9;
    color: var(--yellow);
    transform: translateY(-1px);
}

.dragon-games-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.dragon-games-slider::-webkit-scrollbar {
    display: none;
}

.dragon-games-track {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap !important;
    width: max-content;
}

.dragon-slide {
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    flex: 0 0 360px;
}

.game-card-mini {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: #1e2431;
    box-shadow: var(--shadow-soft);
    min-height: 220px;
}

.game-card-mini__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-mini__body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(180deg, rgba(7,10,16,.05) 0%, rgba(7,10,16,.52) 56%, rgba(7,10,16,.78) 100%);
}

.game-card-mini__badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--green);
    color: #000;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.game-card-mini__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.game-card-mini__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.textSeo {
    margin: 50px 0;
    color: var(--text-main);
}

.textSeo p,
.textSeo li {
    line-height: 1.5;
    font-size: 16px;
    color: #222;
}

.textSeo h1,
.textSeo h2,
.textSeo h3 {
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
}

.textSeo h1:first-child,
.textSeo h2:first-child,
.textSeo h3:first-child {
    margin-top: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
    margin: 24px 0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

th {
    background: #ed9e00 !important;
    color: #000 !important;
    padding: 18px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #d68f00;
}

tr:nth-child(even) {
    background: linear-gradient(90deg, #f7f7ef 0%, #fff7dc 100%);
}

tr:nth-child(odd) {
    background: linear-gradient(90deg, #fcfcf7 0%, #fffdf1 100%);
}

td {
    padding: 16px 20px;
    color: #111;
    border-bottom: 1px solid #e8e1bf;
    position: relative;
}

td:before {
    content: "⚡";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

tr:hover td:before {
    opacity: 1;
    left: -5px;
}

tr:hover {
    background: linear-gradient(90deg, #fff3bf 0%, #ffe28a 100%);
    transform: translateX(8px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(237, 158, 0, 0.14);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 28px;
}

.footer-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 18px;
}

.footer-18 {
    margin-right: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #ff5e5e;
    color: #fff;
    font-weight: 700;
    flex: 0 0 40px;
}

.footer-logo-mini {
    margin-right: 16px;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 42px;
}

.footer-link-accent {
    color: #d28a00;
}

.footer-link-accent:hover {
    color: #b27200;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .page-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .site-nav,
    .site-header__actions {
        display: none;
    }

    .burger {
        display: inline-flex;
    }

    .site-header__row {
        min-height: 72px;
    }

    .site-brand__title {
        font-size: 18px;
    }

    .site-brand__logo {
        width: 40px;
        height: 40px;
    }

    .compact-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .games-showcase__grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .dragon-slide {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        flex: 0 0 320px;
    }

    .footer-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .site-main {
        padding: 22px 0 36px;
    }

    .hero-copy-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .hero-copy-card h1,
    .section-heading h2,
    .textSeo h1,
    .textSeo h2,
    .textSeo h3 {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .games-showcase__grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .dragon-games-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .dragon-slide {
        width: calc(100vw - 32px);
        min-width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        flex: 0 0 calc(100vw - 32px);
    }

    th {
        font-size: 16px;
        padding: 14px 12px;
    }

    td {
        padding: 12px 12px;
    }

    .compact-panel__thumbs,
    .games-showcase__grid {
        gap: 8px;
    }

    .game-card-mini__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-banner--compact {
        min-height: 72px;
    }

    .hero-banner__media img {
        min-height: 72px;
    }

    .compact-panel__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        font-size: 14px;
        padding: 10px 12px;
    }

    .mobile-menu__actions {
        flex-direction: column;
    }

    .mobile-menu__actions .btn {
        width: 100%;
    }

    .hero-copy-card__meta {
        flex-direction: column;
        gap: 6px;
    }

    .games-showcase__grid {
        grid-template-columns: 1fr 1fr;
    }
}