@charset "UTF-8";

:root {
    --bg: #06150c;
    --bg-dark: #020704;
    --panel: #092012;
    --panel-2: #0d2a18;
    --line: rgba(227, 194, 125, 0.28);
    --text: #f6edd8;
    --muted: #c5b995;
    --gold: #dcc17d;
    --gold-2: #f1d58d;
    --green: #35ad48;
    --green-2: #46c65c;
    --black: #050805;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--bg-dark);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

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

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 80% 10%, rgba(220, 193, 125, 0.18), transparent 28%),
        radial-gradient(circle at 12% 24%, rgba(53, 173, 72, 0.24), transparent 30%),
        linear-gradient(180deg, #082311 0%, #041209 48%, #020704 100%);
}

.site {
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 22, 11, 0.96);
    border-bottom: 1px solid rgba(220, 193, 125, 0.18);
}

.topbar__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 210px 1fr 330px;
    align-items: center;
    gap: 18px;
}

.brand {
    max-width: 140px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.nav a:hover {
    color: var(--gold-2);
}

.topbar__actions,
.hero__buttons,
.footer__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 9px;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn--green {
    color: #fff;
    background: linear-gradient(180deg, var(--green-2), var(--green));
    box-shadow: 0 16px 38px rgba(53, 173, 72, 0.25);
}

.btn--gold {
    color: #111006;
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.btn--ghost {
    color: var(--gold-2);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.hero {
    padding: 42px 0 32px;
}

.hero__inner {
    display: block;
}

.hero__copy {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(3, 9, 5, 0.92) 0%, rgba(3, 9, 5, 0.78) 42%, rgba(3, 9, 5, 0.2) 100%),
        url("/riobet-owl-banner.webp") center / cover no-repeat,
        #06120a;
}

.hero__copy > * {
    position: relative;
    z-index: 1;
}

.kicker,
.section-title span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h2,
h3,
.hero-title,
.lead {
    color: var(--text);
}

.hero-title {
    max-width: 760px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.14;
}

h2 {
    margin: 20px 0 12px;
    font-size: clamp(19px, 2vw, 26px);
    font-weight: 900;
    line-height: 1.22;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    margin: 18px 0 8px;
    font-size: 17px;
    font-weight: 900;
}

p,
li {
    color: var(--muted);
}

.lead {
    margin: 12px 0 16px;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 900;
    line-height: 1.28;
}

.hero__copy p:not(.lead) {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 18px;
}

.hero__buttons {
    justify-content: flex-start;
}

.promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px dashed rgba(241, 213, 141, 0.55);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.34);
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
}

.promo strong {
    color: #ffe778;
}

.content {
    padding-top: 18px;
    padding-bottom: 36px;
}

.article {
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(6, 21, 12, 0.82);
}

.info-list {
    display: grid;
    margin-bottom: 28px;
    border: 1px solid rgba(220, 193, 125, 0.18);
    border-radius: 8px;
    overflow: hidden;
}

.info-list div {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(220, 193, 125, 0.18);
}

.info-list div:last-child {
    border-bottom: 0;
}

.info-list span {
    color: var(--gold-2);
    font-weight: 900;
}

.info-list b {
    color: var(--text);
}

.article p {
    margin-bottom: 18px;
}

.article ol,
.article ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.article ol {
    list-style: decimal;
}
.article table {
    width: 100%;
    margin: 24px 0 30px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(220, 193, 125, 0.24);
    border-radius: 10px;
    background: rgba(6, 21, 12, 0.72);
}

.article table tr:first-child td {
    color: #071006;
    background: linear-gradient(180deg, #f1d58d, #d6b96f);
    font-weight: 900;
}

.article table tr:not(:first-child) td:first-child {
    color: #f1d58d;
    font-weight: 800;
}

.article table td {
    padding: 14px 18px;
    border-right: 1px solid rgba(220, 193, 125, 0.18);
    border-bottom: 1px solid rgba(220, 193, 125, 0.18);
    color: #f6edd8;
    vertical-align: top;
}

.article table td:last-child {
    border-right: 0;
}

.article table tr:last-child td {
    border-bottom: 0;
}

.article table tr:nth-child(odd):not(:first-child) td {
    background: rgba(255, 255, 255, 0.035);
}

.article table tr:nth-child(even):not(:first-child) td {
    background: rgba(255, 255, 255, 0.015);
}
.article ul {
    list-style: disc;
}

.slots {
    padding: 36px 0 54px;
    background: linear-gradient(180deg, rgba(4, 18, 9, 0.25), rgba(2, 7, 4, 0.72));
}

.section-title {
    margin-bottom: 18px;
}
.article-image {
    margin: 26px 0;
    overflow: hidden;
    border: 1px solid rgba(220, 193, 125, 0.22);
    border-radius: 10px;
    background: #07160c;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.article-image img {
    display: block;
    width: 100%;
    height: auto;
}

.article-image--registration {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.article-image--registration img {
    max-height: 620px;
    object-fit: contain;
    object-position: center top;
}

.article-image--bonus img {
    width: 100%;
    object-fit: cover;
}


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

.slot {
    position: relative;
    overflow: hidden;
    aspect-ratio: 258 / 173;
    border-radius: 8px;
    background: #07120a;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.slot:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.slot:hover img {
    transform: scale(1.035);
}

.slot span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 12px 10px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.slot:hover span {
    opacity: 1;
}

.footer {
    padding: 46px 0;
    border-top: 1px solid rgba(220, 193, 125, 0.18);
    background: #041009;
}

.footer__inner {
    display: grid;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.footer__logo {
    width: 170px;
}

.footer__actions {
    justify-content: center;
}

.footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    color: var(--muted);
}

.footer__bottom a {
    color: var(--gold-2);
}

@media (max-width: 1100px) {
    .topbar__inner {
        grid-template-columns: 180px 1fr;
    }

    .topbar__actions {
        grid-column: 2;
        grid-row: 1;
    }

    .nav {
        grid-column: 1 / -1;
        padding-bottom: 16px;
    }

    .hero__copy { min-height: 380px; }

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

@media (max-width: 820px) {
    .slots__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
@media (max-width: 768px) {
        .article table {
        display: block;
        overflow-x: auto;
        border-radius: 8px;
    }

    .article table td {
        min-width: 220px;
        padding: 12px 14px;
    }
    .article-image {
        margin: 20px 0;
        border-radius: 8px;
    }

    .article-image--registration img {
        max-height: none;
    }
}
@media (max-width: 620px) {
    .container {
        padding: 0 16px;
    }

    .topbar__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        padding: 14px 16px 18px;
    }

    .brand {
        width: 165px;
    }

    .nav {
        grid-column: auto;
        width: 100%;
        justify-content: flex-start;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .topbar__actions,
    .hero__buttons,
    .footer__actions {
        width: 100%;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 290px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero__copy {
        min-height: 430px;
        padding: 28px 22px;
        background:
            linear-gradient(180deg, rgba(3, 9, 5, 0.96) 0%, rgba(3, 9, 5, 0.76) 46%, rgba(3, 9, 5, 0.25) 100%),
            url("/riobet-owl-banner.webp") 68% bottom / auto 62% no-repeat,
            #06120a;
        padding-bottom: 210px;
    }

    .slots__grid {
        grid-template-columns: 1fr;
    }

    .slot img {
        height: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
    }
}
