:root {
    --color-primary: #476A6F;
    --color-secondary: #519E8A;
    --color-tertiary: #7EB09B;
    --color-accent1: #C5C9A4;
    --color-accent2: #ECBEB4;
    --color-dark: #000000;
    --color-light: #ffffff;
}

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

body {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.col-md,.col-md-5, .col-md-12 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md {
        flex: 1;
    }
    .col-md-5 {
        width: 41.666667%;
    }
    .col-md-12{
        width: 100%;
    }
}

.col-lg-6 {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }
}

.header-area {
    position: relative;
    z-index: 100;
    width: 100%;
}

.header-area .main-header-area {
    height: 75px;
    background-color: transparent;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.classy-nav-container {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.nav-brand img {
    max-height: 32px;
}

.classy-navbar {
    height: 75px;
    padding: 0;
    display: flex;
    align-items: center;
}

.ftco-blocks-cover-1 {
    position: relative;
}

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

    position: relative;
}

.ftco-cover-1:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
}

.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;
    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: 25px;
}

.advantages-list-hero {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.advantage-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #ffffff;
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #519E8A;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .advantages-list-hero {
        gap: 10px;
    }

    .advantage-item {
        font-size: 15px;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        font-size: 16px;
        margin-right: 10px;
    }
}

.text-primary {
    color: #519E8A !important;
}

.btn-primary {
    background-color: #476A6F;
    border-color: #476A6F;
    display: inline-block;
    padding: 10px 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #7EB09B;
    border-color: #7EB09B;
}

.top-offers-wrap {
    padding: 60px 0;
    background: #f8f9fa;
}

.offer-item-block {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.offer-item-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.brand-logo-area {
    flex: 0 0 140px;
    margin-right: 25px;

    width: 140px;
    height: 140px;
    background: var(--color-accent1);

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

    padding: 16px;
}

.brand-logo-area img {
    max-width: 100%;
    height: auto;
    display: block;
}

.offer-details-area {
    flex: 0 0 180px;
    margin-right: 20px;
}

.offer-details-area h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

.star-filled {
    color: #ffa500;
    font-size: 18px;
}

.star-empty {
    color: #d3d3d3;
    font-size: 18px;
}

.bonus-text-area {
    flex: 1;
    padding: 0 20px;
}

.highlight-bonus {
    font-size: 18px;
    color: #476A6F;
    margin: 0;
    line-height: 1.4;
}

.highlight-bonus strong {
    background: linear-gradient(90deg, #519E8A 0%, #7EB09B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-button-area {
    flex: 0 0 160px;
    text-align: right;
}

.claim-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #476A6F;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #476A6F;
}

.claim-btn:hover {
    background-color: #519E8A;
    border-color: #519E8A;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .offer-item-block {
        flex-wrap: wrap;
        padding: 20px;
    }

    .brand-logo-area {
        flex: 0 0 100px;
        margin-right: 15px;
    }

    .offer-details-area {
        flex: 1;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .bonus-text-area {
        flex: 0 0 100%;
        padding: 15px 0;
    }

    .cta-button-area {
        flex: 0 0 100%;
        text-align: center;
    }

    .claim-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .brand-logo-area {
        flex: 0 0 80px;
    }

    .offer-details-area h3 {
        font-size: 18px;
    }

    .rating-stars {
        gap: 2px;
    }

    .star-filled,
    .star-empty {
        font-size: 16px;
    }

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

.ftco-footer {
    font-size: 15px;
    background: #161616;
    padding: 6.3em 0;
}

.ftco-footer .ftco-footer-widget {
    width: 100%;
    display: block;
}

.ftco-footer .ftco-footer-widget h2 {
    font-weight: normal;
    color: #fff;
    margin-bottom: 42px;
    font-size: 23px;
    font-weight: 720;
}

.ftco-footer .ftco-footer-widget .logo {
    color: #fff;
}

.ftco-footer .ftco-footer-widget .logo span {
    color: #fda832;
}

.ftco-footer .ftco-footer-widget ul li a span {
    color: #fff;
}

.ftco-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.ftco-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.ftco-footer a:hover {
    color: #fff;
}

.ftco-footer .ftco-heading-2 {
    font-size: 18px;
    font-weight: 420;
    color: #ffffff;
}

.ftco-footer-social li {
    list-style: none;
    margin: 0 11px 0 0;
    display: inline-block;
}

.ftco-footer-social li a {
    height: 42px;
    width: 42px;
    display: block;
    float: left;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    position: relative;
}

.ftco-footer-social li a span {
    position: absolute;
    font-size: 21px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ftco-footer-social li a:hover {
    color: #fff;
}

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

.list-unstyled li {
    margin-bottom: 8px;
}

.contact-info-block p {
    margin-bottom: 14px;
    line-height: 1.8;
}

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

.ml-md-4 {
    margin-left: 1.5rem;
}

@media (max-width: 767px) {
    .ml-md-4 {
        margin-left: 0;
    }
}

.regulator-logos-wrap {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.regulator-logos-wrap a {
    display: block;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.regulator-logos-wrap a:hover {
    background: rgba(255,255,255,0.2);
}

.regulator-logos-wrap img {
    max-width: 120px;
    height: auto;
    display: block;
}

.gambling-warning-block {
    background: rgba(236, 190, 180, 0.15);
    border: 2px solid #ECBEB4;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.gambling-warning-block h3 {
    color: #ECBEB4;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.warning-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.warning-text strong {
    color: #ECBEB4;
    font-weight: 700;
}

@media (max-width: 768px) {
    .regulator-logos-wrap {
        justify-content: center;
    }

    .regulator-logos-wrap img {
        max-width: 100px;
    }

    .gambling-warning-block {
        padding: 20px;
    }

    .gambling-warning-block h3 {
        font-size: 18px;
    }

    .warning-text {
        font-size: 14px;
    }
}

.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: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

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

.policy-page-wrap {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
}

.policy-content {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    color: #476A6F;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.policy-content .last-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

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

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

    .policy-content {
        padding: 35px 25px;
    }

    .policy-content h1 {
        font-size: 28px;
    }

    .policy-content p {
        font-size: 15px;
    }
}

.about-page-wrap {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
}

.about-content-block {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-content-block h1 {
    color: #476A6F;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

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

@media (max-width: 991px) {
    .about-page-wrap {
        padding: 100px 0 60px 0;
    }

    .about-content-block {
        padding: 40px 30px;
    }

    .about-content-block h1 {
        font-size: 32px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .about-content-block h1 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-content-block {
        padding: 30px 20px;
    }
}

.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.age-verify-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 45px 35px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.age-verify-content h2 {
    font-size: 28px;
    color: #476A6F;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.age-warning {
    font-size: 15px !important;
    color: #666;
    margin-bottom: 30px !important;
}

.confirm-age-btn {
    background-color: #476A6F;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Dosis', sans-serif;
}

.confirm-age-btn:hover {
    background-color: #519E8A;
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .age-verify-box {
        padding: 35px 25px;
    }

    .age-verify-content h2 {
        font-size: 24px;
    }

    .age-verify-content p {
        font-size: 16px;
    }

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


.section-padding {
    padding: 130px 0;
    position: relative;
}

.text-image-area {
    position: relative;
    overflow: hidden;
}

.diagonal-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71,106,111,0.08) 0%, rgba(81,158,138,0.12) 100%);
    transform: skewX(-15deg);
    transform-origin: top right;
    z-index: 0;
}

.diagonal-bg-decoration-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(225deg, rgba(126,176,155,0.1) 0%, rgba(197,201,164,0.08) 100%);
    transform: skewX(15deg);
    transform-origin: bottom left;
    z-index: 0;
}

.text-image-area .container {
    position: relative;
    z-index: 1;
}

h3 {
    color: #222;
    text-transform: uppercase;
    font-family: "Dosis", sans-serif;
    font-size: 36px !important;
    font-weight: 500;
    margin-bottom: 20px;
}

.text-image-area p {
    color: #777;
    font-family: "Dosis", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.template-btn {
    color: #fff !important;
    background: #476A6F;
    font-family: "Dosis", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    display: inline-block;
    padding: 13px 24px !important;
    border-radius: 3px;
    transition: all 0.5s;
    text-decoration: none;
}

.template-btn:hover {
    color: #222 !important;
    background: transparent;
    border: 1px solid #476A6F;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

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

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

.offset-lg-1 {
    margin-left: 8.333333%;
}

.col-lg-5,
.col-lg-6 {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

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

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    h3 {
        font-size: 28px !important;
    }

    .diagonal-bg-decoration,
    .diagonal-bg-decoration-bottom {
        width: 60%;
    }

    .offset-lg-1 {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }

    h3 {
        font-size: 24px !important;
    }

    .diagonal-bg-decoration,
    .diagonal-bg-decoration-bottom {
        display: none;
    }
}

.section {
    padding: 7em 0;
}

.heading {
    color: #000;
    line-height: 1.5;
    font-family: "Dosis", sans-serif;
    font-weight: 900;
}

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

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

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.text-content {
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
}

.text-content p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.text-content h3 {
    color: #000;
    line-height: 1.5;
    font-family: "Dosis", sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.timeline-list {
    padding-left: 0;
    list-style: none;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

.timeline-list:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #476A6F 0%, #519E8A 50%, #7EB09B 100%);
}

.timeline-list li {
    position: relative;
    padding-left: 120px;
    margin-bottom: 40px;
    min-height: 80px;
}

.year-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #476A6F 0%, #519E8A 100%);
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(71,106,111,0.3);
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 0px 8px 8px 0;
    border-left: 4px solid #519E8A;
}

.timeline-content strong {
    display: block;
    color: #476A6F;
    font-size: 19px;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .timeline-list:before {
        left: 35px;
    }

    .timeline-list li {
        padding-left: 90px;
    }

    .year-marker {
        width: 70px;
        height: 70px;
        font-size: 16px;
    }

    .timeline-content {
        padding: 15px 18px;
    }

    .timeline-content strong {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 4em 0;
    }

    .timeline-list:before {
        left: 25px;
    }

    .timeline-list li {
        padding-left: 70px;
        margin-bottom: 30px;
    }

    .year-marker {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}
