*, html {
font-family: 'Inter', 'Open Sans', sans-serif !important;
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root { --brand-purple: #5C0351; --brand-white: #FFFFFF;  --purple-darker: #3d0236; --purple-dark: #4a0343; --purple-light: #7a0462; --purple-lighter: #9d0580; --purple-accent: #c906a0;  --gold: #ffc947; --gold-hover: #f4a742;  --bg-dark: #1a0616; --bg-medium: #2d0a25; --bg-light: rgba(92, 3, 81, 0.15);  --text-white: #FFFFFF;
--text-gray: #d4d4d8;
--text-muted: #a1a1aa;
--text-dark: #18181b; --card-radius: 8px;
--button-radius: 6px;
--section-spacing: 40px;
--card-gap: 12px; --gradient-primary: linear-gradient(180deg, #1a0616 0%, #5C0351 50%, #1a0616 100%);
--gradient-purple: linear-gradient(135deg, #5C0351 0%, #7a0462 100%);
--gradient-gold: linear-gradient(135deg, #f4a742 0%, #ffc947 100%);
} body {
background: var(--gradient-primary) !important;
background-attachment: fixed;
color: var(--text-white);
line-height: 1.6;
min-height: 100vh;
}
.container {
margin: 0 auto;
max-width: 1400px;
padding: 0 20px;
width: 100%;
} h1, h2, h3, h4, h5, h6 {
color: var(--brand-white) !important;
font-weight: 700;
line-height: 1.3;
margin-bottom: 20px;
}
h1 { font-size: 42px; }
h2 { 
font-size: 28px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-top: 50px;
margin-bottom: 25px;
color: var(--gold) !important;
}
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p, .content__block p {
font-size: 16px;
color: var(--text-gray);
line-height: 1.7;
margin-bottom: 16px;
}
.content__block p,
.content__block,
.content__block div,
.content__block span,
.content__block li {
color: #000000 !important;
}
a {
color: var(--gold);
text-decoration: none;
transition: all 0.2s ease;
}
a:hover {
color: var(--gold-hover);
} header {
background: rgba(26, 6, 22, 0.95) !important;
backdrop-filter: blur(10px);
border-bottom: none;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(92, 3, 81, 0.4);
}
header::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, 
var(--gold) 0%, 
var(--gold-hover) 50%, 
var(--gold) 100%
);
box-shadow: 0 2px 15px rgba(255, 201, 71, 0.8),
0 0 25px rgba(255, 201, 71, 0.5);
animation: goldLineGlow 3s ease-in-out infinite;
}
@keyframes goldLineGlow {
0%, 100% {
box-shadow: 0 2px 15px rgba(255, 201, 71, 0.8),
0 0 25px rgba(255, 201, 71, 0.5);
}
50% {
box-shadow: 0 2px 20px rgba(255, 201, 71, 1),
0 0 35px rgba(255, 201, 71, 0.7);
}
}
.header__wrapper {
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 0;
gap: 30px;
min-height: 70px;
}
.header__logo {
height: 45px;
width: auto;
max-width: 180px;
filter: drop-shadow(0 0 8px rgba(255, 201, 71, 0.3));
} .header__menu-wrapper {
display: flex;
align-items: center;
flex: 1;
justify-content: center;
}
#header_menu {
display: flex;
flex-direction: row;
gap: 5px;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
flex-wrap: nowrap;
}
#header_menu > li {
position: relative;
padding: 0;
display: inline-block;
}
#header_menu li a,
#header_menu li .clickable-div {
color: var(--text-white);
padding: 10px 16px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
display: block;
text-decoration: none;
}
#header_menu li a:hover,
#header_menu li .clickable-div:hover {
background: rgba(92, 3, 81, 0.3);
color: var(--gold);
transform: translateY(-1px);
} #header_menu > li:first-child a,
#header_menu > li:first-child .clickable-div {
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
color: var(--text-dark);
font-weight: 700;
box-shadow: 
0 4px 15px rgba(255, 201, 71, 0.5),
0 2px 8px rgba(244, 167, 66, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
border: none;
}
#header_menu > li:first-child a::before,
#header_menu > li:first-child .clickable-div::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.6s ease;
pointer-events: none;
}
#header_menu > li:first-child a:hover,
#header_menu > li:first-child .clickable-div:hover {
background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
color: #000000;
transform: translateY(-2px);
box-shadow: 
0 6px 25px rgba(255, 201, 71, 0.7),
0 3px 12px rgba(244, 167, 66, 0.5),
0 0 20px rgba(255, 201, 71, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
#header_menu > li:first-child a:hover::before,
#header_menu > li:first-child .clickable-div:hover::before {
left: 100%;
}
#header_menu .menu-item-has-children > ul {
position: absolute;
top: 100%;
left: 0;
min-width: 240px;
background: linear-gradient(135deg, rgba(26, 6, 22, 0.98) 0%, rgba(61, 2, 54, 0.98) 100%);
border: 1px solid rgba(92, 3, 81, 0.5);
border-radius: 12px;
padding: 12px 8px;
box-shadow: 
0 12px 40px rgba(92, 3, 81, 0.6),
0 0 30px rgba(92, 3, 81, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 10px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px) scale(0.95);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
pointer-events: none;
z-index: 1000;
backdrop-filter: blur(10px);
}
#header_menu .menu-item-has-children > ul::before {
content: '';
position: absolute;
top: -6px;
left: 20px;
width: 12px;
height: 12px;
background: linear-gradient(135deg, rgba(26, 6, 22, 0.98) 0%, rgba(61, 2, 54, 0.98) 100%);
border-left: 1px solid rgba(92, 3, 81, 0.5);
border-top: 1px solid rgba(92, 3, 81, 0.5);
transform: rotate(45deg);
}
#header_menu .menu-item-has-children > ul li {
margin: 0;
padding: 0;
list-style: none;
}
#header_menu .menu-item-has-children > ul li a,
#header_menu .menu-item-has-children > ul li .clickable-div {
display: block;
padding: 12px 16px;
color: var(--text-white);
font-size: 14px;
font-weight: 500;
text-decoration: none;
border-radius: 8px;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
margin: 4px 0;
background: transparent;
}
#header_menu .menu-item-has-children > ul li a::before,
#header_menu .menu-item-has-children > ul li .clickable-div::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 0;
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
border-radius: 0 2px 2px 0;
transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#header_menu .menu-item-has-children > ul li a:hover,
#header_menu .menu-item-has-children > ul li .clickable-div:hover {
background: linear-gradient(90deg, rgba(92, 3, 81, 0.4) 0%, rgba(92, 3, 81, 0.2) 100%);
color: var(--gold);
transform: translateX(4px);
padding-left: 20px;
}
#header_menu .menu-item-has-children > ul li a:hover::before,
#header_menu .menu-item-has-children > ul li .clickable-div:hover::before {
height: 60%;
}
#header_menu .menu-item-has-children > ul.show,
#header_menu .menu-item-has-children:hover > ul {
display: flex;
flex-direction: column;
opacity: 1;
visibility: visible;
transform: translateY(0) scale(1);
pointer-events: all;
} .header__buttons {
display: flex;
gap: 10px;
align-items: center;
}
.header__btn {
padding: 13px 32px;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.8px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: none;
text-decoration: none;
display: inline-block;
white-space: nowrap;
box-shadow: none;
outline: none;
cursor: pointer;
}
.header__btn-first {
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
color: var(--text-dark);
box-shadow: 0 4px 20px rgba(255, 201, 71, 0.6), 
0 2px 8px rgba(244, 167, 66, 0.4);
border: none;
position: relative;
overflow: hidden;
}
.header__btn-first::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.6s ease;
}
.header__btn-first:hover::before {
left: 100%;
}
.header__btn-first:hover {
background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
color: #000000;
box-shadow: 0 6px 30px rgba(255, 201, 71, 0.8), 
0 3px 12px rgba(244, 167, 66, 0.6),
0 0 25px rgba(255, 201, 71, 0.4);
transform: translateY(-3px);
}
.header__btn-second {
background: transparent;
color: var(--gold);
border: 2px solid var(--gold);
position: relative;
overflow: hidden;
}
.header__btn-second::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--gradient-gold);
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}
.header__btn-second:hover {
color: var(--text-dark);
border-color: var(--gold);
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(255, 201, 71, 0.5);
}
.header__btn-second:hover::before {
opacity: 1;
} .menu__btn-open {
display: none;
cursor: pointer;
padding: 5px;
}
.menu__btn-open img {
width: 35px;
height: 35px;
filter: brightness(0) invert(1);
}
.mobile__menu {
display: none;
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
z-index: 9999;
transition: right 0.3s ease;
}
.mobile__menu.open {
right: 0;
}
.mobile__menu-backdrop {
position: absolute;
top: 0;
left: 0;
width: 25%;
height: 100%;
cursor: pointer;
}
.fixed__menu-all {
position: absolute;
right: 0;
top: 0;
width: 75%;
height: 100%;
background: var(--gradient-primary);
padding: 20px;
overflow-y: auto;
box-shadow: -5px 0 20px rgba(92, 3, 81, 0.6);
}
.menu__btn-close {
text-align: right;
margin-bottom: 20px;
cursor: pointer;
}
.menu__btn-close img {
width: 35px;
height: 35px;
filter: brightness(0) invert(1);
}
#header_menu_mobile {
list-style: none;
padding: 0;
margin: 0;
}
#header_menu_mobile li {
list-style: none;
list-style-type: none;
}
#header_menu_mobile ul {
list-style: none;
padding: 0;
margin: 0;
}
#header_menu_mobile ul li {
list-style: none;
list-style-type: none;
}
#header_menu_mobile li {
border-bottom: 1px solid rgba(92, 3, 81, 0.3);
}
#header_menu_mobile li a,
#header_menu_mobile li .clickable-div {
display: block;
padding: 15px 10px;
color: var(--text-white);
font-size: 15px;
font-weight: 500;
transition: all 0.2s ease;
}
#header_menu_mobile li a:hover,
#header_menu_mobile li .clickable-div:hover {
color: var(--gold);
padding-left: 15px;
} #header_menu_mobile > li:first-child a,
#header_menu_mobile > li:first-child .clickable-div {
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
color: var(--text-dark);
font-weight: 700;
box-shadow: 
0 4px 15px rgba(255, 201, 71, 0.5),
0 2px 8px rgba(244, 167, 66, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
border: none;
border-radius: 8px;
margin-bottom: 5px;
}
#header_menu_mobile > li:first-child a::before,
#header_menu_mobile > li:first-child .clickable-div::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.6s ease;
pointer-events: none;
}
#header_menu_mobile > li:first-child a:hover,
#header_menu_mobile > li:first-child .clickable-div:hover {
background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
color: #000000;
box-shadow: 
0 6px 25px rgba(255, 201, 71, 0.7),
0 3px 12px rgba(244, 167, 66, 0.5),
0 0 20px rgba(255, 201, 71, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.4);
padding-left: 10px;
}
#header_menu_mobile > li:first-child a:hover::before,
#header_menu_mobile > li:first-child .clickable-div:hover::before {
left: 100%;
} #main__section {
padding: 30px 0 60px;
min-height: 60vh;
}
.content__block {
background: #FFFFFF;
border-radius: var(--card-radius);
padding: 30px;
margin: 25px 0;
border: 1px solid rgba(92, 3, 81, 0.25);
box-shadow: 0 4px 15px rgba(92, 3, 81, 0.2);
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.content__block img {
border-radius: var(--card-radius);
margin: 16px 0;
} .content__block figure,
.content__block .wp-block-image,
.content__block div:has(img[src*="visa"]),
.content__block div:has(img[src*="mastercard"]),
.content__block div:has(img[src*="skrill"]),
.content__block div:has(img[src*="neteller"]),
.content__block div:has(img[src*="payment"]),
.content__block div:has(img[src*="Payment"]) {
margin: 0;
} .content__block p:has(img) + p:has(img),
.content__block figure + figure,
.content__block .wp-block-image + .wp-block-image {
display: inline-block;
margin: 0 8px;
} .content__block > div:has(> img),
.content__block > div:has(> figure),
.content__block > div:has(> .wp-block-image) {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 20px;
padding: 24px;
margin: 24px 0;
background: linear-gradient(135deg, rgba(26, 6, 22, 0.95), rgba(61, 2, 54, 0.9));
border-radius: 12px;
border: 1px solid rgba(92, 3, 81, 0.4);
box-shadow: 0 4px 20px rgba(92, 3, 81, 0.3), 0 0 30px rgba(92, 3, 81, 0.1);
width: 100%;
box-sizing: border-box;
} .payment-methods,
.payment-methods-block,
.content__block .payment-methods,
.content__block .wp-block-image:has(img[alt*="payment"]),
.content__block .wp-block-image:has(img[alt*="Payment"]),
.content__block .wp-block-image:has(img[alt*="visa"]),
.content__block .wp-block-image:has(img[alt*="mastercard"]) {
width: 100% !important;
max-width: 100% !important;
background: linear-gradient(135deg, rgba(26, 6, 22, 0.95), rgba(61, 2, 54, 0.9));
border-radius: 12px;
padding: 32px 24px;
margin: 30px 0;
border: 1px solid rgba(92, 3, 81, 0.4);
box-shadow: 0 4px 20px rgba(92, 3, 81, 0.3), 0 0 30px rgba(92, 3, 81, 0.1);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 24px;
box-sizing: border-box;
position: relative;
overflow: hidden;
}
.payment-methods::before,
.payment-methods-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(92, 3, 81, 0.1), transparent, rgba(255, 201, 71, 0.05));
pointer-events: none;
z-index: 0;
}
.payment-methods > *,
.payment-methods-block > * {
position: relative;
z-index: 1;
} .payment-methods img,
.payment-methods-block img,
.content__block .payment-methods img,
.content__block .payment-methods figure,
.content__block .wp-block-image:has(img[alt*="payment"]) img,
.content__block .wp-block-image:has(img[alt*="Payment"]) img {
max-height: 50px;
width: auto;
height: auto;
object-fit: contain;
filter: brightness(1.1) contrast(1.1);
opacity: 1;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
margin: 0 !important;
padding: 10px 14px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1);
display: inline-block;
}
.payment-methods img:hover,
.payment-methods-block img:hover,
.content__block .payment-methods img:hover,
.content__block .wp-block-image:has(img[alt*="payment"]) img:hover,
.content__block .wp-block-image:has(img[alt*="Payment"]) img:hover {
transform: translateY(-4px) scale(1.08);
filter: brightness(1.2) contrast(1.2);
opacity: 1;
box-shadow: 0 6px 20px rgba(255, 201, 71, 0.3), 0 0 15px rgba(255, 201, 71, 0.2);
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 201, 71, 0.3);
} .content__block .payment-logos,
.content__block .payment-methods-wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 20px;
padding: 24px;
margin: 24px 0;
background: #f9fafb;
border-radius: 12px;
border: 1px solid rgba(0, 0, 0, 0.06);
width: 100%;
}
.content__block .payment-logos img,
.content__block .payment-methods-wrapper img {
max-height: 50px;
width: auto;
height: auto;
object-fit: contain;
filter: grayscale(0%);
opacity: 1;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
margin: 0;
padding: 10px 14px;
border-radius: 8px;
background: #ffffff;
}
.content__block .payment-logos img:hover,
.content__block .payment-methods-wrapper img:hover {
transform: translateY(-4px) scale(1.08);
box-shadow: 0 6px 16px rgba(92, 3, 81, 0.15);
background: #ffffff;
}
.content__block h1,
.content__block h2,
.content__block h3,
.content__block h4,
.content__block h5,
.content__block h6 {
color: #000000 !important;
}
.content__block a {
color: var(--brand-purple) !important;
}
.content__block a:hover {
color: var(--purple-light) !important;
} .section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin: 50px 0 25px;
padding-bottom: 15px;
border-bottom: 2px solid rgba(92, 3, 81, 0.4);
}
.section-header h2 {
margin: 0;
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
color: var(--gold) !important;
}
.section-header a {
font-size: 14px;
color: var(--text-gray);
text-decoration: none;
transition: color 0.2s;
}
.section-header a:hover {
color: var(--gold);
} .custom__slots-block {
margin: 40px 0;
padding: 20px 0;
}
.custom__slots-wrapper {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 20px;
padding: 10px 0;
}
.custom__slots-single {
position: relative;
border-radius: 16px;
overflow: hidden;
background: linear-gradient(145deg, rgba(92, 3, 81, 0.25), rgba(26, 6, 22, 0.6));
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
border: 2px solid transparent;
box-shadow: 
0 4px 15px rgba(92, 3, 81, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-3px); }
}
.custom__slots-single::before {
content: '';
position: absolute;
inset: -2px;
border-radius: 16px;
padding: 2px;
background: linear-gradient(135deg, 
rgba(255, 201, 71, 0.4), 
rgba(92, 3, 81, 0.6),
rgba(255, 201, 71, 0.4));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
opacity: 0;
transition: opacity 0.4s ease;
z-index: -1;
}
.custom__slots-single:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 
0 15px 40px rgba(92, 3, 81, 0.6),
0 0 30px rgba(255, 201, 71, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
border-color: rgba(255, 201, 71, 0.5);
animation: none;
}
.custom__slots-single:hover::before {
opacity: 1;
}
.custom__slots-single__content {
position: relative;
overflow: hidden;
aspect-ratio: 1;
background: linear-gradient(135deg, rgba(26, 6, 22, 0.9), rgba(61, 2, 54, 0.7));
}
.custom__slots-img-wrapper {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.custom__slots-img-wrapper::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(92, 3, 81, 0.1) 0%,
transparent 50%,
rgba(255, 201, 71, 0.1) 100%
);
pointer-events: none;
}
.custom__slots-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
margin: 0;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
filter: brightness(0.95);
}
.custom__slots-single:hover .custom__slots-img-wrapper img {
transform: scale(1.15) rotate(2deg);
filter: brightness(1.1) saturate(1.2);
} .custom__slots-single__content::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: 
radial-gradient(circle at 50% 50%, 
rgba(92, 3, 81, 0.85) 0%, 
rgba(26, 6, 22, 0.9) 100%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}
.custom__slots-single:hover .custom__slots-single__content::after {
opacity: 1;
} .custom__slots-btn-block {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
z-index: 10;
opacity: 0;
transform: scale(0.8);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom__slots-single:hover .custom__slots-btn-block {
opacity: 1;
transform: scale(1);
}
.custom__slots-btn-block a {
padding: 10px 24px;
background: linear-gradient(135deg, #ffc947 0%, #f4a742 100%);
color: #18181b;
border-radius: 8px;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 
0 4px 15px rgba(255, 201, 71, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
}
.custom__slots-btn-block a::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.5s ease;
}
.custom__slots-btn-block a:hover::before {
left: 100%;
}
.custom__slots-btn-block a:hover {
transform: scale(1.08) translateY(-2px);
box-shadow: 
0 8px 25px rgba(255, 201, 71, 0.7),
inset 0 1px 0 rgba(255, 255, 255, 0.5);
background: linear-gradient(135deg, #f4a742 0%, #ffc947 100%);
}
.custom__slots-btn-block a:active {
transform: scale(1.02);
}
.custom__slots-btn-block a img {
width: 20px;
height: 20px;
margin: 0;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.slot__btn-first {
display: flex;
align-items: center;
justify-content: center;
width: 55px !important;
height: 55px !important;
border-radius: 50% !important;
padding: 0 !important;
background: linear-gradient(135deg, #ffc947 0%, #f4a742 100%) !important;
box-shadow: 
0 6px 20px rgba(255, 201, 71, 0.6),
inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
}
.slot__btn-first:hover {
box-shadow: 
0 8px 30px rgba(255, 201, 71, 0.8),
inset 0 2px 0 rgba(255, 255, 255, 0.5) !important;
}
.slot__btn-first img {
filter: brightness(0);
width: 26px !important;
height: 26px !important;
} .custom__slots-single__text {
padding: 12px 10px;
text-align: center;
background: linear-gradient(180deg, rgba(26, 6, 22, 0.98), rgba(92, 3, 81, 0.95));
position: relative;
z-index: 1;
border-top: 1px solid rgba(255, 201, 71, 0.2);
box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}
.custom__slots-single:hover .custom__slots-single__text {
background: linear-gradient(180deg, rgba(92, 3, 81, 0.98), rgba(61, 2, 54, 0.95));
border-top-color: rgba(255, 201, 71, 0.5);
box-shadow: 
inset 0 2px 8px rgba(0, 0, 0, 0.5),
0 0 15px rgba(255, 201, 71, 0.2);
}
.custom__slots-single__text .custom__slots-single__title,
div.custom__slots-single__title,
.custom__slots-single .custom__slots-single__text .custom__slots-single__title,
.custom__slots-single__title {
font-size: 14px !important;
font-weight: 900 !important;
color: #ffc947 !important;
margin-bottom: 4px;
line-height: 1.3;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
transition: all 0.3s ease;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
letter-spacing: 0.3px;
}
.custom__slots-single__text .custom__slots-single__subtitle,
div.custom__slots-single__subtitle,
.custom__slots-single .custom__slots-single__text .custom__slots-single__subtitle,
.custom__slots-single__subtitle {
font-size: 11px !important;
color: #f4a742 !important;
line-height: 1.3;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
transition: all 0.3s ease;
opacity: 1 !important;
font-weight: 600 !important;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.custom__slots-single:hover .custom__slots-single__text .custom__slots-single__title,
.custom__slots-single:hover div.custom__slots-single__title,
.custom__slots-single:hover .custom__slots-single__title {
color: #ffc947 !important;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
transform: scale(1.05);
}
.custom__slots-single:hover .custom__slots-single__text .custom__slots-single__subtitle,
.custom__slots-single:hover div.custom__slots-single__subtitle,
.custom__slots-single:hover .custom__slots-single__subtitle {
color: #ffc947 !important;
opacity: 1 !important;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
} body #main__section table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background: #ffffff;
border-radius: var(--card-radius);
overflow: hidden;
margin-bottom: 30px;
border: 1px solid rgba(0, 0, 0, 0.12);
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body #main__section th {
background: var(--gradient-gold);
color: var(--text-dark);
padding: 14px 12px;
text-align: center;
font-weight: 700;
font-size: 13px;
text-transform: uppercase;
}
body #main__section td {
padding: 14px 12px;
color: #18181b;
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
border-left: 1px solid rgba(0, 0, 0, 0.12);
border-right: 1px solid rgba(0, 0, 0, 0.12);
transition: background 0.2s ease;
font-size: 14px;
background: #ffffff;
}
body #main__section td:first-child {
border-left: none;
}
body #main__section td:last-child {
border-right: none;
}
body #main__section th {
border-left: 1px solid rgba(0, 0, 0, 0.12);
border-right: 1px solid rgba(0, 0, 0, 0.12);
}
body #main__section th:first-child {
border-left: none;
}
body #main__section th:last-child {
border-right: none;
}
body #main__section tr:hover td {
background: #f9fafb;
}
body #main__section tr:last-child td {
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
body #main__section tr:first-child td {
background: var(--gradient-gold);
color: var(--text-dark);
font-weight: 700;
text-align: center;
}
table .clickable-div {
color: #5C0351;
text-decoration: underline;
cursor: pointer;
transition: all 0.2s ease;
font-weight: 500;
}
table .clickable-div:hover {
color: var(--brand-purple);
text-decoration: none;
} .custom__table {
background: #ffffff;
border-radius: var(--card-radius);
overflow: hidden;
margin: 30px 0;
border: 1px solid rgba(0, 0, 0, 0.08);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.custom__table-heading {
background: var(--gradient-gold);
color: var(--text-dark);
padding: 18px;
text-align: center;
font-size: 22px;
font-weight: 700;
text-transform: uppercase;
}
.custom__table-header,
.custom__table-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
background: transparent;
}
.custom__table-row {
background: #ffffff;
transition: all 0.2s ease;
}
.custom__table-row:hover {
background: #f9fafb;
transform: none;
}
.custom__table-col {
padding: 14px 10px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #18181b;
font-size: 14px;
background: #ffffff;
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
border-left: 1px solid rgba(0, 0, 0, 0.12);
border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.custom__table-col:first-child {
border-left: none;
}
.custom__table-col:last-child {
border-right: none;
}
.custom__table-row:last-child .custom__table-col {
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.custom__table-row:last-child .custom__table-col {
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.custom__table img {
max-width: 70px;
max-height: 70px;
margin: 0;
border-radius: 6px;
}
.custom__table-btn {
background: var(--gradient-gold);
color: var(--text-dark);
padding: 8px 20px;
border-radius: 5px;
font-weight: 700;
text-decoration: none;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(255, 201, 71, 0.4);
font-size: 13px;
text-transform: uppercase;
}
.custom__table-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(255, 201, 71, 0.5);
} .review__wrapper {
background: rgba(92, 3, 81, 0.15);
border: 1px solid rgba(92, 3, 81, 0.3);
border-radius: var(--card-radius);
padding: 30px;
margin: 30px 0;
box-shadow: 0 4px 15px rgba(92, 3, 81, 0.2);
}
.review__main-block {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 30px;
margin-bottom: 20px;
}
.review__general {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.review__general img {
max-width: 180px;
height: auto;
border-radius: var(--card-radius);
margin-bottom: 15px;
}
.review__rating {
font-size: 17px;
font-weight: 700;
color: var(--gold);
margin: 10px 0;
}
.review__btn {
background: var(--gradient-gold);
color: var(--text-dark);
padding: 12px 28px;
border-radius: 6px;
font-weight: 700;
text-decoration: none;
display: inline-block;
margin-top: 15px;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(255, 201, 71, 0.4);
text-transform: uppercase;
font-size: 13px;
}
.review__btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(255, 201, 71, 0.5);
}
.review__info-textarea {
color: var(--text-gray);
line-height: 1.7;
margin-bottom: 15px;
}
.review__info-outline {
background: var(--gradient-gold);
color: var(--text-dark);
width: auto;
display: inline-block;
padding: 12px 20px;
border-radius: 5px;
margin: 10px 0;
font-weight: 700;
font-size: 14px;
text-align: center;
}
.review__pros-cons-block {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-top: 20px;
}
.review__pros-wrapper,
.review__cons-wrapper {
background: rgba(26, 6, 22, 0.4);
border-radius: var(--card-radius);
padding: 18px;
}
.review__pros-wrapper {
border: 2px solid #10b981;
}
.review__cons-wrapper {
border: 2px solid #ef4444;
}
.review__pros-title,
.review__cons-title {
display: flex;
align-items: center;
gap: 8px;
font-size: 17px;
font-weight: 700;
margin-bottom: 12px;
}
.review__pros-title {
color: #10b981;
}
.review__cons-title {
color: #ef4444;
}
.review__pros-cons-block ul {
padding-left: 22px;
}
.review__pros-cons-block li {
color: var(--text-gray);
margin-bottom: 6px;
line-height: 1.6;
font-size: 14px;
}
.review__pros-title img,
.review__cons-title img {
width: 28px;
height: 28px;
margin: 0 !important;
}
.review__summary {
font-size: 16px;
color: var(--text-gray);
}
.review__main-textarea {
font-size: 16px;
color: var(--text-gray);
}
.review__cons-item {
color: var(--text-gray) !important;
}
.review__pros-item {
color: var(--text-gray) !important;
} .faq-accordion {
max-width: 900px;
margin: 0 auto;
}
.faq-item {
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 12px;
margin-bottom: 12px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
border-color: rgba(92, 3, 81, 0.2);
}
.faq-item.active {
border-color: rgba(92, 3, 81, 0.3);
box-shadow: 0 4px 16px rgba(92, 3, 81, 0.12);
}
.faq-question {
padding: 20px 24px;
font-size: 16px;
font-weight: 600;
color: #18181b !important;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
justify-content: space-between;
align-items: center;
background: #ffffff;
position: relative;
}
.faq-question:hover {
background: #f9fafb;
color: #5C0351 !important;
}
.faq-item.active .faq-question {
background: #f9fafb;
color: #5C0351 !important;
}
.faq-question::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}
.faq-item.active .faq-question::before {
opacity: 1;
}
.faq-question::after {
content: '+';
font-size: 24px;
font-weight: 300;
color: #5C0351;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
line-height: 1;
min-width: 24px;
text-align: center;
}
.faq-item.active .faq-question::after {
transform: rotate(45deg);
color: var(--gold);
font-weight: 400;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding: 0 24px;
color: #4b5563;
line-height: 1.7;
font-size: 15px;
background: #ffffff;
}
.faq-item.active .faq-answer {
max-height: 1000px;
padding: 0 24px 24px;
background: #ffffff;
}
.faq-answer p {
margin: 0;
color: #4b5563;
line-height: 1.7;
} .intro__banner-section {
margin: 0 !important;
padding: 0 !important;
background: transparent !important;
background-image: none !important;
background-color: transparent !important;
}
.intro__banner-section .container {
max-width: 1400px;
margin: 40px auto;
padding: 0 20px;
}
.intro__banner-wrapper {
display: flex;
gap: 30px;
align-items: center;
background: rgba(92, 3, 81, 0.2);
border-radius: 10px;
padding: 35px;
border: 1px solid rgba(92, 3, 81, 0.3);
box-shadow: 0 4px 20px rgba(92, 3, 81, 0.3);
margin: 0;
min-height: 730px !important;
}
.intro__banner-left {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.intro__banner-logo {
max-width: 250px;
width: 100%;
height: auto;
margin: 0 auto 30px;
display: block;
}
.intro__banner-heading {
text-align: center;
}
.intro__banner-text {
text-align: center;
}
.intro__banner-btn {
margin: 20px auto 0;
}
.intro__banner-btn.button {
box-shadow: none !important;
outline: none !important;
}
.intro__banner-right {
flex: 1;
display: flex;
justify-content: center;
overflow: hidden;
}
.intro__banner-image {
border-radius: var(--card-radius);
max-width: 100%;
height: auto;
}
.intro__banner-right .intro__banner-image {
max-height: 400px;
max-width: 100%;
width: auto;
height: auto;
}
.banner__desktop-image {
display: block;
}
.banner__mobile-image {
display: none;
}
.banner__mini {
background: var(--gradient-purple);
border-radius: 10px;
padding: 25px;
margin: 30px auto;
max-width: 900px;
box-shadow: 0 8px 25px rgba(92, 3, 81, 0.5);
}
.banner__mini-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
position: relative;
}
.banner__mini-content {
display: flex;
gap: 10px;
}
.banner__mini-content.banner__mini-row {
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 0 15px;
flex-wrap: wrap;
}
.banner__mini-content.banner__mini-column {
flex-direction: column;
align-items: center;
justify-content: center;
}
.banner__mini-title {
font-size: 22px;
font-weight: 700;
}
.banner__mini img {
width: auto;
max-width: 130px;
height: auto;
margin: 0;
}
.banner__mini-btn {
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
color: var(--text-dark);
padding: 13px 32px;
border-radius: 5px;
font-weight: 700;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 20px rgba(255, 201, 71, 0.6), 
0 2px 8px rgba(244, 167, 66, 0.4);
text-transform: uppercase;
font-size: 14px;
letter-spacing: 0.8px;
position: relative;
overflow: hidden;
border: none;
cursor: pointer;
}
.banner__mini-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.6s ease;
pointer-events: none;
}
.banner__mini-btn:hover::before {
left: 100%;
}
.banner__mini-btn:hover {
background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
color: #000000;
box-shadow: 0 6px 30px rgba(255, 201, 71, 0.8), 
0 3px 12px rgba(244, 167, 66, 0.6),
0 0 25px rgba(255, 201, 71, 0.4);
transform: translateY(-3px);
} footer {
background: #0f0310;
padding: 50px 0 25px;
border-top: 2px solid var(--brand-purple);
margin-top: 70px;
}
.footer__block {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 35px;
}
.footer__logo {
width: auto;
max-width: 170px;
height: auto;
margin-bottom: 18px;
filter: drop-shadow(0 0 8px rgba(255, 201, 71, 0.3));
}
.footer__menu-title {
font-size: 16px;
font-weight: 700;
color: var(--gold);
margin-bottom: 14px;
text-transform: uppercase;
}
.footer__menu {
list-style: none;
padding: 0;
}
.footer__menu li {
margin-bottom: 10px;
}
.footer__menu li a,
.footer__menu li .clickable-div {
color: var(--text-gray);
font-size: 14px;
transition: all 0.2s ease;
}
.footer__menu li a:hover,
.footer__menu li .clickable-div:hover {
color: var(--gold);
padding-left: 5px;
}
.footer__contacts-single {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}
.footer__contacts-single img {
width: 18px;
height: 18px;
filter: brightness(0) saturate(100%) invert(76%) sepia(48%) saturate(1952%) hue-rotate(359deg) brightness(104%) contrast(102%);
}
.footer__contacts-single-text,
.footer__contacts-single-text a {
color: var(--text-gray) !important;
font-size: 14px;
transition: color 0.2s ease;
}
.footer__contacts-single-text a:hover {
color: var(--gold) !important;
}
.footer__socials {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.footer__socials a {
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(92, 3, 81, 0.3);
border-radius: 6px;
transition: all 0.2s ease;
}
.footer__socials a:hover {
background: var(--brand-purple);
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(92, 3, 81, 0.5);
}
.footer__socials img {
width: 20px;
height: 20px;
margin: 0;
} .footer-social-icons {
width: 100% !important;
max-width: 100% !important;
background: linear-gradient(135deg, rgba(26, 6, 22, 0.95), rgba(61, 2, 54, 0.9)) !important;
border-radius: 12px;
padding: 32px 24px !important;
margin: 30px 0 !important;
border: 1px solid rgba(92, 3, 81, 0.4) !important;
box-shadow: 0 4px 20px rgba(92, 3, 81, 0.3), 0 0 30px rgba(92, 3, 81, 0.1) !important;
display: flex !important;
flex-wrap: wrap !important;
align-items: center !important;
justify-content: center !important;
gap: 24px !important;
box-sizing: border-box !important;
position: relative;
overflow: hidden;
}
.footer-social-icons::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(92, 3, 81, 0.1), transparent, rgba(255, 201, 71, 0.05));
pointer-events: none;
z-index: 0;
}
.footer-social-icons .footer-icon {
position: relative;
z-index: 1;
max-height: 50px !important;
width: auto !important;
height: auto !important;
object-fit: contain !important;
filter: brightness(1.1) contrast(1.1) !important;
opacity: 1 !important;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
margin: 0 !important;
padding: 10px 14px !important;
border-radius: 8px !important;
background: rgba(255, 255, 255, 0.05) !important;
backdrop-filter: blur(5px) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
display: inline-block !important;
}
.footer-social-icons .footer-icon:hover {
transform: translateY(-4px) scale(1.08) !important;
filter: brightness(1.2) contrast(1.2) !important;
opacity: 1 !important;
box-shadow: 0 6px 20px rgba(255, 201, 71, 0.3), 0 0 15px rgba(255, 201, 71, 0.2) !important;
background: rgba(255, 255, 255, 0.1) !important;
border-color: rgba(255, 201, 71, 0.3) !important;
}
.footer__text {
margin-bottom: 20px;
font-size: 14px;
color: var(--text-gray);
line-height: 1.6;
} .footer__block.footer_align_left {
justify-content: flex-start;
}
.footer__block.footer_align_center {
justify-content: center;
}
.footer__block.footer_align_right {
justify-content: flex-end;
}
.footer__block.footer_align_full .footer__block-col {
flex: 1;
}
.footer__block-col {
padding-right: 15px;
}
.footer__general {
padding-right: 40px;
}
.footer__menu-col {
margin-bottom: 20px;
}
.footer__menu-main {
padding-left: 40px;
} .button {
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
color: var(--text-dark);
padding: 13px 32px;
border-radius: 5px;
font-weight: 700;
text-decoration: none;
display: inline-block;
text-align: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 20px rgba(255, 201, 71, 0.6), 
0 2px 8px rgba(244, 167, 66, 0.4);
border: none;
cursor: pointer;
text-transform: uppercase;
font-size: 14px;
letter-spacing: 0.8px;
position: relative;
overflow: hidden;
}
.button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.6s ease;
pointer-events: none;
}
.button:hover::before {
left: 100%;
}
.button:hover {
background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
color: #000000;
box-shadow: 0 6px 30px rgba(255, 201, 71, 0.8), 
0 3px 12px rgba(244, 167, 66, 0.6),
0 0 25px rgba(255, 201, 71, 0.4);
transform: translateY(-3px);
}  @media (min-width: 1400px) {
.custom__slots-wrapper {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 24px;
}
} @media (max-width: 1024px) {
.container {
padding: 0 18px;
}
.custom__slots-wrapper {
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 16px;
}
.custom__slots-single {
border-radius: 12px;
}
.custom__slots-single:hover {
transform: translateY(-8px) scale(1.01);
}
.review__main-block {
grid-template-columns: 1fr;
}
h1 { font-size: 36px; }
h2 { font-size: 24px; }
.footer__menu-main {
padding-left: 0;
}
.footer__general {
padding-right: 0;
}
} @media (max-width: 768px) {
h1 { font-size: 32px; }
h2 { font-size: 22px; margin-top: 35px; } .header__menu-wrapper {
display: none;
}
.header__wrapper .header__buttons {
display: none;
}
.header__btn {
box-shadow: none !important;
}
.menu__btn-open {
display: block;
}
.mobile__menu {
display: block;
} .custom__slots-wrapper {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 12px;
}
.custom__slots-single {
border-radius: 12px;
}
.custom__slots-single:hover {
transform: translateY(-6px) scale(1.01);
}
.slot__btn-first {
width: 48px !important;
height: 48px !important;
}
.custom__slots-btn-block a {
padding: 8px 18px;
font-size: 12px;
} .intro__banner-section {
padding: 0 !important;
}
.intro__banner-section .container {
margin: 30px auto;
padding: 0 15px;
}
.intro__banner-wrapper {
flex-direction: column-reverse !important;
padding: 25px;
gap: 20px;
min-height: 400px !important;
}
.intro__banner-left {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 0;
}
.intro__banner-logo {
max-width: 180px;
margin-bottom: 20px;
}
.banner__desktop-image {
display: none;
}
.banner__mobile-image {
display: block;
max-height: 300px;
width: 100%;
object-fit: cover;
min-height: 200px;
} .review__pros-cons-block {
grid-template-columns: 1fr;
} .footer__block {
grid-template-columns: 1fr;
gap: 30px;
text-align: center;
}
.footer__block-col {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.footer__logo {
margin: 0 auto 18px;
}
.footer__menu {
text-align: center;
}
.footer__menu li {
text-align: center;
}
.footer__contacts-single {
justify-content: center;
}
.footer__socials {
justify-content: center;
}
.footer__text {
text-align: center;
}
.footer-social-icons {
justify-content: center !important;
} .content__block {
padding: 20px;
}
.custom__table-header,
.custom__table-row {
grid-template-columns: repeat(2, 1fr);
}
.fixed__menu-all .header__buttons {
display: flex;
gap: 10px;
margin: 0 0 20px 0;
padding: 0 20px;
flex-direction: column;
width: 100%;
box-sizing: border-box;
}
.fixed__menu-all .header__btn {
width: 100%;
text-align: center;
}
.fixed__menu-all .header__btn-first {
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
color: var(--text-dark);
box-shadow: 0 4px 20px rgba(255, 201, 71, 0.6), 
0 2px 8px rgba(244, 167, 66, 0.4);
border: none;
position: relative;
overflow: hidden;
}
.fixed__menu-all .header__btn-first::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.6s ease;
}
.fixed__menu-all .header__btn-first:hover::before {
left: 100%;
}
.fixed__menu-all .header__btn-first:hover {
background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
color: #000000;
box-shadow: 0 6px 30px rgba(255, 201, 71, 0.8), 
0 3px 12px rgba(244, 167, 66, 0.6),
0 0 25px rgba(255, 201, 71, 0.4);
transform: translateY(-3px);
}
.fixed__menu-all .header__btn-second {
background: transparent;
color: var(--gold);
border: 2px solid var(--gold);
position: relative;
overflow: hidden;
}
.fixed__menu-all .header__btn-second::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--gradient-gold);
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}
.fixed__menu-all .header__btn-second:hover {
color: var(--text-dark);
border-color: var(--gold);
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(255, 201, 71, 0.5);
}
.fixed__menu-all .header__btn-second:hover::before {
opacity: 1;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.custom__slots-wrapper {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.custom__slots-single {
border-radius: 10px;
}
.custom__slots-single:hover {
transform: translateY(-4px) scale(1.01);
}
.custom__slots-single__title {
font-size: 12px;
}
.custom__slots-single__subtitle {
font-size: 10px;
}
.slot__btn-first {
width: 42px !important;
height: 42px !important;
}
.slot__btn-first img {
width: 22px !important;
height: 22px !important;
}
.custom__slots-btn-block a {
padding: 7px 16px;
font-size: 11px;
}
.header__btn {
padding: 10px 24px;
font-size: 13px;
}
h2 {
font-size: 20px;
}
.footer__block {
text-align: center;
}
.footer__block-col {
align-items: center;
}
} .text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; } .alignleft, img.alignleft {
float: left;
margin: 0 20px 15px 0;
display: inline;
}
.alignright, img.alignright {
float: right;
margin: 0 0 15px 20px;
display: inline;
}
.aligncenter, img.aligncenter {
display: block;
margin: 20px auto;
text-align: center;
clear: both;
}
.alignnone, img.alignnone {
margin: 15px 0;
width: 100%;
height: auto;
} .clickable-div {
cursor: pointer;
transition: all 0.2s ease;
} .acf-toc {
background: rgba(92, 3, 81, 0.15);
border: 1px solid rgba(92, 3, 81, 0.3);
border-radius: var(--card-radius);
padding: 20px;
margin: 25px 0;
}
.acf-toc ul {
list-style: none;
padding: 0;
}
.acf-toc ul li {
margin-bottom: 8px;
}
.acf-toc ul li a,
.acf-toc ul li .clickable-div {
color: var(--text-white);
transition: all 0.2s ease;
width: fit-content;
}
.acf-toc ul li a:hover,
.acf-toc ul li .clickable-div:hover {
color: var(--gold);
padding-left: 5px;
text-decoration: underline;
transform: scale(1.05);
} .socials__widget-wrapper {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 20px;
}
.socials__widget-wrapper a {
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(92, 3, 81, 0.3);
border-radius: 6px;
transition: all 0.2s ease;
padding: 10px;
text-decoration: none;
}
.socials__widget-wrapper a:hover {
background: var(--brand-purple);
transform: translateY(-3px);
}
.socials__widget-wrapper img {
width: 20px;
height: 20px;
margin: 0;
} .wp-social-link .clickable-div,
.wp-social-link a {
display: flex;
align-items: center;
justify-content: center;
padding: 5px;
}
.wp-social-link img,
.wp-social-link svg {
width: 28px;
height: 28px;
font-size: 28px;
}
.wp-social-link .clickable-div path {
fill: #fff;
} ::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #1a0616;
}
::-webkit-scrollbar-thumb {
background: var(--brand-purple);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--purple-light);
} .wp-caption {
margin-bottom: 1.5em;
text-align: center;
padding-top: 5px;
}
.wp-caption img {
border: 0;
padding: 0;
margin: 0;
}
.wp-caption p.wp-caption-text {
line-height: 1.5;
font-size: 12px;
margin: 0;
color: var(--text-muted);
}
.wp-smiley {
margin: 0 !important;
max-height: 1em;
} blockquote {
background: rgba(92, 3, 81, 0.15);
border-left: 4px solid var(--brand-purple);
padding: 15px 20px;
margin: 20px 0;
font-style: italic;
color: var(--text-gray);
}
blockquote.left {
margin-right: 20px;
text-align: right;
margin-left: 0;
width: 33%;
float: left;
}
blockquote.right {
margin-left: 20px;
text-align: left;
margin-right: 0;
width: 33%;
float: right;
} .text__image-block {
margin: 20px 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.text__image-wrapper {
display: flex;
gap: 40px;
padding: 30px 20px;
}
.text__image-wrapper.text_image_right_image_position {
flex-direction: row;
}
.text__image-wrapper.text_image_top_image_position {
flex-direction: column-reverse;
}
.text__image-wrapper.text_image_bottom_image_position {
flex-direction: column;
}
.text__image-wrapper.text_image_left_image_position,
.reversed-layout .intro__banner-wrapper {
flex-direction: row-reverse;
}
.text__image-image {
border-radius: 12px;
overflow: hidden;
width: auto;
max-width: 100%;
min-width: 30%;
display: flex;
align-items: center;
}
.text__image-image img {
width: 100%;
max-width: 100%;
height: auto;
margin: 0;
} .intro__banner-left.width-25 { max-width: 25%; }
.intro__banner-left.width-50 { max-width: 50%; }
.intro__banner-left.width-75 { max-width: 75%; }
.intro__banner-left.width-100 { max-width: 100%; }
@media (max-width: 992px) {
.intro__banner-left.width-25 { max-width: 50%; }
}
@media (max-width: 768px) {
.intro__banner-left.width-25,
.intro__banner-left.width-50 { max-width: 75%; }
.text__image-wrapper.text_image_left_image_position,
.text__image-wrapper.text_image_top_image_position {
flex-direction: column-reverse;
}
.text__image-wrapper.text_image_bottom_image_position,
.text__image-wrapper.text_image_right_image_position {
flex-direction: column;
}
}
@media (max-width: 576px) {
.intro__banner-left {
max-width: 100% !important;
}
} #menu-item-123 {
display: none !important;
}