:root {
--color-bg: #050507;
--color-bg-2: #0c0d12;
--color-surface: #10172a;
--color-surface-2: #161821;
--color-border: #232531;
--color-text: #ffffff;
--color-text-muted: #9aa0ad;
--color-accent: #2fd6e6;
--color-accent-2: #e0286b;
--color-accent-yellow: #f6c945;
--font-base: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
--maxw: 1280px;
--space: 16px;
--radius: 12px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
overflow-x: clip;
}
body {
font-family: var(--font-base);
background: var(--color-bg);
color: var(--color-text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
overflow-x: clip;
width: 100%;
max-width: 100%;
}
a {
color: var(--color-accent);
text-decoration: none;
}
img {
max-width: 100%;
display: block;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 700;
border-radius: 8px;
padding: 10px 20px;
cursor: pointer;
border: none;
font-size: 15px;
transition: transform .15s ease, opacity .15s ease;
}
.btn:hover {
transform: translateY(-2px) scale(1.02);
opacity: .92;
box-shadow: 0 6px 20px rgba(47, 214, 230, .25);
}
.btn--signup {
background: var(--color-accent-2);
color: #fff;
}
.btn--login {
background: var(--color-accent);
color: #07121a;
}
.btn--hero {
background: var(--color-accent-2);
color: #fff;
font-size: 17px;
padding: 14px 30px;
margin-top: 8px;
}
.header {
position: sticky;
top: 0;
z-index: 60;
background: var(--color-bg-2);
border-bottom: 1px solid var(--color-border);
}
.header__inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 14px var(--space);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
min-width: 0;
}
.header__logo {
font-size: 26px;
font-weight: 800;
letter-spacing: -1px;
flex-shrink: 1;
min-width: 0;
}
.header__logo-cosmo {
color: var(--color-accent);
}
.header__logo-bet {
color: var(--color-accent-2);
}
.header__actions {
display: flex;
align-items: center;
gap: 14px;
flex-shrink: 0;
}
.header__forgot {
color: var(--color-text);
font-size: 14px;
}
.header__lang {
background: none;
border: none;
color: var(--color-text);
font-size: 15px;
display: flex;
align-items: center;
gap: 4px;
cursor: pointer;
}
.header__burger {
display: none;
background: none;
border: none;
color: var(--color-text);
cursor: pointer;
}
.nav {
background: var(--color-bg-2);
border-bottom: 1px solid var(--color-border);
}
.nav__list {
max-width: var(--maxw);
margin: 0 auto;
padding: 0 var(--space);
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.nav__link {
display: block;
padding: 16px 6px;
color: var(--color-text);
font-weight: 600;
font-size: 16px;
position: relative;
transition: color .15s ease;
}
.nav__link:hover {
color: var(--color-accent);
}
.nav__item--new {
position: relative;
}
.nav__badge {
position: absolute;
top: 4px;
right: -22px;
background: var(--color-accent-2);
color: #fff;
font-size: 10px;
font-weight: 700;
padding: 2px 6px;
border-radius: 4px;
}
.breadcrumbs {
background: var(--color-bg);
border-bottom: 1px solid var(--color-border);
}
.breadcrumbs__inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 12px var(--space);
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
font-size: 14px;
}
.breadcrumbs__link {
color: var(--color-text-muted);
transition: color .15s ease, transform .15s ease;
}
.breadcrumbs__link:hover {
color: var(--color-accent);
transform: translateX(2px);
}
.breadcrumbs__sep {
color: var(--color-text-muted);
flex-shrink: 0;
}
.breadcrumbs__current {
color: var(--color-text);
font-weight: 600;
}
.hero {
background-image: url('banner.webp');
background-size: cover;
background-position: center;
background-color: #000;
min-height: 460px;
display: flex;
align-items: center;
}
.hero__inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 60px var(--space);
width: 100%;
}
.hero__content {
max-width: 560px;
}
.hero__kicker {
color: var(--color-accent);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 14px;
margin-bottom: 10px;
}
.hero__title {
font-size: 38px;
line-height: 1.15;
font-weight: 800;
margin-bottom: 16px;
}
.hero__sub {
font-size: 17px;
color: #e6e8ee;
margin-bottom: 20px;
}
.categories {
position: sticky;
top: 64px;
z-index: 50;
background: var(--color-bg-2);
border-bottom: 1px solid var(--color-border);
width: 100%;
max-width: 100%;
overflow: hidden;
}
.categories__inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 10px var(--space);
display: flex;
gap: 10px;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
-ms-overflow-style: none;
}
.categories__inner::-webkit-scrollbar {
display: none;
}
.categories__item {
white-space: nowrap;
flex-shrink: 0;
padding: 8px 18px;
border-radius: 30px;
background: var(--color-surface);
color: var(--color-text);
font-weight: 600;
font-size: 14px;
border: 1px solid var(--color-border);
transition: all .15s ease;
}
.categories__item:hover {
border-color: var(--color-accent);
}
.categories__item--active {
background: var(--color-accent);
color: #07121a;
border-color: var(--color-accent);
}
.main {
max-width: var(--maxw);
margin: 0 auto;
padding: 40px var(--space);
width: 100%;
min-width: 0;
}
.slots {
background: var(--color-bg-2);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 24px;
margin-bottom: 40px;
max-width: 100%;
min-width: 0;
overflow: hidden;
}
.slots__head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
gap: 12px;
min-width: 0;
}
.slots__title {
font-size: 22px;
display: flex;
align-items: center;
gap: 10px;
min-width: 0;
flex-shrink: 1;
}
.slots__more {
font-weight: 700;
font-size: 15px;
flex-shrink: 0;
white-space: nowrap;
}
.slots__grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 14px;
min-width: 0;
}
.slot {
position: relative;
border-radius: 10px;
overflow: hidden;
background: var(--color-surface);
aspect-ratio: 1 / 1.1;
display: block;
min-width: 0;
transition: transform .2s ease, box-shadow .2s ease;
}
.slot:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(47, 214, 230, .18);
}
.slot img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .25s ease;
}
.slot:hover img {
transform: scale(1.06);
}
.slot__actions {
position: absolute;
left: 0;
right: 0;
bottom: 0;
display: flex;
gap: 0;
transform: translateY(100%);
transition: transform .2s ease;
}
.slot:hover .slot__actions {
transform: translateY(0);
}
.slot__demo,
.slot__real {
flex: 1;
border: none;
font-weight: 700;
font-size: 12px;
text-align: center;
padding: 10px 6px;
cursor: pointer;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
transition: opacity .15s ease, transform .15s ease;
}
.slot__demo {
background: var(--color-surface);
color: var(--color-accent);
border-top: 1px solid var(--color-border);
}
.slot__demo:hover {
opacity: .9;
transform: scale(1.02);
}
.slot__real {
background: var(--color-accent-2);
color: #fff;
}
.slot__real:hover {
opacity: .92;
transform: scale(1.02);
}
.payments {
background: var(--color-bg-2);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 28px 24px;
margin-bottom: 40px;
max-width: 100%;
min-width: 0;
overflow: hidden;
}
.payments__title {
font-size: 20px;
margin-bottom: 20px;
text-align: center;
}
.payments__grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
align-items: center;
}
.payment {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: 8px;
padding: 8px 12px;
display: flex;
align-items: center;
justify-content: center;
}
.content {
background: var(--color-bg-2);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 32px 28px;
max-width: 100%;
min-width: 0;
overflow: hidden;
}
.content__block {
margin-bottom: 32px;
}
.content__h1 {
font-size: 28px;
font-weight: 800;
margin-bottom: 18px;
color: #fff;
line-height: 1.25;
}
.content__title {
font-size: 24px;
font-weight: 800;
margin-bottom: 14px;
color: #fff;
position: relative;
padding-left: 14px;
}
.content__title::before {
content: '';
position: absolute;
left: 0;
top: 6px;
bottom: 6px;
width: 4px;
border-radius: 2px;
background: var(--color-accent);
}
.content__block p {
margin-bottom: 12px;
color: #d4d7df;
overflow-wrap: anywhere;
word-break: break-word;
}
.content__list {
list-style: none;
margin: 0 0 14px 0;
padding: 0;
color: #d4d7df;
}
.content__list li {
margin-bottom: 10px;
padding-left: 28px;
position: relative;
}
.content__list li::before {
content: '';
position: absolute;
left: 0;
top: 0.45em;
width: 14px;
height: 14px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M7 1L12 7L7 13L2 7L7 1Z' fill='%232fd6e6'/%3E%3C/svg%3E");
background-size: contain;
background-repeat: no-repeat;
}
.content__olist {
list-style: none;
margin: 0 0 14px 0;
padding: 0;
counter-reset: content-ol;
color: #d4d7df;
}
.content__olist li {
margin-bottom: 12px;
padding-left: 44px;
position: relative;
counter-increment: content-ol;
}
.content__olist li::before {
content: counter(content-ol);
position: absolute;
left: 0;
top: 0;
width: 28px;
height: 28px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-accent), #1a9aaa);
color: #07121a;
font-weight: 800;
font-size: 13px;
display: flex;
align-items: center;
justify-content: center;
}
.content__table-wrap {
border-radius: 14px;
overflow-x: auto;
overflow-y: hidden;
margin: 16px 0;
max-width: 100%;
border: 1px solid rgba(47, 214, 230, .15);
background: rgba(16, 23, 42, .55);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
-webkit-overflow-scrolling: touch;
}
.content__table {
width: 100%;
border-collapse: collapse;
margin: 0;
font-size: 15px;
border: none;
}
.content__table caption {
text-align: left;
font-weight: 700;
padding: 14px 16px 0;
color: var(--color-accent);
}
.content__table th,
.content__table td {
border: none;
padding: 14px 16px;
text-align: left;
}
.content__table thead th {
background: linear-gradient(135deg, #1a9aaa, var(--color-accent));
color: #07121a;
font-weight: 800;
}
.content__table tbody tr:nth-child(even) {
background: rgba(22, 24, 33, .6);
}
.content__table tbody tr {
transition: background .2s ease, transform .2s ease;
}
.content__table tbody tr:hover {
background: rgba(47, 214, 230, .12);
}
.faq {
margin-top: 16px;
}
.faq__title {
font-size: 26px;
font-weight: 800;
margin-bottom: 20px;
}
.faq__item {
border: 1px solid var(--color-border);
border-radius: 10px;
margin-bottom: 12px;
overflow: hidden;
background: var(--color-surface);
}
.faq__q {
width: 100%;
text-align: left;
background: none;
border: none;
color: #fff;
font-size: 16px;
font-weight: 700;
padding: 16px 18px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
cursor: pointer;
}
.faq__icon {
flex-shrink: 0;
transition: transform .25s ease;
color: var(--color-accent);
}
.faq__item--open .faq__icon {
transform: rotate(180deg);
}
.faq__a {
max-height: 0;
overflow: hidden;
transition: max-height .3s ease;
}
.faq__a p {
padding: 0 18px 16px;
color: #d4d7df;
}
.footer {
background: var(--color-bg-2);
border-top: 1px solid var(--color-border);
margin-top: 40px;
}
.footer__inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 40px var(--space);
}
.footer__cols {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 28px;
}
.footer__title {
font-size: 18px;
font-weight: 700;
margin-bottom: 16px;
}
.modal {
display: none;
position: fixed;
inset: 0;
z-index: 100;
}
.modal.is-open {
display: block;
}
.modal__overlay {
position: absolute;
inset: 0;
background: rgba(5, 5, 7, .85);
}
.modal__dialog {
position: relative;
z-index: 1;
width: min(960px, calc(100% - 24px));
height: min(600px, calc(100vh - 48px));
margin: 24px auto;
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius);
overflow: hidden;
display: flex;
flex-direction: column;
}
.modal__close {
position: absolute;
top: 10px;
right: 10px;
z-index: 2;
width: 40px;
height: 40px;
border: none;
border-radius: 50%;
background: rgba(5, 5, 7, .7);
color: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background .15s ease, transform .15s ease;
}
.modal__close:hover {
background: var(--color-accent-2);
transform: scale(1.05);
}
.modal__iframe {
width: 100%;
height: 100%;
border: none;
flex: 1;
}
.footer__list {
list-style: none;
}
.footer__list li {
margin-bottom: 10px;
}
.footer__list a {
color: var(--color-text-muted);
font-size: 14px;
}
.footer__list a:hover {
color: var(--color-accent);
}
.footer__social {
display: flex;
gap: 12px;
margin-top: 18px;
}
.footer__social-link {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--color-surface);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-text);
border: 1px solid var(--color-border);
transition: all .15s ease;
}
.footer__social-link:hover {
background: var(--color-accent);
color: #07121a;
}
.footer__cta {
border-top: 1px solid var(--color-border);
margin-top: 32px;
padding-top: 24px;
font-size: 14px;
color: #d4d7df;
}
.footer__disclaimer {
display: flex;
align-items: center;
gap: 12px;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid var(--color-border);
font-size: 13px;
color: var(--color-text-muted);
min-width: 0;
}
.footer__disclaimer p {
min-width: 0;
flex: 1;
overflow-wrap: anywhere;
word-break: break-word;
}
.footer__age {
flex-shrink: 0;
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid var(--color-accent-2);
color: var(--color-accent-2);
font-weight: 800;
font-size: 12px;
display: flex;
align-items: center;
justify-content: center;
}
.sticky-cta {
display: none;
position: fixed;
left: 12px;
right: 12px;
bottom: 12px;
z-index: 80;
background: var(--color-accent-2);
color: #fff;
font-weight: 800;
text-align: center;
padding: 16px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,.5);
max-width: calc(100% - 24px);
box-sizing: border-box;
}
@media (max-width: 1024px) {
.slots__grid {
grid-template-columns: repeat(3, 1fr);
}
.footer__cols {
grid-template-columns: repeat(2, 1fr);
}
.hero__title {
font-size: 30px;
}
}
@media (max-width: 768px) {
.header__forgot {
display: none;
}
.header__burger {
display: block;
}
.header__logo {
font-size: 22px;
}
.nav {
display: none;
overflow: hidden;
}
.nav.is-open {
display: block;
}
.nav__list {
flex-direction: column;
align-items: stretch;
}
.nav__item {
border-bottom: 1px solid var(--color-border);
overflow: hidden;
}
.nav__badge {
right: auto;
left: 80px;
}
.categories {
top: 60px;
}
.slots {
padding: 16px;
}
.slots__grid {
grid-template-columns: repeat(2, 1fr);
}
.slot:hover {
transform: none;
box-shadow: none;
}
.slot:hover img {
transform: none;
}
.hero {
min-height: 360px;
}
.hero__title {
font-size: 26px;
overflow-wrap: anywhere;
word-break: break-word;
}
.content {
padding: 22px 16px;
}
.content__title {
font-size: 20px;
overflow-wrap: anywhere;
word-break: break-word;
}
.content__h1 {
font-size: 22px;
overflow-wrap: anywhere;
word-break: break-word;
}
.content__table-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.content__table th,
.content__table td {
white-space: normal;
word-break: break-word;
}
.sticky-cta {
display: block;
}
.main {
padding-bottom: 90px;
}
}
@media (max-width: 480px) {
.slots__grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.footer__cols {
grid-template-columns: 1fr;
}
.header__inner {
gap: 8px;
padding: 12px;
}
.header__actions {
gap: 8px;
}
.btn--signup,
.btn--login {
padding: 8px 12px;
font-size: 12px;
}
.header__lang {
font-size: 13px;
}
}