:root {
    --color-white: #fff;
    --color-dark: #0f152b;
    --color-dark-2: rgb(34, 84, 134);
    --color-accent: #fff;
    --color-accent-2: rgb(34, 84, 134);
    --color-button-bg: #ff0;
    --color-bg-header-footer: var(--color-dark-2);
    --color-font-shadow: var(--color-dark);
    --color-1xbet-blue: #1d4268;
    --color-1xbet-blue-light: #205583;
    --color-1xbet-green: #7eac2f;
    --color-1xbet-orange: #d05e0e;
    --color-1xbet-content-bg: #e8eef5;
    --color-1xbet-text: #276aa5;
    --font-shadow: drop-shadow(0 1px 0 var(--color-dark));
    --gradient-headers: linear-gradient(to bottom, var(--color-white) 50%, var(--color-accent) 100%);
    --gradient-headers-title-fixed: linear-gradient(to bottom, var(--color-white) 50%, var(--color-accent) 100%);
    --font-secondary-letter-spacing: .01em
}

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

body {
    background: rgb(24 36 47);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-text-size-adjust: none;
}

body, img {
    margin: 0;
    padding: 0
}

img {
    border: none;
    height: auto;
    max-width: 100%
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px;
    padding: 0;
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 25px
}

h3 {
    font-size: 22px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    margin: 0 0 15px;
    padding: 0
}

a {
    color: #007bff
}

a, a:hover {
    text-decoration: none
}

a:hover {
    color: #fff
}

ul, ol {
    margin: 0 0 15px 15px;
    padding: 0
}

.flexbox {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.site-logo img {
    display: block;
}

.sitenav {
    position: relative;
    z-index: 9999
}

.sitenav ul {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sitenav ul li {
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: 30px
}

.sitenav ul li:last-child {
    margin-right: 0
}

/* ── Hero Swiper Slider ── */
.main-slider {
    position: relative;
    max-width: 920px;
    margin: 24px auto 28px;
    padding: 0 24px;
}

.hero-swiper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    border: 2px solid rgba(126, 172, 47, .3);
    background: rgba(15, 30, 50, .5);
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper__link {
    display: block;
    line-height: 0;
    width: 100%;
}

.hero-swiper__link img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .5);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: .25s;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--color-1xbet-green);
    width: 28px;
    border-radius: 5px;
}

.hero-swiper__pagination {
    bottom: 14px !important;
}

.hero-swiper__prev,
.hero-swiper__next {
    color: #fff;
    background: rgba(29, 66, 104, .75);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: background .2s;
}

.hero-swiper__prev::after,
.hero-swiper__next::after {
    font-size: 18px;
    font-weight: 700;
}

.hero-swiper__prev:hover,
.hero-swiper__next:hover {
    background: var(--color-1xbet-green);
}

@media (max-width: 767px) {
    .hero-swiper__prev,
    .hero-swiper__next {
        display: none;
    }

    .main-slider {
        max-width: 100%;
        margin: 16px auto 20px;
        padding: 0 16px;
    }

    .hero-swiper {
        border-radius: 12px;
    }
}

/* ── Content Area ── */
.content-area {
    margin-bottom: 30px;
    background: var(--color-1xbet-content-bg);
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(29, 66, 104, .15);
    box-shadow: 0 4px 24px rgba(15, 21, 43, .08);
    overflow: hidden;
    position: relative;
}

.content-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-1xbet-green) 0%, var(--color-1xbet-blue) 100%);
}

.content-area .home-content {
    padding: 28px 28px 28px 36px;
}

.content-area h1 {
    color: var(--color-1xbet-blue);
    font-size: 26px;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(126, 172, 47, .35);
    position: relative;
}

.content-area h1::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-1xbet-green);
}

.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
    color: var(--color-1xbet-blue);
}

.content-area h2 {
    margin-top: 28px;
    padding-left: 14px;
    border-left: 3px solid var(--color-1xbet-green);
}

.content-area p,
.content-area li {
    color: var(--color-1xbet-text);
}

.content-area .page-content {
    line-height: 1.75;
}

.content-area .page-cover {
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(29, 66, 104, .12);
}


.wrap {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    width: 100%
}

@media (min-width: 576px) {
    .wrap {
        max-width: 530px;
    }
}

@media (min-width: 768px) {
    .wrap {
        max-width: 730px
    }

    .content-area .home-content {
        padding: 32px 36px 32px 44px;
    }
}

@media (min-width: 992px) {
    .wrap {
        max-width: 950px
    }
}

@media (min-width: 1200px) {
    .wrap {
        max-width: 1160px
    }
}

/* ── Header Promo Bar ── */
.header-promo {
    background: linear-gradient(90deg, var(--color-1xbet-blue) 0%, var(--color-1xbet-blue-light) 100%);
    border-bottom: 2px solid var(--color-1xbet-green);
    padding: 8px 0;
}

.header-promo__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
}

.header-promo__badge {
    background: var(--color-1xbet-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .05em;
}

.header-promo__text strong {
    color: #ff0;
}

.header-promo__link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.header-promo__link:hover {
    color: #ff0;
}

/* ── Header ── */
#header {
    padding: 18px 0;
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(29, 66, 104, .95) 0%, rgba(29, 66, 104, .8) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.header__brand .custom-logo {
    width: 180px;
    height: auto;
}

.header__stats {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.header-stat {
    text-align: center;
}

.header-stat__value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.header-stat__value--live {
    color: var(--color-1xbet-green);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .6; }
}

.header-stat__label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
}

.header__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 22px;
    text-align: center;
    transition: .2s;
    white-space: nowrap;
}

.btn-header--outline {
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
}

.btn-header--outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .08);
}

.btn-header--primary {
    background: var(--color-1xbet-green);
    color: #fff;
    border: none;
}

.btn-header--primary:hover {
    background: var(--color-1xbet-orange);
    color: #fff;
}

/* ── Navigation ── */
#navigation {
    background: var(--color-1xbet-blue-light);
    padding: 0;
    border-bottom: 3px solid var(--color-1xbet-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.sitenav ul li a {
    color: rgba(255, 255, 255, .75);
    position: relative;
    text-decoration: none;
    padding: 12px 0;
    display: block;
    font-weight: 500;
    transition: color .2s;
}

.sitenav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-1xbet-green);
    transition: width .25s;
}

.sitenav ul li a:hover {
    color: #fff;
}

.sitenav ul li a:hover::after {
    width: 100%;
}

/* ── Footer ── */
#footer {
    background: linear-gradient(180deg, rgba(29, 66, 104, .9) 0%, rgba(15, 30, 50, .95) 100%);
    margin-top: 10px;
}

.footer-features {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: border-color .2s;
}

.footer-feature:hover {
    border-color: rgba(126, 172, 47, .3);
}

.footer-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(32, 85, 131, .6);
    border-radius: 10px;
    color: var(--color-1xbet-green);
}

.footer-feature__icon--accent {
    background: rgba(126, 172, 47, .2);
    color: #ff0;
    font-weight: 800;
    font-size: 14px;
}

.footer-feature__body strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-feature__body span {
    display: block;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 1.4;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-wrap: wrap;
}

.footer-cta__text strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.footer-cta__text span {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

.footer-cta__buttons {
    display: flex;
    gap: 10px;
}

.pics__title {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 12px;
    font-weight: 600;
}

.pics {
    border-top: 1px solid rgba(89, 89, 115, .2);
    padding: 25px 0;
    text-align: center
}

.pics img {
    filter: invert(80%);
    margin: 5px 15px;
    max-width: 120px;
    vertical-align: middle
}

.links {
    border-top: 1px solid rgba(89, 89, 115, .2);
    padding: 30px 0;
    text-align: center
}

.links a.go2 {
    margin-right: 10px
}

blockquote {
    margin: 0 0 15px;
    padding: 0 0 0 15px;
    border-left: 4px solid #007bff;
    font-size: 17px;
    font-style: italic
}

table {
    border-collapse: collapse;
    margin: 0 0 15px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .5);
}

table thead {
    font-weight: 700
}

table td,
table th {
    border: 1px solid rgba(0, 0, 0, .5);
    padding: 10px 15px
}

.head-right {
    padding-right: 20px;
}

.head-right a.go1 {
    margin-right: 5px
}

.front-container {
    background: #1d426880;
}

.front-container h1,
.front-container h2 {
    font-size: 22px;
}

.front-container h3 {
    font-size: 18px;
}

.front-container ul,
.front-container ol {
    list-style: none
}

.front-container ul li,
.front-container ol li {
    position: relative
}

.front-container ul {
    margin: 15px 0;
}

.front-container ul li {
    padding-left: 16px;
    margin-bottom: 3px
}

.front-container ul li:last-child {
    margin-bottom: 0
}

.front-container ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--color-1xbet-green);
    border-radius: 50%;
}

.front-container ol {
    margin: 19px 0;
    counter-reset: list-counter;
}

.front-container ol li {
    padding-left: 40px;
    margin-bottom: 15px;
    counter-increment: list-counter;
}

.front-container ol li:last-child {
    margin-bottom: 0
}

.front-container ol li:before {
    content: counter(list-counter);
    line-height: 2;
    position: absolute;
    left: 0;
    top: -4px;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    background: var(--color-1xbet-blue);
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    gap: 15px;
}

.grid .column {
    flex: 1 0 0;
    padding: 15px 15px 0;
    border: 1px solid rgba(0,0,0, .5);
}

@media (max-width: 767px) {
    .grid .column {
        flex: 0 0 100%;
    }
}

.grid .column p {
    margin-top: 0;
}

.table-responsive {
    margin: 15px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    margin-bottom: 0;
}

.home-content {
    padding-bottom: 0;
}

.copyright-wrapper {
    margin: 0
}

.copyright-wrapper a {
    text-decoration: none
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid rgba(89, 89, 115, .2);
    color: hsla(0, 0%, 100%, .5);
    font-size: 14px;
    padding: 30px 0 20px;
    text-align: center
}

.copyright ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
}

.copyright ul li {
    display: inline-block;
    padding: 0;
}

.copyright ul li:before {
    display: none;
}

.copyright ul li a {
    color: #f1f1f4;
    position: relative;
    text-decoration: none
}

.copyright ul li a:hover {
    color: #007bff
}

.button-primary {
    --background-size: 50px;
    --button-background-size: var(--background-size) 100%, calc(100% - var(--background-size) * 2 + 2px) 100%, var(--background-size) 100%;
    --button-backround-position: left center, center, right 0 center;
    --button-padding-block-start: 8px;
    --button-padding-block-end: 9px;
    align-items: center;
    display: inline-grid;
    width: 100%;
    font-size: 22px;
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
    min-height: 50px;
    position: relative;
    z-index: 1;
    grid-column-gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: var(--font-secondary-letter-spacing);
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--color-button-bg);
    border-radius: 5px;
    box-shadow: inset 0 3px 12px #ffe6cc99;
    color: var(--color-dark);
    padding-block-end: var(--button-padding-block-end);
    padding-block-start: var(--button-padding-block-start);
    padding-top: 11px;
    text-shadow: none;
    transition: .2s
}

.button-primary:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transition: .2s
}


@media (max-width: 991px) {
    .header__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header__stats {
        gap: 16px;
    }

    .header__actions {
        justify-content: center;
    }

    .footer-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pics img {
        margin: 5px 8px;
        max-width: 100px;
    }

    .header__stats {
        display: none;
    }

    .header-promo__inner {
        font-size: 12px;
        gap: 8px;
    }

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

    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta__buttons {
        justify-content: center;
        width: 100%;
    }

    .content-area .home-content {
        padding: 20px 20px 20px 24px;
    }

    .content-area h1 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .sitenav ul {
        font-size: 12px;
    }

    .sitenav ul li {
        margin-right: 8px;
    }

    .copyright p,
    .copyright ul {
        flex: 0 0 100%;
    }

    .btn-header {
        padding: 9px 16px;
        font-size: .78rem;
    }

    .header__brand .custom-logo {
        width: 150px;
    }
}

@media (max-width: 455px) {
    .header-promo__link {
        display: none;
    }
}