:root {
    --main-dark: #0B0033;
    --purple-dark: #370031;
    --red-tone: #832232;
    --warm-gold: #CE8964;
    --yellow-light: #EAF27C;
}

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

body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.7;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

.age-verify-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11,0,51,0.95);
}

.popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-inner {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.popup-inner h2 {
    font-size: 32px;
    color: #0B0033;
    margin-bottom: 20px;
    font-weight: 700;
}

.popup-inner p {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.popup-inner .small-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.verify-btn {
    background: #832232;
    color: #fff;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
}

.verify-btn:hover {
    background: #CE8964;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131,34,50,0.4);
}

@media (max-width: 576px) {
    .popup-inner {
        padding: 35px 25px;
    }

    .popup-inner h2 {
        font-size: 26px;
    }

    .popup-inner p {
        font-size: 16px;
    }

    .verify-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}

.wrapper {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .wrapper {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .wrapper {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .wrapper {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .wrapper {
        max-width: 1140px;
    }
}

.wrapper-fluid {
    max-width: 1600px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.grid-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.brand-col, .nav-col, .nav-content, .info-box, .banner-text {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.brand-col {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.nav-col {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

@media (min-width: 768px) {
    .nav-content {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .banner-text {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}

@media (min-width: 992px) {
    .info-box {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.center-items {
    -ms-flex-align: center!important;
    align-items: center!important;
}

.center-content {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

.center-text {
    text-align: center!important;
}

.spacing-top {
    margin-top: 3rem!important;
}

.space-bottom {
    margin-bottom: 3rem!important;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

.no-style {
    padding-left: 0;
    list-style: none;
}

.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 2;

    background: var(--main-dark)
}

.top-bar .nav-col{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-active .top-bar {
    position: fixed;
}

.brand-col a {
    display: inline-block;
}

.brand-col a img {
    max-width: 200px;
    height: auto;
    max-height: 60px;
}

.main-nav {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    min-height: 300px;
    overflow-y: scroll;
}

.main-nav nav {
    text-align: left;
}

.main-nav nav .nav-list {
    font-family: "Playfair+Display", times, serif;
}

.main-nav nav .nav-list li a {
    color: #000;
    font-size: 40px;
    padding: 5px 10px;
    position: relative;
}

.main-nav nav .nav-list li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 0%;
    z-index: -1;
    background: #fd7e14;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.main-nav nav .nav-list li a:hover:before {
    width: 100%;
}

.main-nav nav .nav-list li.current a:before {
    width: 100%;
}

.height-full {
    height: 100vh;
    min-height: 700px;
}

.nav-active .burger-btn span {
    background: #000;
}

.burger-btn {
    float: right;
    width: 40px;
    height: 12px;
    position: relative;
    z-index: 200;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;

}

.burger-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.burger-btn span:nth-child(1) {
    top: 0px;
}

.burger-btn span:nth-child(2) {
    top: 10px;
}

.burger-btn span:nth-child(3) {
    top: 20px;
}

.burger-btn.open span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.burger-btn.open span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.banner-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-position: center center;
}

.banner-area.dark-layer {
    position: relative;
}

.banner-area.dark-layer:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.72);
}

.banner-area, .banner-area > .wrapper > .grid-row {
    min-height: 620px;
}

.banner-area h1 {
    font-size: 3.8rem;
    font-weight: 420;
    color: #fff;
    font-weight: 850;
}

@media (max-width: 991.98px) {
    .banner-area h1 {
        font-size: 2.2rem;
    }
}

.banner-area p {
    color: white;
    font-size: 1.05rem;
    line-height: 1.52;
    font-weight: 320;
}

.banner-area .big-desc {
    font-size: 1.42rem;
    font-weight: 320;
}

.banner-area .big-desc a {
    color: white;
    border-bottom: dotted 1px #fff;
}

.banner-area .big-desc a:hover {
    color: #fff;
}

.caps-text {
    text-transform: uppercase;
}

.scroll-mouse {
    position: absolute;
    bottom: 42px;
    z-index: 5;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
}

.scroll-mouse .mouse-shape {
    display: block;
    width: 27px;
    height: 47px;
    border: 2px solid white;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    text-align: center;
    -webkit-transition: .32s all ease-in-out;
    -o-transition: .32s all ease-in-out;
    transition: .32s all ease-in-out;
}

.scroll-mouse .mouse-scroll {
    height: 5px;
    margin: 3px auto 0;
    display: block;
    width: 5px;
    background-color: white;
    border-radius: 50%;
    -webkit-animation: 1.7s ease infinite scroll-anim;
    -moz-animation: 1.7s ease infinite scroll-anim;
    animation: 1.7s ease infinite scroll-anim;
}

.scroll-mouse:hover .mouse-shape {
    border-color: #fff;
}

@-webkit-keyframes scroll-anim {
    0% {
        margin-top: 3px;
        opacity: 0;
    }
    32% {
        opacity: 1;
    }
    100% {
        margin-top: 22px;
        opacity: 0;
    }
}

@-moz-keyframes scroll-anim {
    0% {
        margin-top: 3px;
        opacity: 0;
    }
    32% {
        opacity: 1;
    }
    100% {
        margin-top: 22px;
        opacity: 0;
    }
}

@keyframes scroll-anim {
    0% {
        margin-top: 3px;
        opacity: 0;
    }
    32% {
        opacity: 1;
    }
    100% {
        margin-top: 22px;
        opacity: 0;
    }
}

.bottom-info {
    background: #0B0033;
    padding-top: 80px;
    padding-bottom: 50px;
}
.company-info {
    margin-bottom: 30px;
}
.company-info .brand-footer {
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 200px;
}
.company-info .brand-footer a {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-info .brand-footer a img{
    max-width: 100%;
}
.company-info ul {
    margin-bottom: 12px;
}
.company-info ul li {
    list-style: none;
    font-size: 16px;
    color: #b3b3b3;
    line-height: 30px;
}

.links-group {
    margin-bottom: 30px;
}
.links-group.extra-pad {
    padding-left: 35px;
}
.links-group h5 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}
.links-group ul li {
    list-style: none;
}
.links-group ul li a {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 36px;
}

.warning-block {
    margin-top: 40px;
    padding: 25px;
    background: rgba(131,34,50,0.15);
    border-left: 4px solid #832232;
    border-radius: 4px;
}

.warning-block h5 {
    font-size: 18px;
    color: #EAF27C;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.warning-block p {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.warning-block p strong {
    color: #EAF27C;
    font-weight: 700;
}

.regulators-area {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #370031;
}

.regulators-area h5 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

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

.regulator-logos a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.regulator-logos a:hover {
    opacity: 0.8;
}

.regulator-logos img {
    max-width: 260px;
    height: auto;
}

.policy-page {
    padding: 150px 0 80px 0;
    min-height: 60vh;
}

.policy-page h1 {
    font-size: 2.8rem;
    color: #0B0033;
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 120px 0 60px 0;
    }

    .policy-page h1 {
        font-size: 2rem;
    }
}

.policy-page .update-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 35px;
    font-style: italic;
}

.policy-page p {
    color: #2c4e63;
    line-height: 1.8;
    margin-bottom: 1.6rem;
    font-size: 1rem;
}

.about-area {
    padding: 150px 0 80px 0;
}

@media (max-width: 768px) {
    .about-area {
        padding: 120px 0 60px 0;
    }
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

.photo-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(11,0,51,0.15);
}

.content-side h1 {
    font-size: 2.8rem;
    color: #0B0033;
    margin-bottom: 25px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .content-side h1 {
        font-size: 2rem;
    }
}

.content-side p {
    color: #2c4e63;
    line-height: 1.8;
    margin-bottom: 1.6rem;
    font-size: 1rem;
}
.rights-text {
    padding-top: 25px;
    color: #b3b3b3;
    text-align: center;
    font-size: 14px;
}
.rights-text i {
    color: #832232;
}
.rights-text a {
    color: #b3b3b3;
}
.rights-text a:hover {
    color: #832232;
}

@media (max-width: 767px) {
    .links-group.extra-pad {
        padding-left: 15px;
    }

    .main-nav nav .nav-list li a {
        font-size: 28px;
    }
}
.reasons-area {
    padding: 7.5rem 0;
    background: #f5f5f5;
}

@media (max-width: 991.98px) {
    .reasons-area {
        padding: 3.2rem 0;
    }
}

.intro-block {
    margin-bottom: 50px;
}

.title-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.divider-title {
    position: relative;
    padding-bottom: 32px;
    margin-bottom: 32px;
    font-size: 3.2rem;
    color: #832232;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .divider-title {
        font-size: 2.1rem;
    }
}

.divider-title:after {
    bottom: 0;
    left: 0;
    font-size: 24px;
    content: "✂";
    position: absolute;
    color: #bbb;
}

.divider-title.center-align {
    text-align: center;
}

.divider-title.center-align:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.intro-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #0B0033;
    line-height: 1.6;
}

.benefits-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

@media (max-width: 768px) {
    .benefits-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 4px solid #832232;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 5px 20px rgba(131,34,50,0.15);
    transform: translateY(-3px);
}

.benefit-item h4 {
    font-size: 1.4rem;
    color: #0B0033;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    color: #2c4e63;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.testimonials-block {
    padding: 7.5rem 0;
    background: #fff;
}

@media (max-width: 991.98px) {
    .testimonials-block {
        padding: 3.2rem 0;
    }
}

.header-area {
    margin-bottom: 50px;
}

.heading-box {
    max-width: 700px;
    margin: 0 auto;
}

.scissors {
    position: relative;
    padding-bottom: 32px;
    margin-bottom: 32px;
    font-size: 3.2rem;
    color: #832232;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .scissors {
        font-size: 2.1rem;
    }
}

.scissors:after {
    bottom: 0;
    left: 0;
    font-size: 24px;
    content: "✂";
    position: absolute;
    color: #bbb;
}

.scissors.center-align {
    text-align: center;
}

.scissors.center-align:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.subtitle-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #0B0033;
    line-height: 1.6;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.review-card {
    background: #f8f8f8;
    padding: 35px 28px;
    border-radius: 8px;
    border-top: 3px solid #CE8964;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 25px rgba(11,0,51,0.12);
    transform: translateY(-5px);
}

.stars-display {
    margin-bottom: 18px;
}

.stars-display span {
    color: #EAF27C;
    font-size: 22px;
    text-shadow: 0 0 2px rgba(0,0,0,0.2);
    margin-right: 3px;
}

.review-text {
    margin-bottom: 25px;
}

.review-text p {
    color: #2c4e63;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-style: italic;
}

.reviewer-info {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.reviewer-name {
    font-weight: 700;
    color: #0B0033;
    margin-bottom: 5px;
    font-size: 1rem;
}

.review-date {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0;
}
.operators-wrap {
    padding: 80px 0;
}

.operator-card {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .operator-card {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .operator-card.full-card {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.operator-inner {
    background:var(--purple-dark);
    border: 2px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.operator-inner:hover {
    border-color: #832232;
    box-shadow: 0 4px 12px rgba(131,34,50,0.15);
}

.brand-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.operator-details {
    flex: 1;
    min-width: 200px;
}

.operator-name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.star-rating {
    margin-bottom: 12px;
}

.star-rating span {
    color: #ddd;
    font-size: 20px;
    margin-right: 2px;
}

.star-rating span.filled {
    color: #EAF27C;
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.promo-highlight {
    background: linear-gradient(135deg, #832232 0%, #CE8964 100%);
    padding: 12px 18px;
    border-radius: 6px;
    display: inline-block;
}

.promo-highlight .bonus-txt {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.promo-highlight .bonus-txt strong {
    font-weight: 700;
}

.action-area {
    flex-shrink: 0;
}

.claim-btn {
    display: inline-block;
    background: #832232;
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.claim-btn:hover {
    background: #CE8964;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(131,34,50,0.3);
}

@media (max-width: 767px) {
    .operator-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .brand-logo img {
        max-width: 100px;
    }

    .operator-name {
        font-size: 20px;
    }

    .claim-btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}