@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Ultra&display=swap');
* {
    box-sizing: border-box;
}
:root {
    --border-radius: 4px;
    --color-text: #333;
    --color-primary: #7026b9;
    --color-code-bg: #fff4db;
    --color-code: #8a6534;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
    --font-lg: 18px;
    --font-md: 16px;
    --font-sm: 14px;
    --font-sx: 12px;
    --line-height-loose: 1.75;
    --line-height-normal: 1.5;
    --line-height-dense: 1.1;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 64px;
    --size-content: 54rem;
    --size-gutter: var(--space-5);
    --size-gap: var(--space-6);
}
html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    font: sans-serif;
    font-size: var(--font-md);
    line-height: var(--line-height-normal);
    overflow-y: scroll;
    scroll-behavior: smooth;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    background: #5E5E57;
    font-family: "Kulim Park", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    word-wrap: break-word;
}
.back {
    background-size: contain;
}
a {
    color: #9C9C9C;
    text-decoration: none;
}
a:active,
a:hover {
    text-decoration: none;
}
abbr[title] {
    border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
    cursor: help;
    text-decoration: none;
}
b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}
dfn {
    font-style: italic;
}
h1 {
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 44px;
}
.single {
    padding-top: 180px;
}
.single h1 {
    font-size: 44px;
}
h1 > b {
    color: var(--color-primary);
}
h2 {
    color: #fff;
    margin: 0;
    margin-bottom: 40px;
    padding: 0;
    font-weight: 400;
    font-size: 34px;
    font-family: "Ultra", sans-serif;
    text-align: center;
}
img {
    border-style: none;
    max-width: 100%;
}
code,
kbd,
pre,
samp {
    font-family: var(--font-mono);
    font-size: 1em;
    line-height: inherit;
}
hr {
    box-sizing: content-box;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding: 0;
    margin-bottom: calc(var(--space-4) - 1px);
    background: hsla(0, 0%, 0%, 0.2);
    border: none;
    height: 1px;
}
* {
    box-sizing: inherit;
}
*:before {
    box-sizing: inherit;
}
*:after {
    box-sizing: inherit;
}
hgroup,
img,
figure,
fieldset,
ul,
ol,
dl,
dd,
p {
    margin: 0;
    padding: 0;
}
ul,
ol {
    margin-left: var(--space-4);
    list-style-position: outside;
    list-style-image: none;
}
pre {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: var(--space-4);
    font-size: 0.875rem;
    line-height: var(--line-height-normal);
    background: hsla(0, 0%, 0%, 0.04);
    border-radius: var(--border-radius);
    overflow: auto;
    word-wrap: normal;
    padding: var(--space-4);
}
b,
strong,
dt,
th {
    font-weight: bold;
}
li {
    margin-bottom: calc(var(--space-4) / 2);
}
ol li,
ul li {
    padding-left: 0;
}
li > ol,
li > ul {
    margin-bottom: calc(var(--space-4) / 2);
    margin-left: var(--space-4);
    margin-top: calc(var(--space-4) / 2);
}
blockquote *:last-child {
    margin-bottom: 0;
}
li *:last-child {
    margin-bottom: 0;
}
p *:last-child {
    margin-bottom: 0;
}
li > p {
    margin-bottom: calc(var(--space-4) / 2);
}
code {
    font-size: 0.875rem;
}
kbd {
    font-size: 0.875rem;
}
samp {
    font-size: 0.875rem;
}
abbr {
    border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
    cursor: help;
}
acronym {
    border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
    cursor: help;
}
tt,
code {
    background-color: var(--color-code-bg);
    border-radius: var(--border-radius);
    color: var(--color-code);
    font-family: var(--font-mono);
    padding-bottom: 0.25em;
    padding-top: 0.25em;
    word-break: normal;
}
pre code {
    background: none;
}
code:before,
code:after,
tt:before,
tt:after {
    content: "\00a0";
    letter-spacing: -0.2em;
}
pre code:before,
pre code:after,
pre tt:before,
pre tt:after {
    content: none;
}
.btn {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #000;
    border-radius: 20px;
    width: 100%;
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}
.btn.pink {
    background: #D31C54;
}
.btn.yellow {
    color: #000;
    background: #DAFE31;
}
.btn.green {
    color: #000;
    background: #00FF86;
}
.btn:hover {
    background: #fff;
    color: #000;
}
.btn .ribbon {
    position: absolute;
    top: 10px;
    left: -80px;
    background-color: #FFD800;
    color: black;
    padding: 5px;
    width: 250px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(-30deg);
}

.btn .ribbon::before,.btn  .ribbon::after {
    content: '';
    position: absolute;
    bottom: -2px;
    border-style: solid;
    border-color: #FFD700 transparent transparent transparent;
}

.btn .ribbon::before {
    left: 0;
    border-width: 0 10px 10px 0;
}

.btn .ribbon::after {
    right: 0;
    border-width: 10px 10px 0 0;
}
.homepage {
    background-size: contain;
}
.container {
    width: 95%;
    max-width: 1840px;
    box-sizing: border-box;
    margin: 0 auto;
}
/* Hero Section */
.hero {
    background: url('../images/hero.png') no-repeat center center/cover;
    text-align: center;
    padding: 180px 0;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Черный цвет с прозрачностью */
}
.info {
    position: relative;
    z-index: 100;
    margin-bottom: 50px;
}
.only18 {
    color: #FF2412;
    font-size: 20px;
    padding: 10px;
    margin: 0 auto;
    background: #FFFFFF33;
    backdrop-filter: blur(20px);
    width: fit-content;
    border-radius: 100px;
}

.hero h1 {
    font-family: "Ultra", sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

.security-info {
    display: flex;
    gap: 20px;
}

/* Casino Offers */
.casino-offers {
    display: flex;
    gap: 34px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto;
}
.casino-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 20px auto;
}
.casino-list {
    margin-top: 75px;
    scroll-margin-top: 100px;
}
.slider {
    margin-top: 75px;
}
.swiper-container {
    overflow: hidden;
}
.slider_card {
    background: #A7BDC0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    border-radius: 40px;
    text-align: center;
    height: 420px;
}
.slider_text {
    color: #202020;
    font-size: 20px;
}
.slider_img {
    width: 150px;
    height: 150px;
}
.slider_title {
    color: #202020;
    font-size: 34px;
    font-weight: 400;
    font-family: "Ultra", sans-serif;
}
.bonuses-section {
    margin-top: 75px;
    text-align: center;
}
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.bonus-item {
    background: #A7BDC066;
    padding: 30px;
    border-radius: 40px;
    cursor: pointer;
}
.bonus-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bonus-content {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.bonus-item.active .bonus-content {
    max-height: 150px; /* Достаточно большое значение для содержимого */
    padding-top: 50px;
}
.bonus-item svg {
    stroke: #fff;
    transition: all 0.3s ease;
}
.bonus-item.active svg {
    transform: rotate(-180deg);
}
.info-section {
    margin-top: 75px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.info-item {
    background: #A7BDC0;
    color: #202020;
    padding: 30px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.info-text p {
    margin: 0;
}
.mobile_offers {
    display: none;
}

@media (min-width: 1000px) {
    .casino-container .casino-card:not(.offer):nth-child(-n+1) {
        display: none;
    }
}
@media (max-width: 1650px) {
    h1 {
        font-size: 34px;
    }
    .casino-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 1100px) {
    .info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    h1 {
        order: -1;
    }
}
@media (max-width: 900px) {
    .casino-offers {
        display: none;
    }
    .mobile_casinos {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .mobile_offers {
        display: flex;
        gap: 30px;
        margin-bottom: 30px;
    }
    .mobile_offers .casino-card {
        min-width: 300px;
    }
    .casino-list, .scroll-down {
        display: none;
    }
    .slider_card {
        min-height: auto;
    }
}
@media (max-width: 768px) {
    h1, h2 {
        font-size: 20px;
    }
    .only18 {
        font-size: 16px;
    }
    .hero {
        padding: 150px 0;
    }
}
@media (max-width: 700px) {
    .bonuses-grid,.info-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 600px) {
    .info {
        gap: 5px;
        margin-bottom: 10px;
    }
}