:root {
--bg: #0a0f1d;
--bg2: #0e1526;
--panel: #131c31;
--panel2: #18223a;
--line: #1f2c49;
--txt: #eef2f9;
--mut: #93a0ba;
--y: #ffc400;
--y2: #ff9d00;
--or: #ff6a00;
--red: #ff3d00;
--hh: 64px;
--rad: 12px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--bg);
color: var(--txt);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
img {
max-width: 100%;
display: block;
}
.svg-defs {
position: absolute;
width: 0;
height: 0;
overflow: hidden;
}
.wrap {
max-width: 1320px;
margin: 0 auto;
padding: 0 20px;
}
[data-go] {
cursor: pointer;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .04em;
border-radius: 8px;
padding: 11px 26px;
font-size: 14px;
transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
user-select: none;
white-space: nowrap;
}
.btn:active {
transform: translateY(1px) scale(.98);
}
.btn-y {
background: linear-gradient(180deg, var(--y), var(--y2));
color: #14100a;
box-shadow: 0 4px 18px rgba(255, 170, 0, .35);
}
.btn-y:hover {
box-shadow: 0 6px 24px rgba(255, 170, 0, .55);
transform: translateY(-1px);
}
.btn-o {
background: transparent;
color: var(--txt);
border: 1px solid #33415f;
}
.btn-o:hover {
border-color: var(--y);
color: var(--y);
}
.btn-lg {
padding: 16px 44px;
font-size: 16px;
border-radius: 10px;
}
.site {
position: sticky;
top: 0;
z-index: 60;
background: var(--bg2);
border-bottom: 1px solid var(--line);
height: var(--hh);
}
.site-in {
display: flex;
align-items: center;
gap: 24px;
height: var(--hh);
}
.logo {
display: inline-flex;
align-items: center;
gap: 9px;
flex-shrink: 0;
}
.ic-flame {
width: 30px;
height: 30px;
filter: drop-shadow(0 0 8px rgba(255, 120, 0, .6));
}
.logo-txt {
font-size: 21px;
font-weight: 900;
letter-spacing: .06em;
color: var(--txt);
}
.logo-txt b {
color: var(--y);
font-weight: 900;
}
.search {
flex: 1;
max-width: 460px;
display: flex;
align-items: center;
gap: 10px;
background: var(--panel);
border: 1px solid var(--line);
border-radius: 10px;
padding: 0 14px;
height: 42px;
color: var(--mut);
transition: border-color .15s ease;
}
.search:focus-within {
border-color: var(--y);
}
.search svg {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.search input {
flex: 1;
background: none;
border: 0;
outline: 0;
color: var(--txt);
font-size: 14px;
font-family: inherit;
}
.search input::placeholder {
color: var(--mut);
}
.auth {
display: flex;
gap: 12px;
margin-left: auto;
flex-shrink: 0;
}
.iconbar {
background: var(--bg2);
border-bottom: 1px solid var(--line);
}
.iconbar-in {
display: flex;
gap: 6px;
overflow-x: auto;
scrollbar-width: none;
padding-top: 10px;
padding-bottom: 10px;
}
.iconbar-in::-webkit-scrollbar {
display: none;
}
.ib-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
min-width: 86px;
padding: 8px 10px;
border-radius: 10px;
color: var(--mut);
font-size: 12px;
font-weight: 700;
letter-spacing: .02em;
transition: background .15s ease, color .15s ease;
}
.ib-item svg {
width: 24px;
height: 24px;
}
.ib-item:hover {
background: var(--panel);
color: var(--txt);
}
.hero {
background: var(--bg);
}
.hero-in {
position: relative;
width: 100%;
aspect-ratio: 1600 / 500;
overflow: hidden;
}
.hero-in img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ticker {
display: flex;
align-items: stretch;
background: linear-gradient(90deg, var(--y), var(--y2));
color: #14100a;
min-height: 52px;
}
.ticker-jack {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 22px;
flex-shrink: 0;
border-right: 2px solid rgba(20, 16, 10, .25);
}
.ticker-jack svg {
width: 24px;
height: 24px;
}
.ticker-label {
font-weight: 900;
text-transform: uppercase;
font-size: 13px;
letter-spacing: .08em;
}
.ticker-sum {
font-weight: 900;
font-size: 20px;
letter-spacing: .02em;
font-variant-numeric: tabular-nums;
}
.ticker-win {
flex: 1;
overflow: hidden;
display: flex;
align-items: center;
mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.win-track {
display: flex;
gap: 48px;
white-space: nowrap;
width: max-content;
animation: slide 32s linear infinite;
padding-left: 24px;
}
.ticker-win:hover .win-track {
animation-play-state: paused;
}
@keyframes slide {
to {
transform: translateX(-50%);
}
}
.win-item {
font-size: 13px;
font-weight: 600;
}
.win-item i {
font-style: normal;
font-weight: 900;
}
.cats {
position: sticky;
top: var(--hh);
z-index: 55;
background: var(--bg2);
border-bottom: 1px solid var(--line);
}
.cats-in {
display: flex;
align-items: center;
gap: 4px;
overflow-x: auto;
scrollbar-width: none;
}
.cats-in::-webkit-scrollbar {
display: none;
}
.cat {
display: flex;
align-items: center;
gap: 8px;
padding: 14px 14px;
color: var(--mut);
font-size: 13px;
font-weight: 700;
white-space: nowrap;
border-bottom: 3px solid transparent;
transition: color .15s ease, border-color .15s ease;
}
.cat svg {
width: 18px;
height: 18px;
}
.cat:hover {
color: var(--txt);
}
.cat.act {
color: var(--y);
border-bottom-color: var(--y);
}
.cat-side {
margin-left: auto;
display: flex;
align-items: center;
gap: 10px;
padding-left: 14px;
flex-shrink: 0;
}
.prov {
display: flex;
align-items: center;
gap: 8px;
background: var(--panel);
border: 1px solid var(--line);
border-radius: 8px;
padding: 8px 14px;
font-size: 13px;
font-weight: 700;
color: var(--txt);
white-space: nowrap;
}
.prov svg {
width: 16px;
height: 16px;
color: var(--mut);
}
.prov:hover {
border-color: var(--y);
}
.cat-search {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 8px;
background: var(--panel);
border: 1px solid var(--line);
color: var(--mut);
}
.cat-search svg {
width: 17px;
height: 17px;
}
.cat-search:hover {
color: var(--y);
border-color: var(--y);
}
.rail {
padding: 34px 0 6px;
}
.rail-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
gap: 16px;
}
.rail-title {
display: flex;
align-items: center;
gap: 10px;
font-size: 21px;
font-weight: 900;
letter-spacing: .02em;
}
.rail-title svg {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.rail-nav {
display: flex;
gap: 8px;
}
.rail-btn {
width: 38px;
height: 38px;
border-radius: 50%;
background: var(--panel);
border: 1px solid var(--line);
display: flex;
align-items: center;
justify-content: center;
color: var(--txt);
cursor: pointer;
transition: border-color .15s ease, color .15s ease;
}
.rail-btn svg {
width: 20px;
height: 20px;
}
.rail-btn:hover {
border-color: var(--y);
color: var(--y);
}
.rail-all {
font-size: 13px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .05em;
color: var(--y);
padding: 9px 18px;
border: 1px solid rgba(255, 196, 0, .4);
border-radius: 8px;
transition: background .15s ease;
}
.rail-all:hover {
background: rgba(255, 196, 0, .12);
}
.rail-track {
display: grid;
grid-auto-flow: column;
grid-auto-columns: calc((100% - 5 * 14px) / 6);
gap: 14px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scrollbar-width: none;
padding-bottom: 8px;
}
.rail-track::-webkit-scrollbar {
display: none;
}
.rail-track > * {
scroll-snap-align: start;
}
.tile {
position: relative;
aspect-ratio: 3 / 4;
border-radius: var(--rad);
overflow: hidden;
border: 1px solid var(--line);
transition: transform .2s ease, box-shadow .2s ease;
}
.tile::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .22), transparent 55%);
}
.tile::after {
content: "";
position: absolute;
inset: 0;
background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 14px);
}
.tile:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
z-index: 2;
}
.t01 { background: linear-gradient(160deg, #ff9d00, #c22e00 70%); }
.t02 { background: linear-gradient(160deg, #7b2ff7, #2f0b63 70%); }
.t03 { background: linear-gradient(160deg, #00b4ff, #003b8f 70%); }
.t04 { background: linear-gradient(160deg, #ff512f, #a1124f 70%); }
.t05 { background: linear-gradient(160deg, #12b76a, #0b3d36 70%); }
.t06 { background: linear-gradient(160deg, #f7b733, #8a2c02 70%); }
.t07 { background: linear-gradient(160deg, #e0245e, #240b36 70%); }
.t08 { background: linear-gradient(160deg, #396afc, #1a2a6c 70%); }
.t09 { background: linear-gradient(160deg, #eb3349, #7a1f2b 70%); }
.t10 { background: linear-gradient(160deg, #aa076b, #61045f 70%); }
.t11 { background: linear-gradient(160deg, #0ba360, #1d5c3f 70%); }
.t12 { background: linear-gradient(160deg, #fc4a1a, #b36b00 70%); }
.tile-tag {
position: absolute;
top: 10px;
left: 10px;
z-index: 3;
font-size: 10px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: .06em;
padding: 4px 9px;
border-radius: 6px;
color: #14100a;
background: var(--y);
}
.tile-tag.live {
background: var(--red);
color: #fff;
}
.tile-tag.new {
background: #27e0a4;
color: #06231a;
}
.tile-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(.7);
z-index: 3;
opacity: 0;
background: linear-gradient(180deg, var(--y), var(--y2));
color: #14100a;
font-weight: 900;
text-transform: uppercase;
font-size: 13px;
letter-spacing: .06em;
padding: 12px 30px;
border-radius: 30px;
box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
transition: opacity .18s ease, transform .18s ease;
}
.tile:hover .tile-play,
.tile:focus-visible .tile-play {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.tile-info {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 2;
padding: 26px 12px 12px;
background: linear-gradient(180deg, transparent, rgba(5, 8, 16, .88) 60%);
display: flex;
flex-direction: column;
gap: 2px;
}
.tile-name {
font-size: 13px;
font-weight: 800;
line-height: 1.3;
}
.tile-prov {
font-size: 11px;
color: var(--mut);
font-weight: 600;
}
.cta {
padding: 40px 0 10px;
}
.cta-in {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
background: linear-gradient(120deg, #1a1030, #3a0e00 55%, #57200a);
border: 1px solid rgba(255, 157, 0, .35);
border-radius: 18px;
padding: 30px 36px;
box-shadow: 0 0 50px rgba(255, 109, 0, .15) inset, 0 14px 40px rgba(0, 0, 0, .4);
}
.cta-title {
font-size: 26px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: .03em;
background: linear-gradient(180deg, #ffe27a, var(--y2));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.cta-sub {
color: var(--mut);
font-weight: 600;
margin-top: 4px;
}
.crumbs {
padding: 26px 0 0;
}
.crumbs ol {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 8px;
font-size: 13px;
color: var(--mut);
}
.crumbs li {
display: flex;
align-items: center;
gap: 8px;
}
.crumbs li:not(:last-child)::after {
content: "›";
color: #43507a;
font-weight: 700;
}
.crumbs a {
color: var(--mut);
text-decoration: none;
transition: color .15s ease;
}
.crumbs a:hover {
color: var(--y);
}
.crumbs [aria-current] {
color: var(--txt);
font-weight: 700;
}
.seo {
padding: 30px 0 60px;
}
.seo > .wrap {
max-width: 980px;
}
.seo h1 {
font-size: clamp(26px, 4vw, 40px);
font-weight: 900;
line-height: 1.2;
letter-spacing: .01em;
margin: 10px 0 14px;
}
.seo h1 + p {
color: var(--mut);
font-size: 14px;
margin-bottom: 22px;
}
.seo h1 + p strong {
color: var(--txt);
}
.seo h2 {
font-size: clamp(22px, 3vw, 30px);
font-weight: 900;
line-height: 1.25;
margin: 46px 0 16px;
padding-left: 16px;
border-left: 4px solid var(--y);
scroll-margin-top: calc(var(--hh) + 70px);
}
.seo h3 {
font-size: clamp(18px, 2.4vw, 22px);
font-weight: 800;
margin: 30px 0 12px;
color: #ffd75e;
scroll-margin-top: calc(var(--hh) + 70px);
}
.seo h4 {
font-size: 17px;
font-weight: 800;
margin: 22px 0 8px;
color: var(--txt);
scroll-margin-top: calc(var(--hh) + 70px);
}
.seo p {
margin: 0 0 14px;
color: #c6cfdf;
}
.seo p strong,
.seo li strong,
.seo td strong {
color: var(--txt);
}
.seo a {
color: var(--y);
text-decoration: underline;
text-underline-offset: 3px;
}
.seo a:hover {
color: #ffd75e;
}
.seo ul,
.seo ol {
margin: 0 0 18px;
padding-left: 4px;
list-style: none;
}
.seo ul li,
.seo ol li {
position: relative;
padding-left: 28px;
margin-bottom: 10px;
color: #c6cfdf;
}
.seo ul li::before {
content: "";
position: absolute;
left: 4px;
top: 9px;
width: 9px;
height: 9px;
background: linear-gradient(135deg, var(--y), var(--or));
border-radius: 2px 60% 60% 60%;
transform: rotate(45deg);
}
.seo ol {
counter-reset: step;
}
.seo ol li {
counter-increment: step;
}
.seo ol li::before {
content: counter(step);
position: absolute;
left: 0;
top: 2px;
width: 20px;
height: 20px;
border-radius: 6px;
background: linear-gradient(135deg, var(--y), var(--y2));
color: #14100a;
font-size: 12px;
font-weight: 900;
display: flex;
align-items: center;
justify-content: center;
}
.seo table {
width: 100%;
table-layout: fixed;
border-collapse: separate;
border-spacing: 0;
margin: 18px 0 26px;
background: var(--panel);
border: 1px solid var(--line);
border-radius: 14px;
overflow: hidden;
}
.seo th,
.seo td {
padding: 13px 16px;
text-align: left;
vertical-align: top;
font-size: 14px;
line-height: 1.5;
overflow-wrap: anywhere;
word-break: break-word;
}
.seo thead th {
background: linear-gradient(135deg, var(--y), var(--y2));
color: #14100a;
font-weight: 900;
text-transform: uppercase;
font-size: 12px;
letter-spacing: .05em;
}
.seo tbody tr:nth-child(even) {
background: #0f1830;
}
.seo tbody tr:hover {
background: #16203c;
}
.seo tbody td {
border-top: 1px solid var(--line);
color: #c6cfdf;
}
.seo tbody td:first-child {
font-weight: 700;
color: var(--txt);
}
.foot {
background: var(--bg2);
border-top: 1px solid var(--line);
padding: 46px 0 34px;
margin-top: 20px;
}
.foot-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
gap: 36px;
padding-bottom: 34px;
border-bottom: 1px solid var(--line);
}
.foot-copy {
color: var(--mut);
font-size: 13px;
margin-top: 14px;
}
.foot-note {
color: var(--mut);
font-size: 12px;
line-height: 1.6;
margin-top: 10px;
}
.foot-title {
font-size: 14px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--txt);
margin-bottom: 14px;
}
.foot-link {
display: block;
color: var(--mut);
font-size: 14px;
padding: 5px 0;
transition: color .15s ease;
width: fit-content;
}
.foot-link:hover {
color: var(--y);
}
.foot-col .btn {
margin-top: 16px;
}
.foot-pay {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding: 26px 0;
border-bottom: 1px solid var(--line);
}
.pay {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 8px;
padding: 7px 14px;
font-size: 12px;
font-weight: 800;
letter-spacing: .03em;
color: #aeb9cf;
}
.foot-resp {
display: flex;
align-items: center;
gap: 18px;
padding-top: 26px;
flex-wrap: wrap;
}
.foot-resp p {
flex: 1;
min-width: 260px;
color: var(--mut);
font-size: 12px;
line-height: 1.6;
}
.age {
flex-shrink: 0;
width: 46px;
height: 46px;
border-radius: 50%;
border: 3px solid var(--red);
color: var(--red);
font-weight: 900;
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
}
.foot-badges {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.badge {
border: 1px solid var(--line);
border-radius: 8px;
padding: 8px 14px;
font-size: 11px;
font-weight: 800;
color: #aeb9cf;
text-transform: uppercase;
letter-spacing: .04em;
}
@media (max-width: 1100px) {
.rail-track {
grid-auto-columns: calc((100% - 3 * 14px) / 4);
}
}
@media (max-width: 900px) {
.rail-track {
grid-auto-columns: calc((100% - 2 * 12px) / 3);
gap: 12px;
}
.foot-grid {
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.search {
max-width: 320px;
}
}
@media (max-width: 720px) {
:root {
--hh: 56px;
}
.site-in {
gap: 12px;
}
.logo-txt {
font-size: 18px;
}
.ic-flame {
width: 26px;
height: 26px;
}
.search {
display: none;
}
.auth {
gap: 8px;
}
.btn {
padding: 9px 16px;
font-size: 12px;
}
.btn-lg {
padding: 14px 30px;
font-size: 14px;
}
.hero-in {
aspect-ratio: 1600 / 700;
}
.ticker {
flex-direction: column;
}
.ticker-jack {
border-right: 0;
border-bottom: 2px solid rgba(20, 16, 10, .25);
justify-content: center;
padding: 8px 14px;
}
.ticker-win {
min-height: 40px;
}
.rail-track {
grid-auto-columns: calc((100% - 11px) / 2.4);
}
.rail-title {
font-size: 18px;
}
.cta-in {
flex-direction: column;
text-align: center;
padding: 26px 20px;
}
.seo th,
.seo td {
padding: 10px 10px;
font-size: 13px;
}
.foot-grid {
grid-template-columns: 1fr;
gap: 24px;
}
.foot-resp {
justify-content: center;
text-align: center;
}
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
.win-track {
animation: none;
}
.tile,
.btn,
.tile-play {
transition: none;
}
}
