*, 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;
}:root {
--header-height: 76px;
--header-glass: rgba(12, 4, 14, 0.72);
--header-glass-scrolled: rgba(10, 3, 12, 0.88);
--header-border-gold: rgba(212, 175, 95, 0.35);
--header-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
--header-shadow-scrolled: 0 12px 40px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
--btn-premium-radius: 10px;
--btn-premium-height: 44px;
--gold-refined: #d4af5f;
--gold-refined-hover: #e8c878;
--gold-gradient-premium: linear-gradient(145deg, #e2c06a 0%, #c9a24e 45%, #b8923f 100%);
--gold-gradient-premium-hover: linear-gradient(145deg, #ecd07a 0%, #d4af5f 50%, #c9a24e 100%);
--nav-link-radius: 8px;
--ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
} .screen-reader-text {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.skip-link {
position: absolute;
left: -9999px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
z-index: 100000;
}
.skip-link:focus {
position: fixed;
left: 16px;
top: 16px;
width: auto;
height: auto;
overflow: visible;
clip: auto;
padding: 12px 18px;
background: #1a0616;
color: #f0d48a;
border: 1px solid rgba(212, 175, 95, 0.45);
border-radius: 10px;
font-weight: 700;
text-decoration: none;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.menu__btn-open,
.menu__btn-close-trigger {
display: inline-flex;
align-items: center;
justify-content: center;
border: none;
background: transparent;
padding: 0;
margin: 0;
cursor: pointer;
font: inherit;
color: inherit;
} header {
position: sticky;
top: 0;
z-index: 1000;
isolation: isolate;
background: transparent !important;
backdrop-filter: none;
box-shadow: none;
border-bottom: none;
transition: box-shadow 0.45s var(--ease-premium);
}
header::before {
content: '';
position: absolute;
inset: 0;
z-index: -2;
background:
radial-gradient(ellipse 80% 120% at 12% -40%, rgba(92, 3, 81, 0.45) 0%, transparent 55%),
radial-gradient(ellipse 60% 100% at 88% -30%, rgba(212, 175, 95, 0.08) 0%, transparent 50%),
linear-gradient(180deg, rgba(18, 6, 16, 0.94) 0%, rgba(12, 4, 14, 0.88) 100%);
backdrop-filter: blur(18px) saturate(140%);
-webkit-backdrop-filter: blur(18px) saturate(140%);
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
box-shadow: var(--header-shadow);
transition: background 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}
header.header--scrolled::before {
background:
radial-gradient(ellipse 70% 100% at 10% -50%, rgba(92, 3, 81, 0.35) 0%, transparent 50%),
linear-gradient(180deg, rgba(10, 3, 12, 0.97) 0%, rgba(8, 2, 10, 0.95) 100%);
box-shadow: var(--header-shadow-scrolled);
} header::after {
height: 2px;
background: linear-gradient(
90deg,
transparent 0%,
rgba(212, 175, 95, 0.15) 12%,
var(--gold-refined) 35%,
#f0d48a 50%,
var(--gold-refined) 65%,
rgba(212, 175, 95, 0.15) 88%,
transparent 100%
);
box-shadow: 0 1px 8px rgba(212, 175, 95, 0.25);
animation: none;
opacity: 0.9;
} .header__wrapper {
min-height: var(--header-height);
padding: 14px 0;
gap: 24px;
}
.header__wrapper > a:first-child {
flex-shrink: 0;
position: relative;
z-index: 2;
display: flex;
align-items: center;
padding-right: 8px;
}
.header__logo {
height: 48px;
max-width: 200px;
filter: drop-shadow(0 2px 12px rgba(212, 175, 95, 0.2));
transition: transform 0.4s var(--ease-premium), filter 0.4s var(--ease-premium);
}
.header__wrapper > a:first-child:hover .header__logo {
transform: scale(1.02);
filter: drop-shadow(0 4px 16px rgba(212, 175, 95, 0.35));
}
.header__menu-wrapper {
flex: 1;
justify-content: center;
max-width: 720px;
}
.header__buttons {
flex-shrink: 0;
gap: 12px;
padding-left: 8px;
} #header_menu {
gap: 4px;
}
#header_menu li a,
#header_menu li .clickable-div {
position: relative;
padding: 10px 18px;
font-size: 13.5px;
font-weight: 500;
letter-spacing: 0.02em;
color: rgba(255, 255, 255, 0.82);
border-radius: var(--nav-link-radius);
transition:
color 0.3s var(--ease-premium),
background 0.3s var(--ease-premium),
transform 0.3s var(--ease-premium);
}
#header_menu li a::after,
#header_menu li .clickable-div::after {
content: '';
position: absolute;
left: 18px;
right: 18px;
bottom: 6px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold-refined), transparent);
opacity: 0;
transform: scaleX(0.6);
transition: opacity 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
}
#header_menu li a:hover,
#header_menu li .clickable-div:hover {
color: #fff;
background: rgba(255, 255, 255, 0.05);
transform: translateY(0);
}
#header_menu li a:hover::after,
#header_menu li .clickable-div:hover::after {
opacity: 0.7;
transform: scaleX(1);
} #header_menu > li.current-menu-item > a,
#header_menu > li.current-menu-item > .clickable-div,
#header_menu > li.current-menu-ancestor > a,
#header_menu > li.current-menu-ancestor > .clickable-div,
#header_menu > li.current_page_item > a,
#header_menu > li.current_page_item > .clickable-div {
color: var(--gold-refined);
background: rgba(212, 175, 95, 0.08);
}
#header_menu > li.current-menu-item > a::after,
#header_menu > li.current-menu-item > .clickable-div::after,
#header_menu > li.current_page_item > a::after,
#header_menu > li.current_page_item > .clickable-div::after {
opacity: 1;
transform: scaleX(1);
} #header_menu > li:first-child a,
#header_menu > li:first-child .clickable-div {
min-height: var(--btn-premium-height);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 22px;
font-size: 12.5px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: #1a1208 !important;
background: var(--gold-gradient-premium) !important;
border-radius: var(--btn-premium-radius);
border: 1px solid rgba(255, 255, 255, 0.22);
box-shadow:
0 4px 14px rgba(0, 0, 0, 0.25),
0 1px 0 rgba(255, 255, 255, 0.35) inset,
0 -1px 0 rgba(0, 0, 0, 0.08) inset;
}
#header_menu > li:first-child a::after,
#header_menu > li:first-child .clickable-div::after {
display: none;
}
#header_menu > li:first-child a::before,
#header_menu > li:first-child .clickable-div::before {
background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
transition: left 0.55s var(--ease-premium);
}
#header_menu > li:first-child a:hover,
#header_menu > li:first-child .clickable-div:hover {
background: var(--gold-gradient-premium-hover) !important;
color: #1a1208 !important;
transform: translateY(-2px);
box-shadow:
0 8px 24px rgba(0, 0, 0, 0.3),
0 0 0 1px rgba(212, 175, 95, 0.25),
0 1px 0 rgba(255, 255, 255, 0.4) inset;
} #header_menu .menu-item-has-children > ul {
background: linear-gradient(165deg, rgba(16, 5, 14, 0.96) 0%, rgba(26, 8, 22, 0.94) 100%);
border: 1px solid var(--header-border-gold);
border-radius: 14px;
padding: 10px;
margin-top: 12px;
box-shadow:
0 20px 50px rgba(0, 0, 0, 0.45),
0 1px 0 rgba(255, 255, 255, 0.06) inset;
backdrop-filter: blur(20px);
}
#header_menu .menu-item-has-children > ul::before {
background: inherit;
border-color: var(--header-border-gold);
} .header__btn {
min-height: var(--btn-premium-height);
padding: 0 26px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: var(--btn-premium-radius);
font-size: 12.5px;
font-weight: 700;
letter-spacing: 0.06em;
line-height: 1;
transition:
transform 0.35s var(--ease-premium),
box-shadow 0.35s var(--ease-premium),
background 0.35s var(--ease-premium),
color 0.35s var(--ease-premium),
border-color 0.35s var(--ease-premium);
}
.header__btn:active {
transform: translateY(0) scale(0.98);
transition-duration: 0.1s;
}
.header__btn-first {
color: #1a1208;
background: var(--gold-gradient-premium);
border: 1px solid rgba(255, 255, 255, 0.22);
box-shadow:
0 4px 16px rgba(0, 0, 0, 0.28),
0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.header__btn-first::before {
background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
}
.header__btn-first:hover {
background: var(--gold-gradient-premium-hover);
color: #1a1208;
transform: translateY(-2px);
box-shadow:
0 10px 28px rgba(0, 0, 0, 0.32),
0 0 0 1px rgba(212, 175, 95, 0.2),
0 1px 0 rgba(255, 255, 255, 0.4) inset;
}
.header__btn-second {
color: var(--gold-refined);
background: rgba(212, 175, 95, 0.04);
border: 1px solid rgba(212, 175, 95, 0.45);
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.header__btn-second::before {
background: var(--gold-gradient-premium);
opacity: 0;
}
.header__btn-second:hover {
color: #1a1208;
border-color: rgba(212, 175, 95, 0.7);
transform: translateY(-2px);
box-shadow:
0 8px 22px rgba(0, 0, 0, 0.25),
0 0 20px rgba(212, 175, 95, 0.12);
}
.header__btn-second:hover::before {
opacity: 1;
} .menu__btn-open {
width: 44px;
height: 44px;
display: none;
align-items: center;
justify-content: center;
border-radius: 10px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
transition: background 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}
.menu__btn-open:hover {
background: rgba(212, 175, 95, 0.08);
border-color: rgba(212, 175, 95, 0.25);
}
.menu__btn-open img {
width: 22px;
height: 22px;
opacity: 0.9;
} .fixed__menu-all {
background:
radial-gradient(ellipse 100% 60% at 100% 0%, rgba(92, 3, 81, 0.35) 0%, transparent 55%),
linear-gradient(180deg, #12040e 0%, #0a0308 100%);
border-left: 1px solid rgba(212, 175, 95, 0.12);
box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(16px);
}
.menu__btn-close {
display: flex;
justify-content: flex-end;
}
.menu__btn-close-trigger {
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
transition: background 0.3s var(--ease-premium);
}
.menu__btn-close-trigger:hover {
background: rgba(212, 175, 95, 0.12);
}
.menu__btn-close-trigger img {
width: 28px;
height: 28px;
padding: 8px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
transition: background 0.3s var(--ease-premium);
}
.menu__btn-close-trigger:hover img {
background: transparent;
}
.menu__btn-close:hover img {
background: rgba(212, 175, 95, 0.12);
}
#header_menu_mobile li {
border-bottom-color: rgba(255, 255, 255, 0.06);
}
#header_menu_mobile li a,
#header_menu_mobile li .clickable-div {
padding: 16px 12px;
border-radius: 8px;
transition: all 0.3s var(--ease-premium);
}
#header_menu_mobile > li.current-menu-item > a,
#header_menu_mobile > li.current_page_item > a {
color: var(--gold-refined);
background: rgba(212, 175, 95, 0.08);
}
#header_menu_mobile > li:first-child a,
#header_menu_mobile > li:first-child .clickable-div {
min-height: var(--btn-premium-height);
border-radius: var(--btn-premium-radius);
background: var(--gold-gradient-premium) !important;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
#header_menu_mobile > li:first-child a:hover,
#header_menu_mobile > li:first-child .clickable-div:hover {
background: var(--gold-gradient-premium-hover) !important;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
:root {
--header-height: 64px;
}
.header__wrapper {
padding: 10px 0;
gap: 16px;
}
.header__logo {
height: 40px;
}
.menu__btn-open {
display: flex;
}
}
@media (min-width: 769px) and (max-width: 1100px) {
#header_menu li a,
#header_menu li .clickable-div {
padding: 10px 12px;
font-size: 13px;
}
.header__btn {
padding: 0 18px;
font-size: 11.5px;
}
#header_menu > li:first-child a,
#header_menu > li:first-child .clickable-div {
padding: 0 16px;
}
}:root {
--table-radius: 16px;
--table-border: rgba(92, 3, 81, 0.1);
--table-border-soft: rgba(92, 3, 81, 0.06);
--table-head-bg: linear-gradient(145deg, #e8c878 0%, #d4af5f 45%, #c9a24e 100%);
--table-head-text: #1a1208;
--table-row-even: #faf9fb;
--table-row-odd: #ffffff;
--table-row-hover: #f3eef6;
--table-shadow: 0 14px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(92, 3, 81, 0.06);
} body #main__section table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background: var(--table-row-odd);
border-radius: var(--table-radius) !important;
overflow: hidden;
margin: 2rem 0 !important;
border: 1px solid var(--table-border) !important;
box-shadow: var(--table-shadow) !important;
}
body #main__section th {
background: var(--table-head-bg) !important;
color: var(--table-head-text) !important;
padding: 18px 20px !important;
text-align: center;
font-weight: 700;
font-size: 0.8125rem !important;
letter-spacing: 0.06em;
text-transform: uppercase;
border: none !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}
body #main__section td {
padding: 18px 20px !important;
color: #2d2d35 !important;
font-size: 0.9375rem !important;
line-height: 1.65 !important;
background: var(--table-row-odd);
border: none !important;
border-bottom: 1px solid var(--table-border-soft) !important;
transition: background 0.25s ease, color 0.25s ease;
font-weight: 400 !important;
text-transform: none !important;
letter-spacing: normal !important;
text-align: left !important;
} body #main__section tbody tr td,
body #main__section tbody tr:first-child td {
background: var(--table-row-odd) !important;
color: #2d2d35 !important;
font-weight: 400 !important;
text-transform: none !important;
letter-spacing: normal !important;
text-align: left !important;
}
body #main__section tbody tr:nth-child(even) td {
background: var(--table-row-even);
}
body #main__section tbody tr:hover td {
background: var(--table-row-hover) !important;
}
body #main__section tr:last-child td {
border-bottom: none !important;
}
body #main__section table .clickable-div {
color: var(--type-accent, #5c0351) !important;
font-weight: 600;
text-decoration: none;
border-bottom: 1px solid rgba(92, 3, 81, 0.2);
transition: color 0.25s ease, border-color 0.25s ease;
}
body #main__section table .clickable-div:hover {
color: #7a0462 !important;
border-bottom-color: rgba(92, 3, 81, 0.45);
} .custom__table {
background: #ffffff !important;
border-radius: var(--table-radius) !important;
overflow: hidden;
margin: 2rem 0 !important;
border: 1px solid var(--table-border) !important;
box-shadow: var(--table-shadow) !important;
}
.custom__table-header {
display: grid;
grid-template-columns: repeat(4, 1fr);
background: var(--table-head-bg) !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.custom__table-heading {
background: transparent !important;
color: var(--table-head-text) !important;
padding: 18px 16px !important;
text-align: center;
font-size: 0.8125rem !important;
font-weight: 700 !important;
letter-spacing: 0.06em;
text-transform: uppercase;
border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.custom__table-heading:last-child {
border-right: none;
}
.custom__table-body {
display: flex;
flex-direction: column;
}
.custom__table-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
background: var(--table-row-odd) !important;
transition: background 0.25s ease;
}
.custom__table-row:nth-child(even) {
background: var(--table-row-even) !important;
}
.custom__table-row:hover {
background: var(--table-row-hover) !important;
}
.custom__table-col {
padding: 20px 18px !important;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
gap: 10px;
color: #2d2d35 !important;
font-size: 0.9375rem !important;
line-height: 1.6 !important;
background: transparent !important;
border: none !important;
border-right: 1px solid var(--table-border-soft) !important;
border-bottom: 1px solid var(--table-border-soft) !important;
}
.custom__table-col:last-child {
border-right: none !important;
}
.custom__table-row:last-child .custom__table-col {
border-bottom: none !important;
}
.custom__table-col.custom-col1 {
justify-content: flex-start;
text-align: left;
padding-left: 22px !important;
}
.custom__table-row-num {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 28px;
height: 28px;
border-radius: 8px;
background: rgba(92, 3, 81, 0.08);
color: #5c0351;
font-size: 0.8125rem;
font-weight: 700;
flex-shrink: 0;
}
.custom__table img {
max-width: 64px !important;
max-height: 64px !important;
border-radius: 10px !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.custom__table-btn {
background: linear-gradient(145deg, #e2c06a 0%, #c9a24e 45%, #b8923f 100%) !important;
color: #1a1208 !important;
padding: 10px 22px !important;
border-radius: 10px !important;
font-weight: 700 !important;
font-size: 0.75rem !important;
letter-spacing: 0.06em;
text-transform: uppercase;
border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.custom__table-btn:hover {
transform: translateY(-2px) !important;
box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2) !important;
} @media (max-width: 768px) {
:root {
--table-radius: 14px;
--table-scroll-min: 640px;
} .wp-block-table,
body #main__section .wp-block-table,
.content-section-panel .wp-block-table,
.content__block .wp-block-table {
display: block !important;
width: 100% !important;
max-width: 100% !important;
overflow-x: auto !important;
overflow-y: hidden !important;
-webkit-overflow-scrolling: touch;
overscroll-behavior-x: contain;
touch-action: pan-x;
cursor: grab;
margin: 1.5rem 0 !important;
border-radius: var(--table-radius) !important;
box-shadow: var(--table-shadow) !important;
}
.wp-block-table.is-dragging,
.custom__table.is-dragging {
cursor: grabbing !important;
user-select: none !important;
}
.wp-block-table.is-dragging *,
.custom__table.is-dragging * {
cursor: grabbing !important;
user-select: none !important;
} .wp-block-table table,
body #main__section table,
body #main__section .wp-block-table table {
width: max-content !important;
min-width: var(--table-scroll-min) !important;
max-width: none !important;
table-layout: auto !important;
margin: 0 !important;
border-radius: var(--table-radius) !important;
}
.wp-block-table .has-fixed-layout,
.wp-block-table table.has-fixed-layout {
table-layout: auto !important;
width: max-content !important;
}
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th,
.wp-block-table td,
.wp-block-table th {
word-break: normal !important;
overflow-wrap: normal !important;
hyphens: none !important;
white-space: normal !important;
}
body #main__section th,
body #main__section td {
padding: 14px 16px !important;
font-size: 0.875rem !important;
min-width: 130px !important;
max-width: none !important;
vertical-align: top !important;
} .custom__table {
display: block !important;
width: 100% !important;
max-width: 100% !important;
overflow-x: auto !important;
overflow-y: hidden !important;
-webkit-overflow-scrolling: touch;
overscroll-behavior-x: contain;
touch-action: pan-x;
cursor: grab;
}
.custom__table-header,
.custom__table-row {
grid-template-columns: repeat(4, minmax(140px, 1fr)) !important;
min-width: var(--table-scroll-min) !important;
width: max-content !important;
}
.custom__table-heading:nth-child(n+3),
.custom__table-col:nth-child(n+3) {
border-top: none !important;
}
.custom__table-col {
padding: 16px 14px !important;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
body #main__section th,
body #main__section td {
padding: 16px 14px !important;
}
.custom__table-col {
padding: 18px 14px !important;
}
}.custom__slots-block {
margin: 2.25rem 0 1.5rem !important;
padding: 8px 4px 12px !important;
}
.custom__slots-wrapper {
display: grid;
grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
gap: 18px !important;
padding: 8px 0 4px !important;
} .custom__slots-single {
position: relative;
border-radius: 18px !important;
overflow: hidden;
background: linear-gradient(165deg, rgba(22, 6, 20, 0.95) 0%, rgba(12, 3, 11, 0.98) 100%) !important;
border: 1px solid rgba(212, 175, 95, 0.14) !important;
box-shadow:
0 10px 28px rgba(0, 0, 0, 0.28),
0 1px 0 rgba(255, 255, 255, 0.06) inset !important;
cursor: pointer;
animation: none !important;
opacity: 1;
transform: none;
transition:
box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
border-color 0.45s ease,
transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.custom__slots-single::before {
inset: 0;
border-radius: 18px;
padding: 1px;
background: linear-gradient(
145deg,
rgba(212, 175, 95, 0.35),
rgba(92, 3, 81, 0.25),
rgba(212, 175, 95, 0.2)
);
opacity: 0;
z-index: 2;
pointer-events: none;
transition: opacity 0.45s ease;
}
.custom__slots-single:hover {
transform: translateY(-8px) scale(1.025) !important;
border-color: rgba(212, 175, 95, 0.38) !important;
box-shadow:
0 20px 48px rgba(0, 0, 0, 0.38),
0 0 0 1px rgba(212, 175, 95, 0.12),
0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
}
.custom__slots-single:hover::before {
opacity: 1;
} .custom__slots-single__content {
aspect-ratio: 1;
background: linear-gradient(180deg, #1a0616 0%, #0d030c 100%) !important;
}
.custom__slots-img-wrapper::after {
background: linear-gradient(
180deg,
transparent 40%,
rgba(8, 2, 10, 0.55) 100%
) !important;
}
.custom__slots-img-wrapper img {
filter: brightness(0.96) saturate(1.02);
transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease !important;
}
.custom__slots-single:hover .custom__slots-img-wrapper img {
transform: scale(1.06) !important;
filter: brightness(1.04) saturate(1.08) !important;
}
.custom__slots-single__content::after {
background: linear-gradient(
180deg,
rgba(8, 2, 10, 0.15) 0%,
rgba(92, 3, 81, 0.72) 100%
) !important;
opacity: 0;
transition: opacity 0.45s ease;
}
.custom__slots-single:hover .custom__slots-single__content::after {
opacity: 1;
} .custom__slots-btn-block {
gap: 14px;
opacity: 0;
transform: translateY(8px);
transition:
opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.custom__slots-single:hover .custom__slots-btn-block {
opacity: 1;
transform: translateY(0) !important;
}
.custom__slots-btn-block a {
padding: 11px 24px !important;
border-radius: 10px !important;
font-size: 0.75rem !important;
letter-spacing: 0.07em;
color: #1a1208 !important;
background: linear-gradient(145deg, #e2c06a 0%, #c9a24e 45%, #b8923f 100%) !important;
border: 1px solid rgba(255, 255, 255, 0.22);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
}
.custom__slots-btn-block a:hover {
transform: translateY(-2px) scale(1.04) !important;
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32) !important;
background: linear-gradient(145deg, #ecd07a 0%, #d4af5f 50%, #c9a24e 100%) !important;
}
.slot__btn-first {
width: 52px !important;
height: 52px !important;
border-radius: 50% !important;
padding: 0 !important;
background: linear-gradient(145deg, #e2c06a 0%, #c9a24e 100%) !important;
box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3) !important;
}
.slot__btn-first:hover {
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35) !important;
} .custom__slots-single__text {
padding: 14px 12px 15px !important;
background: linear-gradient(180deg, rgba(14, 4, 12, 0.98) 0%, rgba(22, 6, 20, 0.96) 100%) !important;
border-top: 1px solid rgba(212, 175, 95, 0.12) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}
.custom__slots-single:hover .custom__slots-single__text {
background: linear-gradient(180deg, rgba(20, 5, 18, 0.98) 0%, rgba(30, 8, 26, 0.96) 100%) !important;
border-top-color: rgba(212, 175, 95, 0.28) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}
.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: 0.8125rem !important;
font-weight: 700 !important;
color: #e2c06a !important;
letter-spacing: 0.02em;
text-shadow: none !important;
margin-bottom: 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: 0.625rem !important;
font-weight: 500 !important;
color: rgba(255, 255, 255, 0.55) !important;
text-shadow: none !important;
letter-spacing: 0.03em;
text-transform: uppercase;
}
.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: #f0d48a !important;
transform: none !important;
}
.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: rgba(255, 255, 255, 0.72) !important;
} .section-header {
margin-top: 2.5rem !important;
} @media (max-width: 1024px) {
.custom__slots-wrapper {
grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
gap: 16px !important;
}
}
@media (max-width: 768px) {
.custom__slots-wrapper {
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 10px !important;
} .custom__slots-wrapper .custom__slots-single:nth-child(n + 7) {
display: none !important;
}
.custom__slots-single {
border-radius: 14px !important;
}
.custom__slots-single:hover {
transform: translateY(-5px) scale(1.015) !important;
}
.custom__slots-single__text {
padding: 8px 6px 9px !important;
}
.custom__slots-single__title {
font-size: 0.6875rem !important;
line-height: 1.25 !important;
margin-bottom: 2px !important;
}
.custom__slots-single__subtitle {
font-size: 0.5625rem !important;
line-height: 1.2 !important;
}
}
@media (min-width: 1200px) {
.custom__slots-wrapper {
gap: 20px !important;
}
}
@media (prefers-reduced-motion: reduce) {
.custom__slots-single {
transform: none !important;
opacity: 1 !important;
transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.custom__slots-single:hover .custom__slots-img-wrapper img {
transform: none !important;
}
}:root {
--btn-radius: 10px;
--btn-radius-sm: 8px;
--btn-height: 44px;
--btn-height-lg: 48px;
--btn-height-sm: 38px;
--btn-font: 0.8125rem;
--btn-font-sm: 0.75rem;
--btn-letter: 0.07em;
--btn-ease: cubic-bezier(0.22, 1, 0.36, 1);
--btn-gold: linear-gradient(145deg, #e2c06a 0%, #c9a24e 45%, #b8923f 100%);
--btn-gold-hover: linear-gradient(145deg, #ecd07a 0%, #d4af5f 50%, #c9a24e 100%);
--btn-gold-text: #1a1208;
--btn-shadow: 0 6px 20px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.32) inset;
--btn-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(212, 175, 95, 0.18), 0 1px 0 rgba(255, 255, 255, 0.38) inset;
} .button,
.review__btn,
.banner__mini-btn,
.custom__table-btn,
button.button,
input[type="submit"].button,
a.button {
position: relative;
display: inline-flex !important;
align-items: center;
justify-content: center;
gap: 8px;
min-height: var(--btn-height);
padding: 0 28px !important;
border-radius: var(--btn-radius) !important;
font-size: var(--btn-font) !important;
font-weight: 700 !important;
line-height: 1.2 !important;
letter-spacing: var(--btn-letter) !important;
text-transform: uppercase !important;
text-decoration: none !important;
text-align: center;
color: var(--btn-gold-text) !important;
background: var(--btn-gold) !important;
border: 1px solid rgba(255, 255, 255, 0.22) !important;
box-shadow: var(--btn-shadow) !important;
cursor: pointer;
overflow: hidden;
transition:
transform 0.35s var(--btn-ease),
box-shadow 0.35s var(--btn-ease),
background 0.35s ease,
color 0.35s ease,
border-color 0.35s ease !important;
}
.button::before,
.review__btn::before,
.banner__mini-btn::before,
.custom__table-btn::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.28) 50%, transparent 72%);
transform: translateX(-100%);
transition: transform 0.55s var(--btn-ease);
pointer-events: none;
}
.button:hover,
.review__btn:hover,
.banner__mini-btn:hover,
.custom__table-btn:hover,
button.button:hover,
input[type="submit"].button:hover,
a.button:hover {
color: var(--btn-gold-text) !important;
background: var(--btn-gold-hover) !important;
transform: translateY(-2px) !important;
box-shadow: var(--btn-shadow-hover) !important;
}
.button:hover::before,
.review__btn:hover::before,
.banner__mini-btn:hover::before,
.custom__table-btn:hover::before {
transform: translateX(100%);
}
.button:active,
.review__btn:active,
.banner__mini-btn:active,
.custom__table-btn:active,
button.button:active,
input[type="submit"].button:active,
a.button:active {
transform: translateY(0) scale(0.98) !important;
transition-duration: 0.1s !important;
} .wp-block-button {
margin: 1.5rem 0 !important;
display: inline-block !important;
background: transparent !important;
padding: 0 !important;
border: none !important;
box-shadow: none !important;
vertical-align: top;
} body #main__section .wp-block-button .wp-block-button__link,
body #main__section .wp-block-buttons .wp-block-button .wp-block-button__link {
position: relative;
display: inline-flex !important;
align-items: center;
justify-content: center;
box-sizing: border-box;
min-height: var(--btn-height);
padding: 0 28px !important;
border-radius: var(--btn-radius) !important;
font-size: var(--btn-font) !important;
font-weight: 700 !important;
line-height: 1.2 !important;
letter-spacing: var(--btn-letter) !important;
text-transform: uppercase !important;
text-decoration: none !important;
text-align: center;
color: var(--btn-gold-text) !important;
background: var(--btn-gold) !important;
border: 1px solid rgba(255, 255, 255, 0.22) !important;
box-shadow: var(--btn-shadow) !important;
cursor: pointer;
overflow: hidden;
height: auto !important;
width: auto !important;
transition:
transform 0.35s var(--btn-ease),
box-shadow 0.35s var(--btn-ease),
background 0.35s ease,
color 0.35s ease,
border-color 0.35s ease !important;
}
body #main__section .wp-block-button .wp-block-button__link::before,
body #main__section .wp-block-buttons .wp-block-button .wp-block-button__link::before {
content: '';
display: block !important;
position: absolute;
inset: 0;
background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.28) 50%, transparent 72%);
transform: translateX(-100%);
transition: transform 0.55s var(--btn-ease);
pointer-events: none;
}
body #main__section .wp-block-button .wp-block-button__link:hover,
body #main__section .wp-block-buttons .wp-block-button .wp-block-button__link:hover {
color: var(--btn-gold-text) !important;
background: var(--btn-gold-hover) !important;
transform: translateY(-2px) !important;
box-shadow: var(--btn-shadow-hover) !important;
border-color: rgba(255, 255, 255, 0.22) !important;
}
body #main__section .wp-block-button .wp-block-button__link:hover::before,
body #main__section .wp-block-buttons .wp-block-button .wp-block-button__link:hover::before {
transform: translateX(100%);
}
body #main__section .wp-block-buttons {
display: flex !important;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
margin: 1.5rem 0 !important;
} body #main__section .wp-block-button.is-style-outline,
body .wp-block-buttons .wp-block-button.is-style-outline {
background: transparent !important;
background-color: transparent !important;
border: none !important;
box-shadow: none !important;
min-width: 0 !important;
width: auto !important;
height: auto !important;
min-height: 0 !important;
padding: 0 !important;
margin: 0 !important;
font-size: inherit !important;
line-height: normal !important;
white-space: normal !important;
color: inherit !important;
cursor: default !important;
font-weight: inherit !important;
text-decoration: none !important;
border-radius: 0 !important;
}
body #main__section .wp-block-button.is-style-outline:hover,
body .wp-block-buttons .wp-block-button.is-style-outline:hover {
background: transparent !important;
border: none !important;
} .button--secondary,
.button.button--secondary,
a.button--secondary,
.header__btn-second {
color: #d4af5f !important;
background: rgba(212, 175, 95, 0.04) !important;
border: 1px solid rgba(212, 175, 95, 0.45) !important;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}
.button--secondary::before,
.button.button--secondary::before {
background: var(--btn-gold);
opacity: 0;
transform: none;
transition: opacity 0.35s ease;
}
.button--secondary:hover,
.button.button--secondary:hover,
a.button--secondary:hover {
color: var(--btn-gold-text) !important;
background: var(--btn-gold) !important;
border-color: rgba(212, 175, 95, 0.65) !important;
}
.button--secondary:hover::before,
.button.button--secondary:hover::before {
opacity: 1;
transform: none;
} .button--lg,
.intro__banner-btn.button {
min-height: var(--btn-height-lg) !important;
padding: 0 32px !important;
}
.button--sm,
.custom__table-btn {
min-height: var(--btn-height-sm) !important;
padding: 0 22px !important;
font-size: var(--btn-font-sm) !important;
} .review__btn {
margin-top: 1rem !important;
}
.banner__mini-btn {
margin-top: 0.5rem;
flex-shrink: 0;
}
.content-section-panel .button,
.content-section-panel .review__btn,
.content-section-panel .banner__mini-btn {
margin-top: 1.25rem;
}
.content-section-panel p .button,
.content-section-panel p a.button {
margin-top: 0.5rem;
margin-bottom: 0.25rem;
} body #main__section table .clickable-div,
.custom__table .clickable-div {
display: inline !important;
min-height: 0 !important;
padding: 0 !important;
background: none !important;
border: none !important;
box-shadow: none !important;
text-transform: none !important;
letter-spacing: normal !important;
font-size: inherit !important;
font-weight: 600 !important;
transform: none !important;
}
body #main__section table .clickable-div::before,
.custom__table .clickable-div::before {
display: none !important;
} @media (max-width: 768px) {
.button,
.review__btn,
.banner__mini-btn,
.custom__table-btn,
a.button {
min-height: 42px !important;
padding: 0 22px !important;
font-size: 0.75rem !important;
}
body #main__section .wp-block-button .wp-block-button__link,
body #main__section .wp-block-buttons .wp-block-button .wp-block-button__link {
min-height: 42px !important;
padding: 0 22px !important;
font-size: 0.75rem !important;
}
.button--lg,
.intro__banner-btn.button {
min-height: 46px !important;
padding: 0 26px !important;
}
}
@media (prefers-reduced-motion: reduce) {
.button,
.review__btn,
.banner__mini-btn,
.custom__table-btn,
a.button {
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}
.button:hover,
.review__btn:hover,
.banner__mini-btn:hover,
.custom__table-btn:hover,
a.button:hover {
transform: none !important;
}
.button::before,
.review__btn::before,
.banner__mini-btn::before,
.custom__table-btn::before {
display: none;
}
}:root {
--card-radius-sm: 12px;
--card-radius: 16px;
--card-radius-lg: 18px;
--card-ease: cubic-bezier(0.22, 1, 0.36, 1);
--card-border-light: rgba(92, 3, 81, 0.08);
--card-border-dark: rgba(212, 175, 95, 0.14);
--card-shadow-light:
0 14px 40px rgba(0, 0, 0, 0.08),
0 2px 8px rgba(92, 3, 81, 0.04);
--card-shadow-dark:
0 16px 44px rgba(0, 0, 0, 0.28),
0 1px 0 rgba(255, 255, 255, 0.04) inset;
--card-bg-dark:
radial-gradient(ellipse 85% 55% at 50% 0%, rgba(92, 3, 81, 0.14) 0%, transparent 58%),
linear-gradient(165deg, #12040e 0%, #1a0616 100%);
--card-bg-dark-alt:
linear-gradient(165deg, rgba(18, 4, 14, 0.96) 0%, rgba(26, 8, 22, 0.92) 100%);
} .review__wrapper,
.banner__mini,
.acf-toc,
.custom__slots-block,
.payment-methods,
.payment-methods-block {
position: relative;
border-radius: var(--card-radius) !important;
border: 1px solid var(--card-border-dark) !important;
background: var(--card-bg-dark) !important;
box-shadow: var(--card-shadow-dark) !important;
overflow: hidden;
transition: box-shadow 0.4s var(--card-ease), border-color 0.4s var(--card-ease), transform 0.4s var(--card-ease);
} .content__block > div:has(> img):not(.content-section-panel),
.content__block > div:has(> figure):not(.content-section-panel),
.content__block > div:has(> .wp-block-image):not(.content-section-panel),
.content-section-panel > div:has(> img),
.content-section-panel > div:has(> figure),
.content-section-panel > div:has(> .wp-block-image) {
position: relative;
border-radius: var(--card-radius) !important;
border: 1px solid var(--card-border-dark) !important;
background: var(--card-bg-dark) !important;
box-shadow: var(--card-shadow-dark) !important;
overflow: hidden;
}
.review__wrapper::before,
.banner__mini::before,
.acf-toc::before,
.custom__slots-block::before,
.payment-methods::before,
.payment-methods-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(
90deg,
transparent,
rgba(212, 175, 95, 0.25) 18%,
rgba(212, 175, 95, 0.55) 50%,
rgba(212, 175, 95, 0.25) 82%,
transparent
);
pointer-events: none;
z-index: 1;
}
.review__wrapper {
padding: 32px 34px !important;
margin: 2rem 0 !important;
}
.banner__mini {
padding: 28px 30px !important;
margin: 2rem auto !important;
max-width: 100% !important;
}
.acf-toc {
padding: 24px 28px !important;
margin: 2rem 0 !important;
}
.custom__slots-block {
margin: 2rem 0 1rem !important;
padding: 28px 26px 24px !important;
}
.payment-methods,
.payment-methods-block,
.content__block .payment-methods,
.content__block > div:has(> img):not(.content-section-panel),
.content__block > div:has(> figure):not(.content-section-panel),
.content__block > div:has(> .wp-block-image):not(.content-section-panel),
.content-section-panel > div:has(> img),
.content-section-panel > div:has(> figure),
.content-section-panel > div:has(> .wp-block-image) {
padding: 28px 24px !important;
margin: 2rem 0 !important;
gap: 22px !important;
}
.banner__mini:hover,
.review__wrapper:hover {
border-color: rgba(212, 175, 95, 0.22) !important;
box-shadow:
0 20px 52px rgba(0, 0, 0, 0.32),
0 0 0 1px rgba(212, 175, 95, 0.06) !important;
} .review__main-block {
gap: 28px !important;
margin-bottom: 1.25rem !important;
}
.review__general img {
border-radius: var(--card-radius-sm) !important;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
border: 1px solid rgba(212, 175, 95, 0.12);
}
.review__rating {
color: #d4af5f !important;
font-size: 1.0625rem !important;
letter-spacing: 0.02em;
}
.review__info-textarea,
.review__summary,
.review__main-textarea,
.review__pros-cons-block li,
.review__cons-item,
.review__pros-item {
color: rgba(255, 255, 255, 0.72) !important;
line-height: 1.75 !important;
}
.review__info-outline {
background: rgba(212, 175, 95, 0.12) !important;
color: #f0d48a !important;
border: 1px solid rgba(212, 175, 95, 0.28) !important;
border-radius: var(--card-radius-sm) !important;
padding: 12px 18px !important;
font-size: 0.875rem !important;
font-weight: 600 !important;
box-shadow: none !important;
}
.review__pros-cons-block {
gap: 18px !important;
margin-top: 1.5rem !important;
}
.review__pros-wrapper,
.review__cons-wrapper {
border-radius: var(--card-radius-sm) !important;
padding: 20px 18px !important;
background: rgba(8, 2, 10, 0.45) !important;
border-width: 1px !important;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) inset;
}
.review__pros-wrapper {
border-color: rgba(16, 185, 129, 0.45) !important;
}
.review__cons-wrapper {
border-color: rgba(239, 68, 68, 0.4) !important;
}
.review__pros-title {
color: #34d399 !important;
}
.review__cons-title {
color: #f87171 !important;
}
.review__pros-title,
.review__cons-title {
font-size: 1rem !important;
margin-bottom: 0.75rem !important;
} .content__block .banner__mini .banner__mini-title,
.content__block .banner__mini .banner__mini-subtitle,
.banner__mini .banner__mini-title,
.banner__mini .banner__mini-subtitle {
color: #ffffff !important;
}
.banner__mini-title {
font-size: clamp(1.125rem, 2vw, 1.375rem) !important;
line-height: 1.35 !important;
letter-spacing: 0.01em;
font-weight: 700 !important;
}
.banner__mini-subtitle {
font-size: clamp(0.9375rem, 1.5vw, 1.0625rem) !important;
line-height: 1.55 !important;
color: rgba(255, 255, 255, 0.88) !important;
margin-top: 0.35rem !important;
}
.banner__mini img {
border-radius: var(--card-radius-sm);
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.banner__mini-wrapper {
gap: 24px !important;
} .acf-toc ul li a,
.acf-toc ul li .clickable-div {
color: rgba(255, 255, 255, 0.82) !important;
font-size: 0.9375rem;
line-height: 1.5;
text-decoration: none;
border-bottom: 1px solid transparent;
transition: color 0.25s ease, padding-left 0.25s var(--card-ease), border-color 0.25s ease;
}
.acf-toc ul li a:hover,
.acf-toc ul li .clickable-div:hover {
color: #e2c06a !important;
padding-left: 6px !important;
transform: none !important;
text-decoration: none !important;
border-bottom-color: rgba(212, 175, 95, 0.35);
} .content-section-panel .wp-block-group.has-background,
.content-section-panel .wp-block-column.has-background,
.content__block .wp-block-group.has-background,
.content__block blockquote,
.content__block .wp-block-quote {
border-radius: var(--card-radius-sm) !important;
border: 1px solid var(--card-border-light) !important;
box-shadow: var(--card-shadow-light) !important;
padding: 1.25rem 1.5rem !important;
margin: 1.75rem 0 !important;
background: linear-gradient(180deg, #ffffff 0%, #faf9fb 100%) !important;
}
.content__block blockquote,
.content__block .wp-block-quote {
border-left: 3px solid rgba(212, 175, 95, 0.55) !important;
color: var(--type-body, #3a3a44) !important;
}
.content__block blockquote p:last-child,
.content__block .wp-block-quote p:last-child {
margin-bottom: 0 !important;
} .content__block figure,
.content__block .wp-block-image {
margin: 1.75rem 0 !important;
}
.content__block img:not(.header__logo):not(.custom__slots-img-wrapper img):not(.slot__btn-first img):not(.review__pros-title img):not(.review__cons-title img) {
border-radius: var(--card-radius-sm) !important;
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
border: 1px solid rgba(92, 3, 81, 0.06);
}
.payment-methods img,
.payment-methods-block img,
.content__block > div:has(> img):not(.content-section-panel) img,
.content-section-panel > div:has(> img) img {
border-radius: 8px !important;
box-shadow: none !important;
border: none !important;
background: rgba(255, 255, 255, 0.96);
padding: 8px 12px;
} .content-section-panel .review__wrapper,
.content-section-panel .banner__mini,
.content-section-panel .acf-toc,
.content-section-panel .custom__slots-block {
margin-top: 1.75rem !important;
margin-bottom: 0.5rem !important;
}
.content-section-panel .review__wrapper {
background: var(--card-bg-dark-alt) !important;
} .content-section-panel.content-section-panel--tone-a {
background: linear-gradient(180deg, #ffffff 0%, #faf9fb 100%) !important;
}
.content-section-panel.content-section-panel--tone-b {
background: linear-gradient(180deg, #f7f4f8 0%, #ffffff 100%) !important;
border-color: rgba(92, 3, 81, 0.08) !important;
}
.content-section-panel.content-section-panel--intro {
background: linear-gradient(180deg, #ffffff 0%, #faf9fb 100%) !important;
} @media (max-width: 768px) {
:root {
--card-radius: 14px;
--card-radius-sm: 12px;
}
.review__wrapper,
.banner__mini,
.acf-toc,
.custom__slots-block {
padding: 22px 18px !important;
}
.review__main-block {
grid-template-columns: 1fr !important;
gap: 20px !important;
}
.review__pros-cons-block {
grid-template-columns: 1fr !important;
}
.banner__mini-content.banner__mini-row {
flex-direction: column !important;
align-items: center !important;
padding: 0 !important;
} .banner__mini {
padding: 16px 12px !important;
margin: 1rem 0 !important;
border-radius: 14px !important;
overflow: hidden !important;
background:
linear-gradient(135deg, rgba(61, 2, 54, 0.97) 0%, rgba(92, 3, 81, 0.92) 55%, rgba(26, 6, 22, 0.98) 100%) !important;
border: 1px solid rgba(212, 175, 95, 0.2) !important;
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32) !important;
color: #ffffff !important;
}
.content-section-panel .banner__mini,
.content__block > .banner__mini {
background:
linear-gradient(135deg, rgba(61, 2, 54, 0.97) 0%, rgba(92, 3, 81, 0.92) 55%, rgba(26, 6, 22, 0.98) 100%) !important;
}
.banner__mini-wrapper {
display: grid !important;
grid-template-columns: minmax(52px, 24%) 1fr minmax(52px, 24%) !important;
grid-template-rows: auto !important;
align-items: center !important;
justify-content: center !important;
gap: 6px 8px !important;
}
.banner__mini-img-first {
grid-column: 1 !important;
grid-row: 1 !important;
display: block !important;
width: 100% !important;
max-width: 84px !important;
max-height: 108px !important;
height: auto !important;
margin: 0 auto !important;
object-fit: contain !important;
position: static !important;
top: auto !important;
left: auto !important;
align-self: end !important;
}
.banner__mini-img-second {
grid-column: 3 !important;
grid-row: 1 !important;
display: block !important;
width: 100% !important;
max-width: 84px !important;
max-height: 108px !important;
height: auto !important;
margin: 0 auto !important;
object-fit: contain !important;
position: static !important;
top: auto !important;
right: auto !important;
align-self: end !important;
}
.banner__mini-content,
.banner__mini-content.banner__mini-row {
grid-column: 2 !important;
grid-row: 1 !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
width: 100% !important;
max-width: 100% !important;
min-width: 0 !important;
padding: 0 !important;
padding-top: 0 !important;
margin: 0 !important;
gap: 10px !important;
}
.banner__mini-text {
width: 100% !important;
text-align: center !important;
}
.banner__mini-title {
font-size: 0.9375rem !important;
line-height: 1.3 !important;
color: #ffffff !important;
}
.banner__mini-subtitle {
font-size: 0.75rem !important;
line-height: 1.4 !important;
margin-top: 0.35rem !important;
color: rgba(255, 255, 255, 0.88) !important;
}
.banner__mini-btn {
display: block !important;
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 10px 12px !important;
font-size: 0.6875rem !important;
letter-spacing: 0.04em !important;
text-align: center !important;
box-sizing: border-box !important;
white-space: normal !important;
line-height: 1.25 !important;
}
}
@media (prefers-reduced-motion: reduce) {
.banner__mini:hover,
.review__wrapper:hover {
transform: none !important;
}
}