.contact-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'SUSE Mono', monospace;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-msg {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.submit-btn {
    background: var(--main-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: 'SUSE Mono', monospace;
}

.submit-btn:hover:not(:disabled) {
    background: var(--dark-text);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.thank-you-popup .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.thank-you-popup .popup-content {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    position: relative;
    z-index: 10;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-icon {
    font-size: 60px;
    color: #4caf50;
    margin-bottom: 20px;
}

.thank-you-popup h3 {
    font-size: 24px;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.thank-you-popup p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.close-popup-btn {
    background: var(--main-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'SUSE Mono', monospace;
}

.close-popup-btn:hover {
    background: var(--dark-text);
}

@media (max-width: 767px) {
    .contact-form {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .thank-you-popup .popup-content {
        padding: 30px 25px;
        margin: 20px;
    }
}.page-content {
     padding: 120px 0 80px;
 }

.page-content h1 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    text-align: center;
}

.page-content h2 {
    font-size: 1.5rem;
    color: var(--main-color);
    margin: 40px 0 20px;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.page-content strong {
    color: var(--main-color);
    font-weight: 600;
}

@media (max-width: 767px) {
    .page-content {
        padding: 100px 0 60px;
    }

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

    .page-content h2 {
        font-size: 1.3rem;
    }
}.regulator-logos {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     margin-top: 20px;
 }

.regulator-logos a {
    display: block;
}

.regulator-logos img {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.regulator-logos img:hover {
    opacity: 1;
}

.gambling-warning {
    font-size: 14px;
    line-height: 1.5;
    color: #d32f2f;
    font-weight: 500;
    border-left: 3px solid #d32f2f;
    padding-left: 12px;
}.hero-advantages {
     margin-top: 30px;
 }

.advantage-item {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .advantage-item {
        font-size: 16px;
        margin-bottom: 10px;
    }
}.site-logo img {
     max-height: 50px;
     width: auto;
 }

@media (max-width: 767px) {
    .site-logo img {
        max-height: 40px;
    }
}:root {
     --main-color: #DD6031;
     --light-bg: #ECE4B7;
     --green-accent: #D9DD92;
     --orange-light: #EABE7C;
     --dark-text: #311E10;
 }

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

body {
    font-family: 'SUSE Mono', monospace;
    line-height: 1.6;
    color: var(--dark-text);
}

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

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

.col-xl-3, .col-lg-3, .col-md-6, .col-xl-12, .col-lg-6 {
    padding: 0 15px;
}

.col-xl-3, .col-lg-3 {
    width: 25%;
}

.col-md-6, .col-lg-6 {
    width: 50%;
}

.col-xl-12 {
    width: 100%;
}

@media (max-width: 991px) {
    .col-lg-3, .col-lg-6 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .col-xl-3, .col-lg-3, .col-md-6, .col-lg-6 {
        width: 100%;
    }
}

.header-section {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    padding: 25px 35px 0;
    z-index: 99;
    background: #F6FCFF;

    display: flex;
    align-items: center;
    justify-content: center;
}
.site-logo {
    float: left;
}
.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu li {
    display: inline-block;
}
.main-menu li a {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-right: 60px;
    padding: 5px 5px;
    text-decoration: none;
}
.main-menu li:last-child a {
    margin-right: 0;
}
.nav-switch {
    display: none;
}

@media only screen and (max-width: 767px) {
    .nav-switch {
        right: 30px;
        display: block;
        float: right;
        font-size: 32px;
        cursor: pointer;
        color: #fff;
        margin-right: 40px;
        line-height: 32px;
    }
    .main-menu {
        float: none;
        padding-top: 0;
        background: #fff;
        position: absolute;
        width: 100%;
        left: 0;
        top: 118%;
        display: none;
    }
    .main-menu li {
        display: block;
        border-top: 1px solid #efefef;
    }
    .main-menu li a {
        display: block;
        color: #111;
        margin-left: 0;
        padding: 15px 35px;
    }
}

.owl-carousel {
    position: relative;
}

.ftco-blocks-cover-1 {
    display: none;
}

.ftco-blocks-cover-1:first-child {
    display: block;
}

.ftco-blocks-cover-1 .ftco-service-image-1 {
    margin-top: -70px;
    position: static;
}

.ftco-cover-1 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.ftco-cover-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.ftco-cover-1 .container {
    position: relative;
    z-index: 2;
}

.ftco-cover-1,
.ftco-cover-1 .container > .row {
    min-height: 600px;
}

.ftco-cover-1 > .container {
    position: relative;
}

.ftco-cover-1 h1 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .ftco-cover-1 h1 {
        font-size: 2rem;
    }
}

.ftco-cover-1 p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.text-primary {
    color: var(--main-color) !important;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--main-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--dark-text);
    color: #fff;
}

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

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.px-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.py-2 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.footer {
    background-repeat: no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background: #F6FCFF;
}

.footer .footer_top {
    padding-top: 118px;
    padding-bottom: 105px;
}

@media (max-width: 767px) {
    .footer .footer_top {
        padding-top: 63px;
        padding-bottom: 32px;
    }
}

@media (max-width: 767px) {
    .footer .footer_top .footer_widget {
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .footer_top .footer_widget {
        margin-bottom: 32px;
    }
}

.footer .footer_top .footer_widget .footer_title {
    font-size: 25px;
    font-weight: 720;
    color: #1C0E02;
    text-transform: capitalize;
    margin-bottom: 41px;
}

.footer .footer_top .footer_widget .footer_title.pos_margin {
    margin-bottom: 36px;
}

@media (max-width: 767px) {
    .footer .footer_top .footer_widget .footer_title.pos_margin {
        margin-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .footer .footer_top .footer_widget .footer_title {
        margin-bottom: 22px;
    }
}

.footer .footer_top .footer_widget p {
    color: #727272;
    font-size: 17px;
    font-weight: 420;
    line-height: 30px;
}

.footer .footer_top .footer_widget p a {
    color: #727272;
}

.footer .footer_top .footer_widget p a:hover {
    color: #727272;
}

.footer .footer_top .footer_widget p.footer_text {
    font-size: 17px;
    color: #B8B8B8;
    margin-bottom: 25px;
    font-weight: 420;
    line-height: 30px;
}

.footer .footer_top .footer_widget ul {
    list-style: none;
    padding: 0;
}

.footer .footer_top .footer_widget ul li {
    color: #969696;
    font-size: 14px;
    line-height: 44px;
}

.footer .footer_top .footer_widget ul li a {
    color: #969696;
    font-weight: 420;
}

.footer .footer_top .footer_widget ul li a:hover {
    color: #FD9A61;
}

.footer .footer_top .footer_widget .newsletter_form {
    position: relative;
    margin-bottom: 22px;
}

.footer .footer_top .footer_widget .newsletter_form input {
    width: 100%;
    height: 52px;
    background: #F6FCFF;
    padding-left: 22px;
    font-size: 16px;
    color: #000;
    border: none;
    border: 1px solid #EEEEEE;
    border-radius: 32px;
}

.footer .footer_top .footer_widget .newsletter_form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 42px;
    border: none;
    color: #fff;
    background: #F0582E;
    padding: 11px;
    padding: 0 24px;
    cursor: pointer;
    border-radius: 32px;
    top: 5px;
    right: 5px;
    font-size: 17px;
    font-weight: 620;
}

.footer .footer_top .footer_widget .newsletter_text {
    font-size: 17px;
    color: #727272;
    line-height: 28px;
    font-weight: 420;
}

.footer .copy-right_text {
    padding-bottom: 32px;
}

.footer .copy-right_text .footer_border {
    border-top: 1px solid #EAEAE7;
    padding-bottom: 32px;
}

.footer .copy-right_text .copy_right {
    font-size: 16px;
    color: #969696;
    margin-bottom: 0;
    font-weight: 520;
}

@media (max-width: 767px) {
    .footer .copy-right_text .copy_right {
        font-size: 14px;
    }
}

.footer .copy-right_text .copy_right a {
    color: #FD9A61;
}

.footer .socail_links {
    margin-top: 22px;
}

@media (max-width: 767px) {
    .footer .socail_links {
        margin-top: 32px;
    }
}

.footer .socail_links ul li {
    display: inline-block;
}

.footer .socail_links ul li a {
    font-size: 19px;
    color: #F0582E;
    width: 52px;
    height: 52px;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 50%;
    line-height: 42px !important;
    margin-right: 11px;
    line-height: 52px !important;
    border: 1px dashed #F0582E;
}

.footer .socail_links ul li a:hover {
    color: #fff !important;
    background: #F0582E;
    border-color: transparent;
}

.age-verify-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    z-index: 10;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-header h2 {
    font-size: 28px;
    color: var(--dark-text);
    margin-bottom: 25px;
    font-weight: 700;
}

.popup-body p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.popup-actions {
    margin-top: 30px;
}

.age-confirm-btn {
    background: var(--main-color);
    color: #fff;
    padding: 16px 35px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'SUSE Mono', monospace;
}

.age-confirm-btn:hover {
    background: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.age-verify-popup.hidden {
    display: none;
}

@media (max-width: 480px) {
    .popup-content {
        padding: 30px 25px;
        margin: 20px;
    }

    .popup-header h2 {
        font-size: 24px;
    }

    .age-confirm-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

#section-counter {
    position: relative;
    z-index: 0;
    padding: 7em 0;
}

@media (max-width: 1199.98px) {
    .ftco-counter {
        background-position: center center !important;
    }
}

.ftco-counter .img {
    display: block;
    width: 100%;
    min-height: 450px;
}

@media (max-width: 991.98px) {
    .ftco-counter .img {
        height: 400px;
        background-position: top center !important;
    }
}

.heading-section .subheading {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
    color: var(--main-color);
    font-weight: 600;
}

.heading-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-text);
}

.heading-section h2 span {
    font-weight: 400;
    color: var(--main-color);
}

@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 28px;
    }

    #section-counter {
        padding: 4em 0;
    }
}

.heading-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.btn {
    cursor: pointer;
    border-radius: 3px;
    box-shadow: none !important;
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.btn:hover, .btn:active, .btn:focus {
    outline: none;
}

.btn.btn-primary {
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: #fff !important;
}

.btn.btn-primary:hover {
    border: 1px solid var(--main-color);
    background: transparent;
    color: var(--main-color);
}

.col-md-6 {
    width: 50%;
}

.col-md-12 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.align-self-stretch {
    align-self: stretch;
}

.pl-md-5 {
    padding-left: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.justify-content-start {
    justify-content: flex-start;
}

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

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .col-md-6 {
        width: 100%;
    }

    .pl-md-5 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.offers-zone {
    background: linear-gradient(135deg, #ECE4B7 0%, #D9DD92 50%, #EABE7C 100%);
    padding: 80px 0;
    position: relative;
}

.offers-zone:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.zone-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.offer-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.offer-card.full-width {
    width: 100%;
}

.brand-logo {
    flex-shrink: 0;
    width: 120px;
}

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

.card-content {
    flex: 1;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.bonus-highlight {
    background: var(--main-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    line-height: 1.2;
}

.rating-stars {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: #ddd;
    font-size: 20px;
}

.star.filled {
    color: #FFD700;
}

.rating-num {
    font-size: 14px;
    color: #666;
    margin-left: 8px;
    font-weight: 500;
}

.card-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.claim-btn {
    background: var(--main-color);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
}

.claim-btn:hover {
    background: var(--dark-text);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .offers-zone {
        padding: 50px 0;
    }

    .offer-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .bonus-highlight {
        font-size: 16px;
        padding: 10px 16px;
    }

    .brand-logo {
        width: 60px;
    }
}

.site-section {
    padding: 2.5em 0;
}

@media (min-width: 768px) {
    .site-section {
        padding: 5em 0;
    }
}

.heading-39291 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6c757d;
}

.content-area {
    margin-bottom: 2rem;
}

.content-area p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #364d59;
    font-size: 17px;
}

.btn.btn-primary {
    color: #fff;
    background: var(--main-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: .3s all ease;
    font-weight: 600;
}

.btn.btn-primary:hover {
    background: var(--dark-text);
    text-decoration: none;
}

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

.justify-content-center {
    justify-content: center !important;
}

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

.col-md-8 {
    padding: 0 15px;
    width: 66.666667%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .col-md-8 {
        width: 100%;
    }
    .row{
        margin: 0;
    }
}

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

.mt-4 {
    margin-top: 1.5rem !important;
}

.footer_widget{
    padding: 1rem 0;
}