@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --c-purple: #73499e;
    --c-purple-dark: #5a3780;
    --c-purple-light: #8f62ba;
    --c-purple-xlight: #ede5f6;
    --c-green: #52cf27;
    --c-green-dark: #3ea81c;
    --c-orange: #f3902f;
    --c-orange-dark: #d4751a;
    --c-bg: #eef0f5;
    --c-bg-alt: #e4e7f0;
    --c-white: #ffffff;
    --c-text: #1a1a2e;
    --c-text-muted: #5a5a7a;
    --c-border: #d0d4e8;
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(115, 73, 158, .12);
    --shadow-md: 0 4px 20px rgba(115, 73, 158, .18);
    --shadow-lg: 0 8px 40px rgba(115, 73, 158, .25);
    --font-main: 'Roboto Condensed', Arial, sans-serif;
    --transition: all .25s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-main);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.55;
    overflow-x: hidden
}

a {
    color: var(--c-orange);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--c-orange-dark)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font-main)
}

.xb4r2a {
    display: none
}

.g9m1kz {
}

.f7x3qp {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--r-sm);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .4px;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer
}

.btn--green {
    background: var(--c-green);
    color: var(--c-white)
}

.btn--green:hover {
    background: var(--c-green-dark);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(82, 207, 39, .35)
}

.btn--orange {
    background: var(--c-orange);
    color: var(--c-white)
}

.btn--orange:hover {
    background: var(--c-orange-dark);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(243, 144, 47, .35)
}

.btn--outline {
    background: transparent;
    color: var(--c-white);
    border: 2px solid var(--c-white)
}

.btn--outline:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--c-white)
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.1rem
}

.btn--sm {
    padding: 7px 14px;
    font-size: .85rem
}

.btn--full {
    width: 100%
}

.site-header {
    background: var(--c-purple);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .25)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    max-width: 1240px;
    margin: 0 auto
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.header-logo img {
    height: 44px;
    width: auto
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.header-nav a {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: .88rem;
    padding: 6px 10px;
    border-radius: var(--r-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--c-white)
}

.header-nav a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 10px
}

.players-online {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .8);
    font-size: .8rem;
    white-space: nowrap
}

.players-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    animation: pulse-dot 1.8s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .7;
        transform: scale(1.3)
    }
}

.lang-select {
    position: relative
}

.lang-select select {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--c-white);
    padding: 5px 26px 5px 8px;
    border-radius: var(--r-sm);
    font-size: .8rem;
    cursor: pointer;
    appearance: none;
    font-family: var(--font-main)
}

.lang-select::after {
    content: '▾';
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-white);
    font-size: .7rem;
    pointer-events: none
}

.lang-select select option {
    background: var(--c-purple-dark);
    color: var(--c-white)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: var(--transition)
}

.burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-cc.png');
    background-size: cover;
    background-position: center
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 55, 128, .88) 0%, rgba(30, 10, 60, .7) 60%, rgba(115, 73, 158, .4) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 16px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp .6s ease both
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--c-white);
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .5px
}

.hero h1 {
    color: var(--c-white);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4)
}

.hero-bonus {
    background: linear-gradient(135deg, rgba(82, 207, 39, .2), rgba(243, 144, 47, .2));
    border: 1px solid rgba(82, 207, 39, .4);
    border-radius: var(--r-md);
    padding: 16px 24px;
    margin: 18px 0;
    display: inline-block
}

.hero-bonus-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-green);
    text-shadow: 0 0 20px rgba(82, 207, 39, .5)
}

.hero-bonus-sub {
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    margin-top: 4px
}

.hero-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px
}

.hero-disclaimer {
    color: rgba(255, 255, 255, .55);
    font-size: .72rem;
    margin-top: 12px
}

.section {
    padding: 56px 0
}

.section-alt {
    background: var(--c-bg-alt)
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-purple);
    margin-bottom: 8px;
    text-align: center
}

.section-sub {
    text-align: center;
    color: var(--c-text-muted);
    margin-bottom: 36px;
    font-size: 1rem
}

.section-divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--c-purple), var(--c-orange));
    border-radius: 2px;
    margin: 0 auto 36px
}

.advantages-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.adv-card {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-purple-light)
}

.adv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-purple-xlight), #ddd6f3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.adv-icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-purple)
}

.adv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text)
}

.adv-card p {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm)
}

table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--c-white);
    font-size: .9rem
}

table caption {
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-purple);
    padding: 14px 16px;
    text-align: left;
    background: var(--c-purple-xlight);
    border-radius: var(--r-md) var(--r-md) 0 0
}

thead tr {
    background: var(--c-purple)
}

thead th {
    color: var(--c-white);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    font-size: .85rem;
    letter-spacing: .3px
}

tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: var(--transition)
}

tbody tr:last-child {
    border-bottom: none
}

tbody tr:hover {
    background: var(--c-purple-xlight)
}

tbody td {
    padding: 12px 16px;
    color: var(--c-text);
    vertical-align: middle
}

tbody td:first-child {
    font-weight: 600
}

.payment-logo {
    width: 60px;
    height: 28px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 2px 4px
}

.payment-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: .88rem
}

.screenshots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px
}

.screenshot-item {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--c-border);
    transition: var(--transition);
    aspect-ratio: 16/10
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.screenshot-item:hover {
    border-color: var(--c-purple);
    box-shadow: var(--shadow-md)
}

.screenshot-item:hover img {
    transform: scale(1.04)
}

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md)
}

.slider-track {
    display: flex;
    transition: transform .35s ease
}

.slider-slide {
    flex: 0 0 100%;
    padding: 0 4px
}

.slider-slide img {
    width: 100%;
    border-radius: var(--r-md);
    aspect-ratio: 16/10;
    object-fit: cover
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-purple);
    color: var(--c-white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.slider-btn:hover {
    background: var(--c-purple-dark)
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 6px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    transition: var(--transition);
    border: none;
    cursor: pointer
}

.slider-dot.active {
    background: var(--c-purple);
    transform: scale(1.3)
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md)
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--r-md)
}

.wheel-section {
    background: linear-gradient(135deg, var(--c-purple-dark), #2e1a4e)
}

.wheel-container {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto
}

.wheel-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.wheel-pointer {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid #ffd700;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5));
    z-index: 2;
    flex-shrink: 0
}

#luckyCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(115, 73, 158, .6), 0 0 0 6px rgba(255, 255, 255, .15);
    display: block
}

.wheel-info {
    color: var(--c-white)
}

.wheel-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px
}

.wheel-info p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    margin-bottom: 20px
}

.wheel-result {
    display: none;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-md);
    padding: 20px;
    margin-top: 16px;
    text-align: center;
    animation: fadeInUp .4s ease
}

.wheel-result.win {
    border-color: rgba(82, 207, 39, .5);
    background: rgba(82, 207, 39, .1)
}

.wheel-result.lose {
    border-color: rgba(243, 144, 47, .4);
    background: rgba(243, 144, 47, .08)
}

.wheel-result-icon {
    font-size: 2rem;
    margin-bottom: 8px
}

.wheel-result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white)
}

.wheel-result-sub {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px
}

.review-block {
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border)
}

.review-block h2 {
    color: var(--c-purple);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px
}

.review-block .author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--c-purple-xlight);
    border-radius: var(--r-md);
    margin-bottom: 28px;
    border-left: 4px solid var(--c-purple)
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--c-purple)
}

.author-info h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-purple)
}

.author-info p {
    font-size: .83rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-top: 3px
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px
}

.author-links a {
    font-size: .78rem;
    color: var(--c-orange);
    font-weight: 600
}

.review-content {
    color: var(--c-text);
    line-height: 1.65;
    font-size: .97rem
}

.review-content h2, .review-content h3, .review-content h4 {
    color: var(--c-purple);
    margin: 1.4em 0 .6em;
    font-weight: 800
}

.review-content h2 {
    font-size: 1.4rem
}

.review-content h3 {
    font-size: 1.2rem
}

.review-content h4 {
    font-size: 1.05rem
}

.review-content p {
    margin-bottom: 1em
}

.review-content ul, .review-content ol {
    padding-left: 20px;
    margin-bottom: 1em
}

.review-content ul {
    list-style: disc
}

.review-content ol {
    list-style: decimal
}

.review-content li {
    margin-bottom: .4em
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: .9rem
}

.review-content table th {
    background: var(--c-purple);
    color: var(--c-white);
    padding: 10px 14px;
    text-align: left
}

.review-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    text-align: left
}

.review-content table tr:hover td {
    background: var(--c-purple-xlight)
}

.review-content a {
    color: var(--c-orange);
    font-weight: 600
}

.review-content blockquote {
    border-left: 4px solid var(--c-purple);
    padding: 12px 16px;
    background: var(--c-purple-xlight);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 1em 0;
    font-style: italic
}

.review-content strong {
    color: var(--c-text);
    font-weight: 700
}

.review-content img {
    border-radius: var(--r-sm);
    margin: 1em 0;
    max-width: 100%
}

.responsible-block {
    background: linear-gradient(135deg, #fff9f0, #fff3f0);
    border: 2px solid #f5c6a0;
    border-radius: var(--r-lg);
    padding: 36px
}

.responsible-block h2 {
    color: #c0392b;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.responsible-block p {
    color: var(--c-text);
    line-height: 1.6;
    margin-bottom: 20px
}

.responsible-links {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px
}

.responsible-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-white);
    border: 1px solid #f5c6a0;
    border-radius: var(--r-sm);
    padding: 12px 14px;
    transition: var(--transition);
    color: var(--c-text);
    font-weight: 600;
    font-size: .88rem
}

.responsible-link:hover {
    border-color: #c0392b;
    background: #fff0ee;
    color: #c0392b
}

.responsible-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #c0392b
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto
}

.faq-item {
    background: var(--c-white);
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-text);
    gap: 12px;
    transition: var(--transition)
}

.faq-question:hover {
    background: var(--c-purple-xlight);
    color: var(--c-purple)
}

.faq-question.active {
    background: var(--c-purple);
    color: var(--c-white)
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .85rem;
    transition: var(--transition)
}

.faq-question.active .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s
}

.faq-answer.open {
    max-height: 600px
}

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--c-text-muted);
    line-height: 1.65;
    font-size: .95rem
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px
}

.review-card {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: 20px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-purple-light)
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-purple-xlight);
    background: var(--c-purple-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-purple);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0
}

.reviewer-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--c-text)
}

.reviewer-date {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-top: 2px
}

.stars {
    display: flex;
    gap: 2px
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: #f3902f
}

.review-card p {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.review-form {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: 28px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 0 auto
}

.review-form h3 {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--c-purple);
    margin-bottom: 20px
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px
}

.form-field label {
    font-weight: 600;
    font-size: .875rem;
    color: var(--c-text)
}

.form-field input, .form-field textarea {
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    font-family: var(--font-main);
    font-size: .95rem;
    color: var(--c-text);
    transition: var(--transition);
    background: var(--c-bg);
    outline: none
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--c-purple);
    background: var(--c-white);
    box-shadow: 0 0 0 3px rgba(115, 73, 158, .12)
}

.form-field textarea {
    min-height: 110px;
    resize: vertical
}

.form-success {
    display: none;
    background: rgba(82, 207, 39, .1);
    border: 1px solid rgba(82, 207, 39, .4);
    border-radius: var(--r-md);
    padding: 18px 20px;
    text-align: center;
    color: var(--c-green-dark);
    font-weight: 600;
    animation: fadeInUp .4s ease
}

.form-success.show {
    display: block
}

.site-footer {
    background: var(--c-purple-dark);
    color: rgba(255, 255, 255, .85);
    padding: 48px 0 0
}

.footer-top {
    display: grid;
    grid-template-columns:200px 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-logo-col {
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px
}

.footer-flag .flag {
    font-size: 1.2rem
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--c-white)
}

.footer-social a:hover {
    background: var(--c-orange);
    color: var(--c-white)
}

.footer-social a svg {
    width: 16px;
    height: 16px
}

.footer-col h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-col ul li {
    margin-bottom: 7px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: var(--transition)
}

.footer-col ul li a:hover {
    color: var(--c-orange)
}

.footer-bottom-strip {
    background: rgba(0, 0, 0, .25);
    margin-top: 0;
    padding: 20px 0
}

.footer-logos-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    justify-content: center
}

.footer-logo-badge {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: .8;
    filter: brightness(0) invert(1);
    transition: var(--transition)
}

.footer-logo-badge:hover {
    opacity: 1
}

.footer-logo-badge-colored {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: .85;
    transition: var(--transition)
}

.footer-logo-badge-colored:hover {
    opacity: 1
}

.badge-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    color: var(--c-white);
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .2);
    letter-spacing: .3px
}

.footer-legal {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.55;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 14px 16px 0
}

.footer-legal a {
    color: rgba(255, 255, 255, .55)
}

.footer-legal a:hover {
    color: var(--c-orange)
}

.footer-copyright {
    text-align: center;
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    padding: 12px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 12px
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--c-purple-dark), #2e1a4e);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .3);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 2px solid var(--c-green)
}

.sticky-widget-text {
    color: var(--c-white);
    font-size: .88rem;
    font-weight: 600
}

.sticky-widget-text span {
    color: var(--c-green);
    font-weight: 800
}

.sticky-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: rgba(255, 255, 255, .6);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .75rem;
    transition: var(--transition)
}

.sticky-close:hover {
    background: rgba(255, 255, 255, .2);
    color: var(--c-white)
}

.providers-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px
}

.provider-badge {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 6px 14px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--c-text-muted);
    transition: var(--transition)
}

.provider-badge:hover {
    border-color: var(--c-purple);
    color: var(--c-purple)
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 10px 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm)
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-purple)
}

.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.rating-stars .stars svg {
    width: 18px;
    height: 18px
}

.rating-label {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.info-page {
    padding: 60px 0
}

.info-page .container {
    max-width: 840px
}

.info-page h1 {
    color: var(--c-purple);
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 20px
}

.info-page .text h2 {
    color: var(--c-purple);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.6em 0 .6em
}

.info-page .text h3 {
    color: var(--c-purple-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.2em 0 .5em
}

.info-page .text p {
    margin-bottom: .9em;
    line-height: 1.65;
    color: var(--c-text)
}

.info-page .text ul, .info-page .text ol {
    padding-left: 20px;
    margin-bottom: .9em
}

.info-page .text ul {
    list-style: disc
}

.info-page .text ol {
    list-style: decimal
}

.info-page .text li {
    margin-bottom: .35em;
    line-height: 1.55
}

.info-page .text a {
    color: var(--c-orange);
    font-weight: 600
}

.info-page .text strong {
    font-weight: 700
}

.info-page .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: .9rem
}

.info-page .text table th {
    background: var(--c-purple);
    color: #fff;
    padding: 10px 14px;
    text-align: left
}

.info-page .text table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border)
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--c-text-muted);
    padding: 10px 0 0;
    flex-wrap: wrap
}

.breadcrumb a {
    color: var(--c-orange)
}

.breadcrumb span {
    color: var(--c-text-muted)
}

@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns:auto 1fr auto
    }

    .footer-top {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }

    .reviews-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .screenshots-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .wheel-container {
        grid-template-columns:1fr;
        text-align: center;
        gap: 24px
    }

    .wheel-info {
        order: -1
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto 1fr auto;
        padding: 8px 12px
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--c-purple-dark);
        z-index: 1100;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 80px 20px 100px
    }

    .header-nav.is-open {
        display: flex
    }

    .header-nav a {
        font-size: 1.1rem;
        padding: 10px 20px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        background: rgba(255, 255, 255, .07)
    }

    .header-right .header-meta {
        display: none
    }

    .burger {
        display: flex;
        z-index: 1200
    }

    .header-actions {
        gap: 4px
    }

    .hero h1 {
        font-size: 1.75rem
    }

    .hero-bonus-main {
        font-size: 1.4rem
    }

    .section-title {
        font-size: 1.5rem
    }

    .reviews-grid {
        grid-template-columns:1fr
    }

    .screenshots-grid {
        display: none
    }

    .screenshots-slider {
        display: block
    }

    .footer-top {
        grid-template-columns:1fr
    }

    .footer-logos-row {
        gap: 8px
    }

    .sticky-widget {
        padding: 8px 44px 8px 12px
    }

    .advantages-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .responsible-links {
        grid-template-columns:1fr
    }

    .review-block .author-box {
        flex-direction: column
    }

    .review-block {
        padding: 24px 16px
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns:1fr
    }

    .hero-cta {
        flex-direction: column;
        align-items: center
    }

    .btn--lg {
        padding: 12px 24px;
        font-size: 1rem
    }

    .hero {
        min-height: 360px
    }

    .hero-content {
        padding: 40px 12px
    }
}

.wp-block {
    display: none
}

.elementor-section {
    display: contents
}

.entry-meta, .post-meta {
    display: none
}

.widget-area {
    display: none
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.info-main {
    position: relative;
    flex: 1;
    padding: 34px 0 88px;
    background: radial-gradient(circle at 10% 5%, rgba(115, 73, 158, .1), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(243, 144, 47, .08), transparent 25%),
    var(--c-bg);
}

.info-main .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--c-text-muted);
    font-size: .86rem;
    line-height: 1.4;
}

.info-breadcrumb a {
    color: var(--c-purple);
    font-weight: 700;
}

.info-breadcrumb a:hover {
    color: var(--c-orange);
}

.info-breadcrumb span[aria-hidden="true"] {
    color: #9a9aad;
}

.info-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 28px;
}

.info-content {
    min-width: 0;
    padding: 40px 42px;
    background: var(--c-white);
    border: 1px solid rgba(115, 73, 158, .18);
    border-radius: var(--r-lg);
    box-shadow: 0 3px 8px rgba(26, 26, 46, .04),
    0 18px 48px rgba(90, 55, 128, .12);
    overflow: hidden;
}

.info-content > h1 {
    position: relative;
    margin: 0 0 28px;
    padding: 0 0 18px;
    color: var(--c-purple-dark);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.info-content > h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82px;
    height: 5px;
    background: linear-gradient(90deg, var(--c-purple), var(--c-orange));
    border-radius: 999px;
}

.info-body {
    color: var(--c-text);
    font-size: 1rem;
    line-height: 1.75;
}

.info-body > :first-child {
    margin-top: 0;
}

.info-body > :last-child {
    margin-bottom: 0;
}

.info-body p {
    margin: 0 0 18px;
    color: var(--c-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.info-body h2,
.info-body h3,
.info-body h4 {
    color: var(--c-purple-dark);
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.info-body h2 {
    position: relative;
    margin: 38px 0 17px;
    padding: 0 0 11px 18px;
    font-size: 1.55rem;
    border-bottom: 1px solid var(--c-border);
}

.info-body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 11px;
    width: 5px;
    background: linear-gradient(180deg, var(--c-purple), var(--c-orange));
    border-radius: 5px;
}

.info-body h3 {
    margin: 28px 0 13px;
    font-size: 1.25rem;
}

.info-body h4 {
    margin: 24px 0 11px;
    font-size: 1.08rem;
}

.info-body ul,
.info-body ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 24px;
    padding-left: 0;
    list-style: none;
}

.info-body li {
    position: relative;
    padding-left: 30px;
    color: var(--c-text-muted);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.info-body ul > li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    background: rgba(82, 207, 39, .13);
    border: 1px solid rgba(82, 207, 39, .28);
    border-radius: 50%;
    color: var(--c-green-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.info-body ol {
    counter-reset: info-counter;
}

.info-body ol > li {
    counter-increment: info-counter;
}

.info-body ol > li::before {
    content: counter(info-counter);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--c-purple);
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.info-body strong {
    color: var(--c-text);
    font-weight: 800;
}

.info-body a {
    color: var(--c-orange-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.info-body a:hover {
    color: var(--c-purple);
}

.info-body table {
    width: 100%;
    min-width: 0;
    margin: 26px 0;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.info-body thead {
    background: linear-gradient(90deg, var(--c-purple-dark), var(--c-purple));
}

.info-body thead th {
    padding: 14px 16px;
    border: 0;
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    vertical-align: top;
}

.info-body tbody td {
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: .92rem;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.info-body tbody tr:last-child td {
    border-bottom: 0;
}

.info-body tbody tr:nth-child(even) td {
    background: rgba(115, 73, 158, .035);
}

.info-body tbody tr:hover td {
    background: var(--c-purple-xlight);
}

.info-body table td:first-child {
    color: var(--c-text);
    font-weight: 800;
}

.info-body p:last-child {
    margin-top: 30px !important;
    padding: 18px 20px;
    background: linear-gradient(135deg, #fff7ec, #fff1ed);
    border: 1px solid rgba(243, 144, 47, .42);
    border-left: 5px solid var(--c-orange);
    border-radius: 12px;
    color: var(--c-text);
}

.info-sidebar {
    position: sticky;
    top: 86px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.sidebar-widget {
    padding: 22px;
    background: var(--c-white);
    border: 1px solid rgba(115, 73, 158, .16);
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(26, 26, 46, .03),
    0 12px 28px rgba(90, 55, 128, .1);
    overflow: hidden;
}

.sidebar-widget h4 {
    position: relative;
    margin: 0 0 16px;
    padding-bottom: 11px;
    color: var(--c-purple-dark);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
}

.sidebar-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-purple), var(--c-orange));
    border-radius: 5px;
}

.sidebar-bonus-card {
    text-align: center;
}

.sidebar-bonus-card img {
    width: auto;
    max-width: 150px;
    height: auto;
    margin: 0 auto 14px;
}

.sidebar-bonus-text {
    margin-bottom: 5px;
    color: var(--c-text-muted);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.sidebar-bonus-amount {
    margin-bottom: 14px;
    color: var(--c-purple-dark);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.2;
}

.sidebar-bonus-card .btn {
    min-height: 44px;
    border-radius: 10px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-links li {
    margin: 0;
}

.sidebar-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px 10px 32px;
    background: var(--c-bg);
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.sidebar-links a::before {
    content: "›";
    position: absolute;
    left: 13px;
    color: var(--c-orange);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease;
}

.sidebar-links a:hover {
    background: var(--c-purple-xlight);
    border-color: rgba(115, 73, 158, .2);
    color: var(--c-purple-dark);
}

.sidebar-links a:hover::before {
    transform: translateX(3px);
}

.sticky-widget {
    min-height: 62px;
    padding: 10px 54px 10px 18px;
}

.sticky-widget-text {
    min-width: 0;
    line-height: 1.4;
    text-align: center;
}

.sticky-widget .btn {
    min-height: 40px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .info-main {
        padding-top: 28px;
    }

    .info-content-wrap {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 22px;
    }

    .info-content {
        padding: 34px 30px;
    }

    .sidebar-widget {
        padding: 19px;
    }

    .sidebar-bonus-amount {
        font-size: 1.35rem;
    }
}

@media (max-width: 860px) {
    .info-main {
        padding: 24px 0 94px;
    }

    .info-main .container {
        padding: 0 16px;
    }

    .info-content-wrap {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .info-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .info-sidebar .sidebar-widget:first-child {
        grid-column: 1 / -1;
    }

    .sidebar-bonus-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .info-main {
        padding-top: 18px;
        padding-bottom: 120px;
    }

    .info-main .container {
        padding: 0 12px;
    }

    .info-breadcrumb {
        margin-bottom: 14px;
        font-size: .78rem;
    }

    .info-content {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .info-content > h1 {
        margin-bottom: 22px;
        padding-bottom: 14px;
        font-size: 1.85rem;
    }

    .info-content > h1::after {
        width: 64px;
        height: 4px;
    }

    .info-body {
        font-size: .95rem;
    }

    .info-body p {
        margin-bottom: 16px;
        font-size: .95rem;
        line-height: 1.68;
    }

    .info-body h2 {
        margin-top: 31px;
        padding-left: 14px;
        font-size: 1.3rem;
    }

    .info-body h2::before {
        width: 4px;
    }

    .info-body h3 {
        font-size: 1.15rem;
    }

    .info-body li {
        padding-left: 28px;
        font-size: .94rem;
    }

    .info-body table,
    .info-body thead,
    .info-body tbody,
    .info-body tr,
    .info-body th,
    .info-body td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .info-body table {
        border: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .info-body thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .info-body tbody {
        display: grid;
        gap: 14px;
    }

    .info-body tbody tr {
        display: block;
        padding: 15px;
        background: var(--c-white);
        border: 1px solid var(--c-border);
        border-left: 4px solid var(--c-purple);
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
    }

    .info-body tbody td {
        position: relative;
        display: grid;
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 10px;
        padding: 8px 0;
        background: transparent !important;
        border: 0;
        border-bottom: 1px dashed var(--c-border);
        font-size: .88rem;
    }

    .info-body tbody td:last-child {
        border-bottom: 0;
    }

    .info-body tbody td::before {
        color: var(--c-purple-dark);
        font-weight: 800;
    }

    .info-body tbody td:nth-child(1)::before {
        content: "Organisatie";
    }

    .info-body tbody td:nth-child(2)::before {
        content: "Website";
    }

    .info-body tbody td:nth-child(3)::before {
        content: "Diensten";
    }

    .info-body p:last-child {
        padding: 16px;
        font-size: .92rem;
    }

    .info-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }

    .info-sidebar .sidebar-widget:first-child {
        grid-column: auto;
    }

    .sidebar-widget {
        padding: 19px 17px;
        border-radius: 14px;
    }

    .sidebar-bonus-amount {
        font-size: 1.35rem;
    }

    .sticky-widget {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 10px;
        padding: 9px 42px 9px 12px;
    }

    .sticky-widget-text {
        font-size: .78rem;
        text-align: left;
    }

    .sticky-widget .btn {
        padding: 9px 13px;
        font-size: .8rem;
    }

    .sticky-close {
        right: 9px;
    }
}

@media (max-width: 420px) {
    .info-main {
        padding-bottom: 142px;
    }

    .info-content {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .info-content > h1 {
        font-size: 1.65rem;
    }

    .info-body h2 {
        font-size: 1.2rem;
    }

    .info-body tbody tr {
        padding: 13px;
    }

    .info-body tbody td {
        grid-template-columns: minmax(0, 1fr);
        gap: 3px;
    }

    .sidebar-widget {
        padding: 17px 14px;
    }

    .sidebar-bonus-amount {
        font-size: 1.22rem;
    }

    .sticky-widget {
        grid-template-columns: minmax(0, 1fr);
        padding: 10px 42px 10px 12px;
    }

    .sticky-widget-text {
        text-align: center;
    }

    .sticky-widget .btn {
        width: 100%;
    }
}

.cadad {
    overflow: hidden;
}

.cadad table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
}

.cadad th,
.cadad td {
    padding: 14px 18px;
    border: 1px solid #e6e6e6;
    text-align: left;
}

@media (max-width: 768px) {

    .cadad {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cadad table {
        min-width: 650px;
    }
}