:root {
    --clr-dark: #272838;
    --clr-yellow: #F3DE8A;
    --clr-coral: #EB9486;
    --clr-muted: #7E7F9A;
    --clr-light: #F9F8F8;
    --western-brown:#8B4513;
    --leather-tone: #654321;
}

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

body {
    font-family: 'Bodoni Moda SC', serif;
    background: var(--clr-light);
    color: var(--clr-dark);
    line-height: 1.6
}

a { text-decoration: none; color:inherit }
ul { list-style: none }
img { max-width: 100%; height: auto }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px
}

.container-fluid { width: 100%; padding: 0 15px }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px
}

.col-2 { flex: 0 0 16.666%; max-width: 16.666%; padding: 0 15px }
.col-6 { flex: 0 0 50%; max-width: 50%; padding:0 15px }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; padding: 0 15px }
.col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px }
.col-md-10 { flex: 0 0 83.333%; max-width: 83.333%; padding: 0 15px }
.col-md-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px }
.col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px }

.d-flex { display: flex }
.d-inline-block { display: inline-block }
.d-none { display: none }
.d-lg-block { display: block }
.align-items-center { align-items: center }
.align-items-start { align-items: flex-start }
.justify-content-center { justify-content: center }
.justify-content-end { justify-content: flex-end }
.text-right { text-align: right }
.text-center { text-align: center }
.text-uppercase { text-transform: uppercase }
.text-black { color: #000 }
.font-weight-light { font-weight: 300 }
.ml-auto { margin-left: auto }
.mr-2 { margin-right: .5rem }
.mr-4 { margin-right: 1.5rem }
.mb-0 { margin-bottom: 0 }
.mb-3 { margin-bottom: 1rem }
.mb-4 { margin-bottom: 1.5rem }
.mb-5 { margin-bottom: 3rem }
.mt-5 { margin-top: 3rem }
.py-1 { padding-top: .25rem; padding-bottom: .25rem }
.py-2 { padding-top: .5rem; padding-bottom: .5rem }
.py-3 { padding-top: 1rem; padding-bottom: 1rem }
.pt-5 { padding-top: 3rem }
.px-0 { padding-left: 0; padding-right: 0 }
.mb-lg-0 { margin-bottom: 0 }
.ml-md-0 { margin-left: 0 }
.h3 { font-size: 1.75rem }
.small { font-size: .875em }
.img-fluid { max-width: 100%; height: auto }
.border { border: 1px solid rgba(0,0,0,.1) }

.bg-white { background-color: #fff }
.bg-light { background-color: var(--clr-light) }

.site-navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: linear-gradient(180deg, var(--clr-dark) 0%, #1d1e2c 100%);
    border-bottom: 4px solid var(--clr-yellow);
    box-shadow: 0 4px 25px rgba(39,40,56,0.4);
    overflow: hidden;
}

.site-navbar-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--clr-coral) 0px, var(--clr-coral) 15px, transparent 15px, transparent 30px)
}

.site-navbar-wrap a {
    color: var(--clr-light);
    transition: color .3s
}

.site-navbar-wrap a:hover { color: var(--clr-yellow) }

.site-navbar-wrap .site-navbar-top {
    font-size: 13px;
    border-bottom: 1px solid rgba(243,222,138,.15);
    background: rgba(0,0,0,.25)
}

.site-navbar-top .mdi {
    color: var(--clr-coral);
    font-size: 16px
}

.restriction-badge {
    display: inline-block;
    background: var(--clr-coral);
    color: #fff;
    padding: 5px 14px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--clr-yellow);
    box-shadow: 2px 2px 0 var(--clr-dark)
}

.site-navbar {
    padding: 10px 0;
    background: transparent!important
}

.site-navbar .site-logo {
    display: flex;
    align-items: center
}

.site-navbar .site-logo a {
    display: block
}

.site-navbar .site-logo img {
    max-height: 50px;
    width: auto
}

.site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
    gap: 5px
}

.site-navbar .site-navigation .site-menu > li {
    display: inline-block;
    padding: 10px 5px
}

.site-navbar .site-navigation .site-menu > li > a {
    padding: 10px 18px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-light);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .3s ease;
    position: relative
}

.site-navbar .site-navigation .site-menu > li > a::before {
    content: '★';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7px;
    opacity: 0;
    color: var(--clr-yellow);
    transition: opacity .3s
}

.site-navbar .site-navigation .site-menu > li > a:hover::before,
.site-navbar .site-navigation .site-menu > li.active > a::before {
    opacity: 1
}

.site-navbar .site-navigation .site-menu > li > a:hover,
.site-navbar .site-navigation .site-menu > li.active > a {
    color: var(--clr-yellow);
    border-color: var(--clr-yellow);
    background: rgba(243,222,138,.08)
}

.site-menu-toggle {
    display: none!important;
    background: 0;
    border: 0;
    cursor: pointer
}

.site-menu-toggle .mdi {
    color: var(--clr-yellow);
    font-size: 28px
}

.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 180px;
    left: 0;
    width: 100%;
    background: var(--clr-dark);
    z-index: 998;
    border-bottom: 3px solid var(--clr-yellow);
    padding: 15px 20px
}

.mobile-nav-panel.active { display: block }

.mobile-links li {
    border-bottom: 1px solid rgba(243,222,138,.15)
}

.mobile-links li:last-child { border: 0 }

.mobile-links a {
    display: block;
    padding: 12px 8px;
    color: var(--clr-light);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.mobile-links a:hover {
    color: var(--clr-yellow);
    background: rgba(243,222,138,.08)
}

.ftco-section { padding: 0; overflow: hidden }

.video-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--clr-dark);
    margin-top: 95px
}

.video-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg,rgba(39,40,56,.92) 0%,rgba(39,40,56,.65) 50%,rgba(139,69,19,.35) 100%)
}

.video-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><text x="25" y="30" text-anchor="middle" font-size="16" fill="%23F3DE8A" opacity="0.04">★</text></svg>');
    pointer-events: none
}

.video-hero .text {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 4em 0
}

.video-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--clr-light);
    line-height: 1.35;
    text-shadow: 2px 2px 5px rgba(0,0,0,.45)
}

.video-hero h1 span a {
    color: var(--clr-yellow);
    border-bottom: 3px solid var(--clr-coral);
    transition: all .3s
}

.video-hero h1 span a:hover {
    color: var(--clr-coral);
    border-color: var(--clr-yellow)
}

.site-footer {
    background: var(--clr-dark);
    padding: 70px 0 0;
    color: var(--clr-light);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg,var(--clr-coral) 0px,var(--clr-coral) 25px,var(--clr-yellow) 25px,var(--clr-yellow) 50px)
}

.site-footer.border-top { border-top: 0 }

.footer-brand {
    margin-bottom: 20px
}

.footer-brand a {
    display: inline-block
}

.footer-logo {
    max-height: 55px;
    width: auto;
    filter: brightness(1.1)
}

.footer-desc {
    color: var(--clr-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px
}

.responsible-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(235,148,134,.12);
    padding: 15px 18px;
    border-left: 4px solid var(--clr-coral);
    border-radius: 0 4px 4px 0
}

.responsible-box .mdi {
    color: var(--clr-coral);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px
}

.responsible-box span {
    color: var(--clr-light);
    font-size: 13px;
    line-height: 1.6
}

.responsible-box strong {
    color: var(--clr-yellow);
    font-weight: 700
}

.footer-heading {
    color: var(--clr-yellow);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px
}

.footer-heading::after {
    content: '★ ★ ★';
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 7px;
    color: var(--clr-coral);
    letter-spacing: 4px
}

.site-footer ul.list-unstyled { padding: 0; margin: 0 }

.site-footer ul.list-unstyled li { margin-bottom: 10px }

.site-footer ul.list-unstyled li a {
    color: var(--clr-muted);
    font-size: 14px;
    transition: all .3s;
    display: inline-block
}

.site-footer ul.list-unstyled li a:hover {
    color: var(--clr-yellow);
    padding-left: 4px
}

.contact-intro {
    color: var(--clr-muted);
    font-size: 14px;
    margin-bottom: 18px
}

.contact-details { display: flex; flex-direction: column; gap: 14px }

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.contact-row .mdi {
    color: var(--clr-coral);
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px
}

.contact-row span,
.contact-row a {
    color: var(--clr-muted);
    font-size: 14px;
    transition: color .3s
}

.contact-row a:hover { color: var(--clr-yellow) }

.regulator-section {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(126,127,154,.2)
}

.regulator-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap
}

.regulator-logos a {
    display: block;
    opacity: .7;
    transition: opacity .3s, transform .3s
}

.regulator-logos a:hover {
    opacity: 1;
    transform: scale(1.05)
}

.regulator-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(30%)
}

.regulator-logos a:hover img {
    filter: grayscale(0)
}

.site-footer .pt-5.mt-5 {
    border-top: 1px solid rgba(126,127,154,.25);
    padding-bottom: 25px
}

.site-footer .pt-5.mt-5 p {
    color: var(--clr-muted);
    font-size: 13px
}

.platformsRanking-block {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--clr-light) 0%, #eae9e7 100%);
    position: relative
}

.platformsRanking-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(90deg, var(--clr-yellow) 0px, var(--clr-yellow) 20px, var(--clr-coral) 20px, var(--clr-coral) 40px)
}

.rankingHeader {
    text-align: center;
    margin-bottom: 50px
}

.ranking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-dark);
    color: var(--clr-yellow);
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--clr-yellow);
    margin-bottom: 18px
}

.ranking-badge .mdi { font-size: 18px }

.ranking-Title {
    font-size: 2.4rem;
    color: var(--clr-dark);
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(255,255,255,.8)
}

.ranking-subtitle {
    color: var(--clr-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto
}

.platformCards-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.platformCard-item {
    position: relative;
    background: #fff;
    border: 3px solid var(--clr-dark);
    box-shadow: 6px 6px 0 var(--clr-muted);
    transition: all .3s ease
}

.platformCard-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--clr-muted)
}

.card-rank-badge {
    position: absolute;
    top: -12px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: var(--clr-yellow);
    color: var(--clr-dark);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--clr-dark);
    z-index: 2
}

.cardInner-layout {
    display: grid;
    grid-template-columns: 280px 1fr 220px;
    gap: 30px;
    padding: 35px 30px;
    align-items: center
}

.cardSection-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px
}

.reviewScore-block {
    display: flex;
    align-items: center;
    gap: 10px
}

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

.starRating .mdi {
    color: var(--clr-yellow);
    font-size: 18px;
    filter: drop-shadow(1px 1px 0 var(--clr-dark))
}

.starRating .mdi-star-outline {
    color: var(--clr-muted);
    filter: none
}

.starRating .mdi-star-half-full {
    color: var(--clr-yellow)
}

.ratingNumber {
    background: var(--clr-dark);
    color: var(--clr-yellow);
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700
}

.logoWrap {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #f8f8f8;
    border: 2px solid rgba(39,40,56,.1)
}

.logoWrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.platform-name {
    font-size: 1.35rem;
    color: var(--clr-dark);
    font-weight: 700;
    margin: 0
}

.platform-shortDesc {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.5;
    margin: 0
}

.cardSection-middle {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.bonusHighlight-box {
    background: linear-gradient(135deg, var(--clr-dark) 0%, #1d1e2c 100%);
    padding: 22px 25px;
    text-align: center;
    border: 2px solid var(--clr-yellow);
    position: relative
}

.bonusHighlight-box::before {
    content: '★';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-yellow);
    color: var(--clr-dark);
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.bonus-label {
    display: block;
    color: var(--clr-coral);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px
}

.bonus-mainText {
    color: var(--clr-yellow);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,.3)
}

.bonus-terms {
    display: block;
    color: var(--clr-muted);
    font-size: 11px;
    margin-top: 8px
}

.advantages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px
}

.advItem {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-dark)
}

.advItem .mdi {
    color: var(--clr-coral);
    font-size: 16px
}

.cardSection-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.claimBtn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-coral);
    color: #fff;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--clr-yellow);
    transition: all .3s ease;
    box-shadow: 3px 3px 0 var(--clr-dark)
}

.claimBtn-primary:hover {
    background: var(--clr-yellow);
    color: var(--clr-dark);
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 var(--clr-dark)
}

.claimBtn-primary .mdi { font-size: 18px }

.btnSubtext {
    font-size: 11px;
    color: var(--clr-muted)
}

.text-image-area {
    position: relative;
    background: var(--clr-light)
}

.story-padding {
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.text-image-area .story-img {
    position: relative;
    margin-left: 40px
}

.text-image-area .story-img .story-imges {
    width: 100%;
    border: 4px solid var(--clr-dark);
    box-shadow: 8px 8px 0 var(--clr-muted)
}

.text-image-area .story-img .shape-flower-img .flower-top {
    position: absolute;
    bottom: -50px;
    left: -50px;
    max-width: 100px;
    opacity: .6
}

.text-image-area .story-caption {
    padding-left: 48px;
    padding-right: 45px;
    padding-top: 48px
}

.text-image-area .story-caption > img {
    margin-bottom: 15px;
    max-height: 45px
}

.text-image-area .story-caption h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--clr-dark);
    font-family: 'Bodoni Moda SC', serif;
    line-height: 1.25;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px
}

.text-image-area .story-caption h3::after {
    content: '★ ★ ★';
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 10px;
    color: var(--clr-coral);
    letter-spacing: 6px
}

.text-image-area .story-caption .story1 {
    margin-bottom: 25px;
    color: var(--clr-muted);
    font-size: 15px;
    line-height: 1.8
}

.text-image-area .story-caption .story2 {
    color: var(--clr-muted);
    font-size: 15px;
    line-height: 1.8
}

.text-image-area .shape-flower .flower1 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 80px;
    opacity: .4
}

.text-image-area .shape-flower .flower2 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 80px;
    opacity: .4
}

.mb-100 { margin-bottom: 0 }

.d-xl-block { display: block }

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.home-about-section {
    padding-bottom: 90px;
    background: linear-gradient(180deg, #eae9e7 0%, var(--clr-light) 100%);
    position: relative
}

.home-about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--clr-coral) 0px, var(--clr-coral) 20px, var(--clr-yellow) 20px, var(--clr-yellow) 40px)
}

.ha-pic {
    box-shadow: 8px 8px 0 var(--clr-muted);
    margin-right: 30px;
    border: 4px solid var(--clr-dark)
}

.ha-pic img {
    min-width: 100%;
    display: block
}

.ha-text {
    padding-top: 50px
}

.ha-text h2 {
    color: var(--clr-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 18px
}

.ha-text h2::after {
    content: '★ ★ ★';
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 10px;
    color: var(--clr-coral);
    letter-spacing: 6px
}

.ha-text p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.8;
    margin-bottom: 20px
}

.ha-text ul {
    margin-bottom: 30px;
    padding: 0
}

.ha-text ul li {
    list-style: none;
    font-size: 15px;
    line-height: 2;
    color: var(--clr-dark);
    display: flex;
    align-items: center;
    gap: 10px
}

.ha-text ul li .icon_check {
    color: var(--clr-coral);
    font-size: 18px
}

.ha-text .ha-btn {
    display: inline-block;
    font-size: 15px;
    color: var(--clr-dark);
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 8px;
    transition: color .3s
}

.ha-text .ha-btn:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: var(--clr-coral);
    content: "";
    transition: background .3s
}

.ha-text .ha-btn:hover {
    color: var(--clr-coral)
}

.ha-text .ha-btn:hover:before {
    background: var(--clr-yellow)
}

.ftco-section.ftco-no-pt { padding-top: 0 }
.ftco-section.ftco-no-pb { padding-bottom: 0 }

section.ftco-section.bg-light {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--clr-light) 0%, #e9e8e6 100%)!important;
    position: relative
}

section.ftco-section.bg-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--clr-yellow) 0px, var(--clr-yellow) 25px, var(--clr-coral) 25px, var(--clr-coral) 50px)
}

.heading-section { margin-bottom: 40px }

.heading-section .subheading {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: var(--clr-coral);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px
}

.heading-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-dark);
    text-transform: uppercase;
    letter-spacing: 1px
}

.pb-3 { padding-bottom: 1rem }

.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px }
.col-md-7 { flex: 0 0 58.333%; max-width: 58.333%; padding: 0 15px }
.col-md-10 { flex: 0 0 83.333%; max-width: 83.333%; padding: 0 15px }
.offset-md-1 { margin-left: 8.333% }
.offset-md-2 { margin-left: 16.666% }

.reviewCard-block {
    background: #fff;
    padding: 30px 25px;
    border: 3px solid var(--clr-dark);
    box-shadow: 5px 5px 0 var(--clr-muted);
    margin-bottom: 25px;
    transition: all .3s ease
}

.reviewCard-block:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--clr-muted)
}

.reviewStars {
    margin-bottom: 15px
}

.reviewStars .mdi {
    color: var(--clr-yellow);
    font-size: 18px;
    filter: drop-shadow(1px 1px 0 var(--clr-dark))
}

.reviewStars .mdi-star-outline {
    color: var(--clr-muted);
    filter: none
}

.reviewCard-block p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--clr-muted);
    margin-bottom: 20px;
    font-style: italic
}

.reviewAuthor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 2px solid rgba(39,40,56,.1)
}

.authorInit {
    width: 42px;
    height: 42px;
    background: var(--clr-dark);
    color: var(--clr-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--clr-yellow)
}

.authorLocation {
    font-size: 13px;
    color: var(--clr-dark);
    font-weight: 600
}

.text-section {
    background: var(--clr-dark);
    position: relative;
    overflow: hidden;
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--clr-coral) 0px, var(--clr-coral) 20px, var(--clr-yellow) 20px, var(--clr-yellow) 40px)
}

.text-section .section-title {
    margin-bottom: 45px
}

.text-section .section-title span {
    color: var(--clr-coral);
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 600
}

.text-section .section-title h2 {
    padding-top: 10px;
    line-height: 1.3;
    font-size: 2.1rem;
    color: var(--clr-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 18px
}

.text-section .section-title h2::after {
    content: '★ ★ ★';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--clr-coral);
    letter-spacing: 6px
}

.text-section .text-content p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.85;
    margin-bottom: 30px;
    padding: 25px 30px;
    background: rgba(255,255,255,.03);
    border-left: 4px solid var(--clr-coral);
    border-radius: 0 4px 4px 0
}

.text-section .text-content p:last-child {
    margin-bottom: 0
}

.text-section .text-content p strong {
    color: var(--clr-yellow);
    font-size: 16px;
    display: block;
    margin-bottom: 10px
}

.col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 15px }

@media screen and (max-width: 1024px) {
    .col-lg-4 { flex: 0 0 50%; max-width: 50% }
    .col-lg-6 { flex: 0 0 100%; max-width: 100% }
    .video-hero h1 { font-size: 2.4rem }

    .regulator-logos { gap: 20px }
    .regulator-logos img { height: 35px }

    .cardInner-layout {
        grid-template-columns: 220px 1fr 180px;
        gap: 20px;
        padding: 30px 25px
    }

    .bonus-mainText { font-size: 1.2rem }
    .claimBtn-primary { padding: 14px 24px; font-size: 14px }

    .text-image-area .story-caption {
        padding-left: 20px;
        padding-right: 0;
        padding-top: 48px
    }

    .d-xl-block { display: none }
}

@media screen and (max-width: 900px) {
    .cardInner-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px
    }

    .cardSection-left { order: 1 }
    .cardSection-middle { order: 2 }
    .cardSection-right { order: 3 }

    .advantages-list { justify-content: center }

    .card-rank-badge {
        left: 50%;
        transform: translateX(-50%)
    }
}

@media screen and (max-width: 768px) {
    .d-none { display: none!important }
    .d-lg-block { display: none!important }
    .d-inline-block { display: inline-block!important }
    .d-md-inline-block { display: none!important }

    .site-menu-toggle { display: block!important }

    .col-2,
    .col-6,
    .col-10,
    .col-md-6,
    .col-md-10,
    .col-md-12,
    .col-lg-4,
    .col-lg-6 { flex: 0 0 100%; max-width: 100% }

    .site-navbar-top .row { flex-direction: column; gap: 8px }
    .site-navbar-top .col-6 { text-align: center }
    .site-navbar-top .d-flex { justify-content: center }

    .site-navbar .row { justify-content: space-between }
    .site-navbar .col-2 { flex: 0 0 auto; max-width: none }
    .site-navbar .col-10 { flex: 0 0 auto; max-width: none }

    .site-navbar .site-logo img { max-height: 40px }

    .video-hero { min-height: 500px; margin-top: 130px }
    .video-hero h1 { font-size: 1.9rem; text-align: center }
    .video-hero .text { text-align: center; padding: 3em 15px }

    .platformsRanking-block { padding: 60px 0 }
    .ranking-Title { font-size: 1.9rem }
    .ranking-subtitle { font-size: .95rem }

    .cardInner-layout { padding: 35px 20px 25px }

    .logoWrap { width: 120px; height: 60px }
    .platform-name { font-size: 1.2rem }

    .bonus-mainText { font-size: 1.15rem }

    .claimBtn-primary {
        width: 100%;
        justify-content: center
    }

    .site-footer { padding: 50px 0 0 }

    .footer-brand { text-align: center }
    .footer-logo { max-height: 45px }
    .footer-desc { text-align: center }
    .responsible-box { flex-direction: column; align-items: center; text-align: center }

    .site-footer .row > .col-lg-4 { margin-bottom: 35px }
    .site-footer .row > .col-lg-4:last-child { margin-bottom: 0 }

    .footer-heading { margin-top: 0 }

    .regulator-logos { gap: 15px }
    .regulator-logos img { height: 30px }

    .site-footer .pt-5.mt-5 { padding-top: 25px; margin-top: 30px!important }

    .story-padding { padding-top: 60px; padding-bottom: 50px }

    .text-image-area .story-img { margin-left: 0; margin-bottom: 40px }
    .text-image-area .story-img .shape-flower-img { display: none }

    .text-image-area .story-caption {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0
    }

    .text-image-area .story-caption h3 { font-size: 1.8rem; margin-bottom: 20px }

    .spad { padding-top: 60px; padding-bottom: 60px }
    .home-about-section { padding-bottom: 50px }
    .ha-pic { margin-right: 0; margin-bottom: 35px; box-shadow: 5px 5px 0 var(--clr-muted) }
    .ha-text { padding-top: 0 }
    .ha-text h2 { font-size: 1.8rem; margin-bottom: 22px }

    section.ftco-section.bg-light { padding: 60px 0 }
    .heading-section h2 { font-size: 1.8rem }
    .col-md-4 { flex: 0 0 100%; max-width: 100% }
    .col-md-7 { flex: 0 0 100%; max-width: 100% }
    .offset-md-2 { margin-left: 0 }
    .reviewCard-block { margin-bottom: 20px }

    .col-lg-8 { flex: 0 0 100%; max-width: 100% }
    .text-section .section-title h2 { font-size: 1.8rem }
    .text-section .text-content p { padding: 20px 22px }
}

@media screen and (max-width: 576px) {
    .container { padding-left: 12px; padding-right: 12px }

    .site-navbar .site-logo img { max-height: 35px }

    .restriction-badge { padding: 4px 10px; font-size: 12px }

    .video-hero { min-height: 450px }
    .video-hero h1 { font-size: 1.6rem }
    .video-hero .text { padding: 2.5em 10px }

    .ranking-Title { font-size: 1.5rem }
    .rankingHeader { margin-bottom: 40px }

    .platformCard-item { box-shadow: 4px 4px 0 var(--clr-muted) }
    .card-rank-badge { width: 38px; height: 38px; font-size: 1.2rem }

    .bonus-mainText { font-size: 1.05rem }
    .bonusHighlight-box { padding: 18px 15px }

    .advantages-list { flex-direction: column; align-items: center }
    .advItem { font-size: 12px }

    .footer-logo { max-height: 40px }
    .footer-desc { font-size: 13px }
    .responsible-box { padding: 12px 14px }
    .responsible-box span { font-size: 12px }

    .footer-heading { font-size: 1rem }

    .site-footer ul.list-unstyled li a { font-size: 13px }
    .contact-row span,
    .contact-row a { font-size: 13px }

    .regulator-logos img { height: 26px }

    .site-footer .pt-5.mt-5 p { font-size: 12px }

    .story-padding { padding-top: 45px; padding-bottom: 35px }
    .text-image-area .story-caption h3 { font-size: 1.5rem }
    .text-image-area .story-caption .story1,
    .text-image-area .story-caption .story2 { font-size: 14px; line-height: 1.7 }

    .spad { padding-top: 45px; padding-bottom: 45px }
    .ha-text h2 { font-size: 1.5rem }
    .ha-text p { font-size: 14px }
    .ha-text ul li { font-size: 14px }
    .ha-text .ha-btn { font-size: 14px }

    section.ftco-section.bg-light { padding: 45px 0 }
    .heading-section .subheading { font-size: 12px }
    .heading-section h2 { font-size: 1.5rem }
    .reviewCard-block { padding: 22px 18px; box-shadow: 4px 4px 0 var(--clr-muted) }
    .reviewCard-block p { font-size: 13px }

    .text-section .section-title h2 { font-size: 1.5rem }
    .text-section .section-title span { font-size: 12px }
    .text-section .text-content p { font-size: 14px; padding: 18px 15px }
    .text-section .text-content p strong { font-size: 15px }
}

@media screen and (max-width:400px) {
    .video-hero h1 { font-size: 1.4rem }
    .site-navbar .site-logo img { max-height: 30px }
    .footer-logo { max-height: 35px }
}


.legal-page-content {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--clr-light);
    min-height: 60vh
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    border: 3px solid var(--clr-dark);
    box-shadow: 8px 8px 0 var(--clr-muted)
}

.legal-wrapper h1 {
    font-size: 2.2rem;
    color: var(--clr-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--clr-yellow);
    text-transform:uppercase;
    letter-spacing: 1px
}

.legal-wrapper h2 {
    font-size: 1.4rem;
    color: var(--clr-dark);
    margin-top: 35px;
    margin-bottom: 18px;
    padding-left: 15px;
    border-left: 4px solid var(--clr-coral)
}

.legal-wrapper h3 {
    font-size: 1.15rem;
    color: var(--clr-muted);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 600
}

.legal-wrapper p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 18px;
    text-align: justify
}

.legal-wrapper p:last-child { margin-bottom:0 }

@media screen and (max-width: 768px) {
    .legal-page-content {
        padding-top: 145px;
        padding-bottom: 50px
    }

    .legal-wrapper {
        padding: 35px 25px;
        margin: 0 10px;
        box-shadow: 5px 5px 0 var(--clr-muted)
    }

    .legal-wrapper h1 {
        font-size: 1.7rem;
        margin-bottom: 25px
    }

    .legal-wrapper h2 {
        font-size: 1.25rem;
        margin-top: 28px
    }

    .legal-wrapper h3 { font-size: 1.1rem }

    .legal-wrapper p {
        font-size: 14px;
        text-align: left
    }
}

@media screen and (max-width: 576px) {
    .legal-page-content { padding-top: 200px }

    .legal-wrapper {
        padding: 28px 20px;
        border-width: 2px
    }

    .legal-wrapper h1 {
        font-size: 1.45rem;
        letter-spacing: 0.5px
    }

    .legal-wrapper h2 { font-size: 1.15rem }
}

/* GDPR Cookies Consent Banner CSS */
.cookieConsent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--clr-dark);
    border-top: 4px solid var(--clr-yellow);
    z-index: 99998;
    padding: 20px 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,.3)
}

.cookieConsent-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--clr-coral) 0px, var(--clr-coral) 15px, var(--clr-yellow) 15px, var(--clr-yellow) 30px)
}

.cookieConsent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cookieConsent-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1
}

.cookieConsent-text .mdi {
    font-size: 28px;
    color: var(--clr-yellow);
    flex-shrink: 0;
    margin-top: 2px
}

.cookieConsent-text p {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin: 0
}

.cookieConsent-text a {
    color: var(--clr-yellow);
    text-decoration: underline;
    transition: color .3s
}

.cookieConsent-text a:hover {
    color: var(--clr-coral)
}

.cookieConsent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0
}

.cookieBtn-settings,
.cookieBtn-decline,
.cookieBtn-accept {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Bodoni Moda SC', serif;
    border: 2px solid
}

.cookieBtn-settings {
    background: transparent;
    color: var(--clr-muted);
    border-color: var(--clr-muted)
}

.cookieBtn-settings:hover {
    color: var(--clr-yellow);
    border-color: var(--clr-yellow)
}

.cookieBtn-decline {
    background: transparent;
    color: var(--clr-coral);
    border-color: var(--clr-coral)
}

.cookieBtn-decline:hover {
    background: var(--clr-coral);
    color: var(--clr-light)
}

.cookieBtn-accept {
    background: var(--clr-coral);
    color: var(--clr-light);
    border-color: var(--clr-yellow);
    box-shadow: 3px 3px 0 rgba(0,0,0,.2)
}

.cookieBtn-accept:hover {
    background: var(--clr-yellow);
    color: var(--clr-dark);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(0,0,0,.2)
}

.cookieConsent-bar.hidden {
    display: none
}

.cookieSettings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39,40,56,.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.cookieSettings-overlay.active {
    display: flex
}

.cookieSettings-modal {
    background: var(--clr-dark);
    border: 3px solid var(--clr-yellow);
    box-shadow: 8px 8px 0 rgba(0,0,0,.4);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto
}

.cookieSettings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 2px solid rgba(243,222,138,.2)
}

.cookieSettings-header h4 {
    font-size: 1.2rem;
    color: var(--clr-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0
}

.cookieSettings-close {
    background: none;
    border: none;
    color: var(--clr-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color .3s;
    padding: 0;
    line-height: 1
}

.cookieSettings-close:hover {
    color: var(--clr-coral)
}

.cookieSettings-body {
    padding: 20px 25px
}

.cookieOption-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(126,127,154,.2)
}

.cookieOption-item:last-child {
    border-bottom: none
}

.cookieOption-info h5 {
    font-size: 15px;
    color: var(--clr-light);
    margin: 0 0 5px 0
}

.cookieOption-info p {
    font-size: 13px;
    color: var(--clr-muted);
    margin: 0;
    line-height: 1.5
}

.toggle-always {
    font-size: 12px;
    color: var(--clr-coral);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-muted);
    transition: .3s;
    border: 2px solid var(--clr-dark)
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: var(--clr-light);
    transition: .3s
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--clr-coral)
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px)
}

.cookieSettings-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-top: 2px solid rgba(243,222,138,.2);
    background: rgba(0,0,0,.2)
}

.cookieSettings-link {
    font-size: 13px;
    color: var(--clr-muted);
    text-decoration: underline;
    transition: color .3s
}

.cookieSettings-link:hover {
    color: var(--clr-yellow)
}

.cookieBtn-saveSettings {
    background: var(--clr-yellow);
    color: var(--clr-dark);
    border: 2px solid var(--clr-yellow);
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Bodoni Moda SC', serif;
    box-shadow: 3px 3px 0 rgba(0,0,0,.2)
}

.cookieBtn-saveSettings:hover {
    background: var(--clr-coral);
    border-color: var(--clr-coral);
    color: var(--clr-light)
}

@media screen and (max-width: 768px) {
    .cookieConsent-inner {
        flex-direction: column;
        text-align: center
    }

    .cookieConsent-text {
        flex-direction: column;
        align-items: center
    }

    .cookieConsent-actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center
    }

    .cookieBtn-settings,
    .cookieBtn-decline,
    .cookieBtn-accept {
        flex: 1;
        justify-content: center;
        min-width: 120px
    }
}

@media screen and (max-width: 480px) {
    .cookieConsent-bar {
        padding: 15px 0
    }

    .cookieConsent-text p {
        font-size: 13px
    }

    .cookieBtn-settings,
    .cookieBtn-decline,
    .cookieBtn-accept {
        padding: 10px 15px;
        font-size: 12px
    }

    .cookieBtn-settings span {
        display: none
    }

    .cookieSettings-header,
    .cookieSettings-body,
    .cookieSettings-footer {
        padding: 15px 18px
    }

    .cookieOption-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}


.ageVerify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39,40,56,.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.ageVerify-modal {
    background: var(--clr-dark);
    border: 4px solid var(--clr-yellow);
    box-shadow: 10px 10px 0 rgba(0,0,0,.4);
    max-width: 420px;
    width: 100%;
    padding: 40px 35px;
    text-align: center;
    position: relative
}

.ageVerify-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(90deg, var(--clr-coral) 0px, var(--clr-coral) 15px, var(--clr-yellow) 15px, var(--clr-yellow) 30px)
}

.ageVerify-icon {
    width: 90px;
    height: 90px;
    background: var(--clr-coral);
    border: 4px solid var(--clr-yellow);
    margin: 0 auto 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative
}

.ageVerify-icon .mdi {
    font-size: 28px;
    color: var(--clr-light);
    position: absolute;
    top: 8px;
    right: 8px
}

.ageVerify-icon span {
    font-size: 32px;
    font-weight: 700;
    color: var(--clr-light);
    margin-top: 10px
}

.ageVerify-title {
    font-size: 1.6rem;
    color: var(--clr-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700
}

.ageVerify-text {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 30px
}

.ageVerify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--clr-coral);
    color: var(--clr-light);
    border: 3px solid var(--clr-yellow);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,.3);
    font-family: 'Bodoni Moda SC', serif
}

.ageVerify-btn:hover {
    background: var(--clr-yellow);
    color: var(--clr-dark);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,.3)
}

.ageVerify-btn .mdi {
    font-size: 20px
}

.ageVerify-warning {
    font-size: 12px;
    color: var(--clr-coral);
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(243,222,138,.2)
}

.ageVerify-overlay.hidden {
    display: none
}

@media screen and (max-width: 480px) {
    .ageVerify-modal {
        padding: 30px 20px
    }

    .ageVerify-icon {
        width: 75px;
        height: 75px
    }

    .ageVerify-icon span {
        font-size: 26px
    }

    .ageVerify-title {
        font-size: 1.3rem
    }

    .ageVerify-text {
        font-size: 14px
    }

    .ageVerify-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%
    }
}