*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
body {
display: flex;
flex-direction: column;
min-height: 100dvh;
background-color: #101114;
margin: 0;
font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
p {
margin-top: 0;
margin-bottom: 16px;
}
img {
width: 100%;
height: auto;
}
a {
text-decoration: none;
color: inherit;
}
:root {
--br-yellow: #f6da24;
--br-green: rgb(3, 242, 149);
--br-bg-dark: #0f1113;
--br-text-grey: #919497;
}
.container {
max-width: 1240px;
width: 100%;
padding: 0 16px;
margin: 0 auto;
}
.hfeed.site {
display: flex;
flex-direction: column;
min-height: 100dvh;
}
.site-content {
flex: 1;
}
.content-area {
width: 100%;
}
.skip-link {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
}
.skip-link:focus {
position: fixed;
top: 0;
left: 0;
width: auto;
height: auto;
padding: 10px 20px;
background: #03f295;
color: #000;
z-index: 100000;
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.site-header {
position: sticky;
top: 0;
z-index: 1000;
background-color: #28292B;
width: 100%;
}
.main-header-bar {
padding: 12px 0;
}
.main-header-container {
display: flex;
align-items: center;
gap: 0;
padding: 0 20px 0 0;
width: 100%;
max-width: 100%;
}
.burger-btn {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
width: 58px;
min-width: 58px;
height: 36px;
background: none;
border: none;
cursor: pointer;
padding: 0;
flex-shrink: 0;
margin-right: 14px;
margin-left: 0;
}
.burger-btn span {
display: block;
width: 22px;
height: 2px;
background-color: #fff;
border-radius: 2px;
transition: all 0.3s ease;
}
.burger-btn.is-active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-active span:nth-child(2) {
opacity: 0;
}
.burger-btn.is-active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.site-branding {
flex-shrink: 0;
margin-right: 20px;
}
.site-logo-img {
display: flex;
align-items: center;
}
.site-logo-img img {
max-height: 36px;
width: auto;
}
.header-main-nav {
display: flex;
align-items: center;
}
.header-main-nav ul {
display: flex;
align-items: center;
gap: 28px;
list-style: none;
margin: 0;
padding: 0;
}
.header-main-nav ul li a {
color: #b0b0b0;
font-size: 15px;
font-weight: 500;
transition: color 0.2s;
white-space: nowrap;
}
.header-main-nav ul li a:hover {
color: #fff;
}
.header-actions {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
margin-left: auto;
}
.btn-registration {
display: inline-block;
padding: 9px 16px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
background-color: #3a3b3d;
color: #fff;
transition: background 0.2s;
white-space: nowrap;
}
.btn-registration:hover {
background-color: #4a4b4d;
}
.btn-play {
display: inline-block;
padding: 9px 16px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
background-color: #03f295;
color: #000;
transition: background 0.2s;
white-space: nowrap;
}
.btn-play:hover {
background-color: #00d97f;
}
.burger-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.15);
z-index: 998;
}
.burger-overlay.active {
display: block;
}
.burger-sidebar {
position: fixed;
top: 61px;
left: -320px;
width: 300px;
height: calc(100% - 61px);
background: #28292B;
z-index: 999;
overflow-y: auto;
overflow-x: hidden;
transition: left 0.3s ease;
}
.burger-sidebar.active {
left: 0;
}
.burger-sidebar-inner {
display: flex;
flex-direction: column;
padding: 10px 0 16px;
min-height: 100%;
gap: 0;
}
.burger-section {
padding: 8px 12px 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.burger-item--wide {
display: flex;
align-items: center;
gap: 12px;
background: #1e1f22;
border-radius: 10px;
padding: 12px 14px;
color: #fff;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: background 0.2s;
}
.burger-item--wide:hover {
background: #252628;
}
.burger-item-icon {
width: 34px;
height: 34px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
flex-shrink: 0;
}
.burger-item-icon--orange {
background: rgba(255, 140, 0, 0.2);
}
.burger-item-icon--red {
background: rgba(220, 50, 50, 0.2);
}
.burger-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px;
padding: 6px 12px 0;
}
.burger-grid-item {
display: flex;
align-items: center;
gap: 10px;
background: #1e1f22;
border-radius: 10px;
padding: 11px 12px;
color: #fff;
font-size: 13px;
font-weight: 500;
text-decoration: none;
transition: background 0.2s;
}
.burger-grid-item:hover {
background: #252628;
}
.burger-grid-icon {
width: 30px;
height: 30px;
border-radius: 7px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
flex-shrink: 0;
}
.burger-grid-icon--blue {
background: rgba(50, 100, 220, 0.25);
}
.burger-grid-icon--green {
background: rgba(30, 180, 80, 0.25);
}
.burger-grid-icon--orange {
background: rgba(255, 140, 0, 0.25);
}
.burger-grid-icon--yellow {
background: rgba(220, 180, 0, 0.25);
}
.burger-nav {
margin-top: 8px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
padding-top: 4px;
}
.burger-nav-item {
display: flex;
align-items: center;
gap: 14px;
padding: 13px 20px;
color: #c8cce0;
font-size: 14px;
text-decoration: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
transition: color 0.2s;
}
.burger-nav-item:hover {
color: #fff;
}
.burger-nav-icon {
font-size: 18px;
width: 22px;
text-align: center;
flex-shrink: 0;
}
.burger-nav-label {
flex: 1;
}
.burger-nav-arrow {
font-size: 10px;
color: #666;
}
.burger-footer {
margin-top: auto;
padding: 14px 12px 12px;
display: flex;
flex-direction: column;
gap: 7px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.burger-help-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
background: #03f295;
border-radius: 30px;
padding: 13px 20px;
color: #000;
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: background 0.2s;
}
.burger-help-btn:hover {
background: #00d97f;
}
.burger-help-icon {
font-size: 18px;
}
.burger-lang {
display: flex;
align-items: center;
gap: 8px;
background: #1e1f22;
border-radius: 10px;
padding: 12px 14px;
color: #fff;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}
.burger-lang-arrow {
font-size: 10px;
color: #888;
margin-left: auto;
}
.burger-app-bar {
display: flex;
align-items: center;
gap: 12px;
background: #1e1f22;
border-radius: 10px;
padding: 12px 14px;
color: #fff;
text-decoration: none;
transition: background 0.2s;
}
.burger-app-bar:hover {
background: #252628;
}
.burger-app-icon {
font-size: 28px;
flex-shrink: 0;
}
.burger-app-title {
font-size: 14px;
font-weight: 600;
color: #fff;
}
.burger-app-sub {
font-size: 12px;
color: #888;
margin-top: 2px;
}
.side-strip {
position: fixed;
left: 0;
top: 61px;
width: 58px;
height: calc(100vh - 61px);
background: #28292B;
z-index: 996;
display: flex;
flex-direction: column;
align-items: center;
padding: 12px 0;
gap: 2px;
transition: opacity 0.2s, transform 0.2s;
}
.side-strip.hidden {
opacity: 0;
pointer-events: none;
transform: translateX(-100%);
}
.side-strip-item {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border-radius: 10px;
color: #6b7080;
transition: color 0.2s, background 0.2s;
text-decoration: none;
position: relative;
flex-shrink: 0;
}
.side-strip-item:hover {
color: #fff;
background: rgba(255,255,255,0.07);
}
.side-strip-item--active {
color: #fff;
}
.side-strip-item--green {
color: #03f295;
}
.side-strip-item--green:hover {
color: #03f295;
background: rgba(3, 242, 149, 0.08);
}
.side-strip-divider {
width: 30px;
height: 1px;
background: rgba(255,255,255,0.08);
margin: 6px 0;
flex-shrink: 0;
}
.side-strip-item::after {
content: attr(title);
position: absolute;
left: 50px;
top: 50%;
transform: translateY(-50%);
background: #3a3b3d;
color: #fff;
font-size: 12px;
font-weight: 500;
font-family: 'Poppins', sans-serif;
padding: 5px 10px;
border-radius: 6px;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.15s;
box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.side-strip-item:hover::after {
opacity: 1;
}
.promo-section {
padding: 40px 0;
}
.promo-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 20px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 12px;
overflow: hidden;
position: relative;
}
.promo-grid::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
z-index: 1;
pointer-events: none;
}
.promo-card {
position: relative;
z-index: 2;
min-height: 400px;
}
.promo-card-content {
padding: 30px;
color: #fff;
height: 100%;
}
.promo-card-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 16px;
line-height: 1.2;
color: #fff;
}
.promo-card-description {
font-size: 14px;
line-height: 1.6;
margin-bottom: 24px;
color: rgba(255, 255, 255, 0.95);
}
.btn-claim {
background-color: #03f295;
color: #000;
padding: 14px 32px;
font-size: 16px;
font-weight: 600;
border-radius: 8px;
display: inline-block;
transition: background 0.2s;
border: none;
cursor: pointer;
text-decoration: none;
}
.btn-claim:hover {
background-color: #00d97f;
}
.btn-activate,
.btn-play-now {
background-color: #03f295;
color: #000;
padding: 12px 24px;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
display: inline-block;
transition: background 0.2s;
text-decoration: none;
}
.btn-activate:hover,
.btn-play-now:hover {
background-color: #00d97f;
}
.features-section {
padding-bottom: 40px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.feature-card {
background-color: #28292B;
border-radius: 12px;
padding: 10px 30px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
min-height: 120px;
}
.feature-card-title {
font-size: 24px;
font-weight: 700;
color: #fff;
line-height: 1.2;
}
.feature-card-subtitle {
font-size: 14px;
color: #b0b0b0;
margin: 8px 0 0;
}
.feature-card-icon-placeholder {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background-color: #3a3f44;
border-radius: 12px;
flex-shrink: 0;
}
.content-section {
margin-bottom: 60px;
}
.content-container {
padding: 40px;
color: #fff;
border-radius: 16px;
background: rgba(0, 0, 0, 0.6);
}
.entry-content h1 {
font-size: 36px;
font-weight: 700;
color: #fff;
margin: 20px 0 30px;
line-height: 1.3;
}
.entry-content h2 {
font-size: 32px;
font-weight: 700;
color: #fff;
margin: 40px 0 20px;
line-height: 1.3;
}
.entry-content h3 {
font-size: 20px;
font-weight: 600;
color: #fff;
margin: 30px 0 16px;
}
.entry-content p {
font-size: 16px;
line-height: 1.8;
color: #e0e0e0;
margin-bottom: 20px;
}
.entry-content p strong {
color: #fff;
}
.entry-content ul,
.entry-content ol {
margin: 20px 0;
padding-left: 25px;
color: #e0e0e0;
}
.entry-content li {
font-size: 16px;
line-height: 1.8;
margin-bottom: 12px;
}
.entry-content ol {
list-style-type: decimal;
}
.entry-content table {
width: 100%;
border-collapse: collapse;
background-color: #28292B;
border-radius: 8px;
overflow: hidden;
margin: 30px 0;
}
.entry-content thead {
background-color: #03f295;
}
.entry-content thead th {
padding: 16px;
text-align: left;
font-weight: 600;
color: #000;
font-size: 14px;
}
.entry-content tbody tr {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.entry-content tbody tr:last-child {
border-bottom: none;
}
.entry-content tbody td {
padding: 16px;
color: #fff;
font-size: 14px;
}
.faq-list {
margin-top: 30px;
}
.faq-item {
background-color: #03f295;
border-radius: 8px;
margin-bottom: 12px;
overflow: hidden;
}
.faq-item-question {
width: 100%;
padding: 20px;
background-color: #28292B;
border: none;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
text-align: left;
color: #fff;
font-size: 16px;
font-weight: 500;
font-family: inherit;
transition: background 0.2s;
}
.faq-item-question:hover {
background-color: #1d1d1d;
}
.faq-item-question-text {
flex: 1;
}
.faq-item-icon {
margin-left: 16px;
transition: transform 0.3s ease;
font-size: 12px;
background-color: #060e2a;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.faq-item--active .faq-item-icon {
transform: rotate(180deg);
}
.faq-item-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 20px;
}
.faq-item-answer p {
padding: 20px 0;
margin: 0;
color: #000;
font-size: 16px;
line-height: 1.8;
}
.faq-item--active .faq-item-answer {
max-height: 500px;
}
.updated-section {
margin-top: 20px;
background-color: #505050;
border-radius: 12px;
padding: 16px 24px;
}
.updated-section-text {
margin: 0;
font-size: 14px;
color: #fff;
}
.br-banner-section {
margin-top: 90px;
padding: 0 20px;
display: flex;
justify-content: center;
overflow: visible;
}
.br-banner-wrap {
position: relative;
width: 100%;
max-width: 1400px;
min-height: 420px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 40px 40px 0 0;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: none;
padding: 40px 20px;
overflow: visible;
}
.br-banner-character {
position: absolute;
bottom: 0px;
height: 450px;
width: auto;
z-index: 10;
pointer-events: none;
image-rendering: crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: high-quality;
filter: blur(0.3px) contrast(1.15) brightness(1.03) saturate(1.1);
transform: scale(1.01);
}
.br-banner-character--left {
left: -50px;
}
.br-banner-character--right {
right: -50px;
}
.br-banner-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
z-index: 20;
text-transform: uppercase;
gap: 8px;
}
.br-banner-welcome-label {
font-size: 20px;
font-weight: 700;
font-style: italic;
letter-spacing: 5px;
margin: 0;
color: #ffffff;
}
.br-banner-main-amount {
font-size: 88px;
font-weight: 900;
font-style: italic;
color: var(--br-yellow);
line-height: 1;
margin: 8px 0;
letter-spacing: 2px;
}
.br-banner-sub-promo {
font-size: 28px;
font-weight: 800;
color: var(--br-yellow);
margin: 0 0 20px 0;
}
.br-btn-register {
display: inline-flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--br-green);
color: rgb(16, 17, 20);
border: none;
cursor: pointer;
width: 260px;
height: 68px;
border-radius: 1000px;
font-family: "Work Sans", sans-serif;
font-weight: 600;
text-decoration: none;
outline: none;
transform: scale(1);
animation: banner-button-pulse 1.9s ease infinite;
}
.br-btn-register:hover {
background-color: #5effb0;
transform: scale(1.14658);
animation: none;
box-shadow: 0 0 20px rgba(3, 242, 149, 0.8);
}
.br-btn-register__main {
font-size: 19px;
font-weight: 900;
font-style: italic;
text-transform: uppercase;
line-height: 1;
}
.br-btn-register__sub {
font-size: 11px;
font-weight: 600;
font-style: italic;
text-transform: lowercase;
line-height: 14px;
margin-top: 5px;
}
@keyframes banner-button-pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.14658);
}
100% {
transform: scale(1);
}
}
.br-cashback {
display: flex;
align-items: center;
justify-content: center;
gap: 18px;
margin-top: 10px;
margin-bottom: 10px;
font-family: "Work Sans", sans-serif;
position: relative;
z-index: 15;
}
.br-cashback__crown {
width: 32px;
height: 32px;
}
.br-cashback__info {
text-align: center;
}
.br-cashback__title {
display: block;
font-size: 11px;
font-weight: 600;
color: var(--br-text-grey);
}
.br-cashback__value {
display: block;
font-size: 18px;
font-weight: 800;
color: #ffffff;
margin: 0;
}
.br-payments {
width: 100%;
max-width: 1170px;
height: 100px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
overflow-x: auto;
overflow-y: hidden;
scrollbar-width: none;
}
.br-payments::-webkit-scrollbar {
display: none;
}
.br-payments__track {
display: flex;
align-items: center;
gap: 50px;
padding: 0 20px;
}
.br-payments__icon {
height: 35px;
width: auto;
opacity: 0.85;
transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
flex-shrink: 0;
}
.br-payments__icon:hover {
opacity: 1;
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
transform: scale(1.1);
}
.br-content-section {
padding: 40px 20px;
}
.br-content-container {
max-width: 1170px;
margin: 0 auto;
}
.br-updated-section {
padding: 20px;
}
.br-updated-container {
max-width: 1170px;
margin: 0 auto;
}
.br-updated-text {
color: var(--br-text-grey);
font-size: 13px;
}
.br-about-info {
display: flex;
align-items: stretch;
justify-content: space-between;
max-width: 1400px;
min-width: 320px;
margin: 0 auto 40px;
padding: 40px 16px;
overflow-x: auto;
scrollbar-width: none;
gap: 24px;
}
.br-about-info::-webkit-scrollbar {
display: none;
}
.br-about-info__item {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(40, 41, 43);
border-radius: 16px;
padding: 0;
min-width: 200px;
flex: 0 0 auto;
width: calc(20% - 20px);
box-sizing: border-box;
overflow: hidden;
aspect-ratio: 1 / 1;
}
.br-about-info__item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.br-about-info__text {
position: absolute;
top: 0;
left: 0;
font-family: "Work Sans", Verdana, sans-serif;
font-weight: 600;
font-size: 16px;
font-style: italic;
color: rgb(248, 225, 80);
text-align: left;
padding: 16px 0 0 20px;
margin: 0;
z-index: 2;
white-space: nowrap;
}
.br-support {
display: flex;
align-items: stretch;
justify-content: space-between;
max-width: 1400px;
min-width: 320px;
margin: 0 auto 40px;
padding: 0 16px;
gap: 24px;
}
.br-support__item {
background-color: rgb(40, 41, 43);
border-radius: 16px;
padding: 24px;
flex: 1;
display: flex;
flex-direction: column;
gap: 12px;
}
.br-support__header {
display: flex;
align-items: center;
gap: 12px;
}
.br-support__header img {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.br-support__title {
font-family: "Work Sans", Verdana, sans-serif;
font-weight: 700;
font-size: 18px;
color: #ffffff;
}
.br-support__desc {
font-family: "Work Sans", Verdana, sans-serif;
font-weight: 400;
font-size: 14px;
color: rgb(239, 239, 242);
margin: 0;
}
.site-footer {
background-color: #28292B;
padding: 60px 0 40px;
color: #fff;
margin-top: 60px;
}
.site-footer__inner {
max-width: 1240px;
width: 100%;
padding: 0 20px;
margin: 0 auto;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1.5fr 2fr;
gap: 40px;
}
.footer-left {
display: flex;
flex-direction: column;
gap: 20px;
}
.footer-logo img {
width: auto;
height: auto;
display: block;
max-height: 40px;
}
.footer-description {
font-size: 14px;
line-height: 1.6;
color: #b0b0b0;
margin: 0;
}
.footer-nav {
display: flex;
flex-direction: column;
gap: 12px;
}
.menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.menu-item a {
font-size: 14px;
color: #b0b0b0;
transition: color 0.2s;
}
.menu-item a:hover {
color: #fff;
}
.footer-right {
display: flex;
flex-direction: column;
}
.footer-responsibility {
display: flex;
flex-direction: column;
gap: 20px;
}
.footer-responsibility-title {
font-size: 20px;
font-weight: 700;
color: #fff;
margin: 0;
}
.footer-responsibility-placeholder {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.footer-responsibility-placeholder span {
padding: 8px 16px;
background: rgba(255, 255, 255, 0.1);
border-radius: 6px;
font-size: 14px;
color: #b0b0b0;
}
.widget-title {
font-size: 20px;
font-weight: 700;
color: #fff;
margin: 0 0 20px;
}
.footer-bottom {
margin-top: 20px;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
padding-top: 40px;
}
.footer-payment {
display: flex;
flex-direction: column;
gap: 20px;
width: 28%;
}
.footer-payment-title {
font-size: 20px;
font-weight: 700;
color: #fff;
margin: 0;
}
.footer-payment-placeholder {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.footer-payment-placeholder span {
padding: 8px 16px;
background: rgba(255, 255, 255, 0.1);
border-radius: 6px;
font-size: 12px;
color: #b0b0b0;
}
.footer-download {
display: flex;
align-items: center;
gap: 24px;
width: 70%;
}
.footer-download-title {
font-size: 24px;
font-weight: 700;
color: #fff;
margin: 0;
white-space: nowrap;
}
.footer-download-buttons {
display: flex;
gap: 16px;
width: 100%;
}
.footer-download-btn {
flex: 1;
background-color: #03f295;
border-radius: 8px;
padding: 10px 24px;
display: flex;
flex-direction: column;
justify-content: center;
transition: background 0.2s;
text-decoration: none;
}
.footer-download-btn:hover {
background-color: #00d97f;
}
.footer-download-btn-text {
font-size: 16px;
font-weight: 700;
color: #fff;
margin-bottom: 4px;
}
.footer-download-btn-subtext {
font-size: 12px;
color: #fff;
opacity: 0.9;
}
.footer-copyright {
margin-top: 40px;
padding-top: 30px;
border-top: none;
text-align: left;
}
.footer-copyright-text {
font-size: 14px;
color: #b0b0b0;
margin: 0 0 12px 0;
line-height: 1.6;
}
.footer-top-row {
display: flex;
align-items: flex-start;
gap: 24px;
margin-bottom: 32px;
}
.footer-brand {
display: flex;
flex-direction: column;
gap: 20px;
flex-shrink: 0;
min-width: 140px;
}
.footer-brand .footer-logo {
display: flex;
}
.footer-brand .footer-logo img {
height: 32px;
max-height: 32px;
width: auto;
display: block;
}
.footer-lang-btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 8px;
padding: 6px 12px;
color: rgb(239, 239, 242);
font-family: "Work Sans", Verdana, sans-serif;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: border-color 0.2s;
width: fit-content;
}
.footer-lang-btn:hover {
border-color: rgba(255, 255, 255, 0.3);
}
.footer-lang-btn__icon {
width: 16px;
height: 16px;
flex-shrink: 0;
}
.footer-nav--col1,
.footer-nav--col2 {
display: flex;
flex-direction: column;
gap: 12px;
flex-shrink: 0;
}
.footer-actions {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
flex-shrink: 0;
margin-left: auto;
}
.footer-app-button {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(255, 255, 255, 0.06);
border-radius: 10px;
padding: 10px 16px;
cursor: pointer;
transition: background 0.2s;
}
.footer-app-button:hover {
background: rgba(255, 255, 255, 0.1);
}
.footer-app-button__image {
width: 32px;
height: 32px;
flex-shrink: 0;
}
.footer-app-button__title {
font-size: 14px;
font-weight: 600;
color: #ffffff;
}
.footer-icons {
display: flex;
align-items: center;
gap: 12px;
}
.footer-icons img {
width: auto;
display: block;
}
.footer-copyright-text a {
color: rgb(3, 242, 149);
text-decoration: underline;
}
.footer-copyright-text a:hover {
color: #ffffff;
}
.footer-divider {
width: 100%;
height: 1px;
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.12) 15%,
rgba(255, 255, 255, 0.12) 85%,
rgba(255, 255, 255, 0) 100%
);
margin: 24px 0 20px 0;
}
.footer-actions--hidden {
visibility: hidden;
pointer-events: none;
}
.footer-bottom-row {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
}
.footer-bottom-row .footer-copyright {
flex: 1;
}
.footer-bottom-row .footer-actions--bottom {
flex-shrink: 0;
}
.footer-left .footer-description,
.footer-right .footer-responsibility,
.footer-payment,
.footer-download {
display: none;
}
.footer-left.widget-area {
display: none;
}
.footer-right.widget-area {
display: none;
}
@media (min-width: 769px) {
.container {
padding: 0 20px;
}
}
@media (max-width: 768px) {
.header-main-nav {
display: none;
}
.btn-registration {
display: none;
}
.main-header-container {
padding: 0 12px;
}
.side-strip {
display: none;
}
.promo-grid {
grid-template-columns: 1fr;
}
.promo-card--medium,
.promo-card--small {
min-height: 200px;
}
.promo-card--large .promo-card-title {
font-size: 26px;
}
.features-grid {
grid-template-columns: 1fr;
}
.feature-card {
padding: 10px 20px;
min-height: 100px;
}
.feature-card-title {
font-size: 20px;
}
.feature-card-icon-placeholder {
width: 60px;
height: 60px;
}
.content-container {
padding: 25px;
}
.content-section {
margin-bottom: 30px;
}
.entry-content h1 {
font-size: 24px;
}
.entry-content h2 {
font-size: 22px;
}
.entry-content p,
.entry-content li {
font-size: 14px;
}
.entry-content thead th,
.entry-content tbody td {
padding: 10px;
font-size: 12px;
}
.faq-item-question {
padding: 16px;
font-size: 14px;
}
.faq-item-icon {
width: 26px;
height: 26px;
}
.faq-item-answer {
padding: 0 16px;
}
.faq-item-answer p {
font-size: 14px;
}
.br-banner-section {
margin-top: 70px;
padding: 0 10px;
}
.br-banner-wrap {
min-height: 380px;
border-radius: 20px 20px 0 0;
padding: 20px 10px;
}
.br-banner-character {
display: none;
}
.br-banner-content {
width: 100%;
gap: 6px;
}
.br-banner-welcome-label {
font-size: 14px;
letter-spacing: 3px;
}
.br-banner-main-amount {
font-size: 42px;
margin: 4px 0;
}
.br-banner-sub-promo {
font-size: 14px;
margin-bottom: 12px;
}
.br-btn-register {
width: 220px;
height: 54px;
}
.br-btn-register__main {
font-size: 15px;
}
.br-btn-register__sub {
font-size: 9px;
}
.br-cashback {
margin-top: 20px;
margin-bottom: 15px;
gap: 10px;
}
.br-cashback__crown {
width: 22px;
height: 22px;
}
.br-cashback__title {
font-size: 10px;
}
.br-cashback__value {
font-size: 15px;
}
.br-payments {
height: 65px;
}
.br-payments__track {
gap: 20px;
}
.br-payments__icon {
height: 24px;
}
.br-about-info__item {
width: 70%;
min-width: 180px;
aspect-ratio: auto;
height: 200px;
}
.br-about-info__text {
font-size: 14px;
padding: 12px 0 0 16px;
}
.br-support__item {
padding: 20px;
}
.site-footer {
padding: 40px 0 30px;
margin-top: 30px;
}
.footer-copyright-text {
font-size: 12px;
}
.footer-top-row {
flex-direction: column;
gap: 20px;
align-items: flex-start;
}
.footer-actions {
flex-direction: row;
align-items: center;
margin-left: 0;
}
.footer-brand {
flex-direction: column;
gap: 20px;
}
.footer-divider {
margin: 20px 0 16px 0;
}
.footer-bottom {
flex-direction: column;
gap: 30px;
}
.footer-payment {
width: 100%;
}
.footer-download {
flex-direction: column;
width: 100%;
}
.footer-download-title {
white-space: normal;
}
.footer-download-buttons {
flex-direction: column;
}
}
@media (max-width: 992px) {
.promo-grid {
grid-template-columns: 1fr;
}
.features-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.br-banner-wrap {
max-width: 100%;
border-radius: 30px 30px 0 0;
}
.br-banner-character {
height: 400px;
bottom: -20px;
}
.br-banner-character--left {
left: -40px;
}
.br-banner-character--right {
right: -40px;
}
.br-banner-main-amount {
font-size: 76px;
}
.br-banner-sub-promo {
font-size: 26px;
}
.br-banner-wrap {
min-height: 380px;
padding: 20px 15px;
}
.br-banner-character {
height: 280px;
bottom: 0px;
}
.br-banner-character--left {
left: -30px;
}
.br-banner-character--right {
right: -30px;
}
.br-banner-main-amount {
font-size: 56px;
}
.br-banner-sub-promo {
font-size: 20px;
margin-bottom: 15px;
}
.br-banner-welcome-label {
font-size: 16px;
letter-spacing: 3px;
}
.br-about-info {
justify-content: flex-start;
}
.br-about-info__item {
width: calc(50% - 12px);
}
.br-support {
flex-direction: column;
}
}
@media (max-width: 576px) {
.br-banner-section {
margin-top: 60px;
padding: 0 8px;
}
.br-banner-wrap {
min-height: 340px;
border-radius: 16px 16px 0 0;
padding: 15px 8px;
}
.br-banner-content {
gap: 4px;
}
.br-banner-welcome-label {
font-size: 12px;
letter-spacing: 2px;
}
.br-banner-main-amount {
font-size: 34px;
margin: 2px 0;
}
.br-banner-sub-promo {
font-size: 12px;
margin-bottom: 10px;
}
.br-btn-register {
width: 190px;
height: 48px;
}
.br-btn-register__main {
font-size: 13px;
}
.br-btn-register__sub {
font-size: 8px;
}
.br-cashback {
margin-top: 15px;
margin-bottom: 10px;
gap: 8px;
}
.br-cashback__crown {
width: 18px;
height: 18px;
}
.br-cashback__title {
font-size: 9px;
}
.br-cashback__value {
font-size: 13px;
}
.br-payments {
height: 55px;
}
.br-payments__track {
gap: 15px;
}
.br-payments__icon {
height: 20px;
}
}
@media (max-width: 400px) {
.br-banner-wrap {
min-height: 300px;
}
.br-banner-welcome-label {
font-size: 10px;
letter-spacing: 1px;
}
.br-banner-main-amount {
font-size: 28px;
}
.br-banner-sub-promo {
font-size: 10px;
}
.br-btn-register {
width: 170px;
height: 44px;
}
.br-btn-register__main {
font-size: 12px;
}
.br-btn-register__sub {
font-size: 7px;
}
.br-cashback {
gap: 6px;
}
.br-cashback__crown {
width: 16px;
height: 16px;
}
.br-cashback__value {
font-size: 12px;
}
.br-payments__track {
gap: 12px;
}
.br-payments__icon {
height: 18px;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}
}
@media (max-width: 1400px) {
.br-banner-wrap {
max-width: 100%;
border-radius: 30px 30px 0 0;
}
}
@media (max-width: 1200px) {
.br-banner-character {
height: 400px;
bottom: -20px;
}
.br-banner-character--left {
left: -40px;
}
.br-banner-character--right {
right: -40px;
}
.br-banner-main-amount {
font-size: 76px;
}
.br-banner-sub-promo {
font-size: 26px;
}
}
.wp-block-table td {
background: #2a2a2a;
color: #eee;
border-color: #444;
}
.wp-block-table tr:nth-child(even) td,
.wp-block-table tr:nth-child(odd) td {
background: #2a2a2a;
}