:root {
    --earth-light: #d4c5b0;
    --earth-med: #a89176;
    --earth-dark: #6b5d4f;
    --sage-green: #8a9a7e;
    --stone-grey: #9e9e9e;
    --paper-white: #fafaf8;
    --ink-black: #3a3a3a;
    --main-font: 'Changa', sans-serif;
}

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

body {
    font-family: var(--main-font);
    line-height: 1.75;
    color: var(--ink-black);
    background: var(--paper-white);
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 3.75rem;
}

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

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
}

.col-md-6,
.col-lg-3,
.col-md-12,
.col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.9375rem;
    width: 100%;
}

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

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

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

.pt-5 {
    padding-top: 48px;
}

.mt-5 {
    margin-top: 3rem;
}

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

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

.default-header {
    width: 100%;
    z-index: 9;
}

.menutop-wrap {
    background: var(--paper-white);
    padding: 0.625rem 0;
    border-bottom: 0.5px solid rgba(107, 93, 79, 0.12);
}

.menu-top .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0px;
}

.menu-top .list li a {
    color: var(--earth-dark);
    font-size: 0.8125rem;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.3px;
    -webkit-transition: 0.35s ease;
    -o-transition: 0.35s ease;
    transition: 0.35s ease;
}

.menu-top .list li a:hover {
    color: var(--sage-green);
}

.navbar {
    padding: 1.875rem 0px;
    background: rgba(250, 250, 248, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.navbar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-brand img {
    max-height: 42px;
    height: auto;
    opacity: 0.88;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 2.8125rem;
    margin: 0;
    padding: 0px;
}

.navbar-nav li a {
    color: var(--ink-black);
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    padding: 0.5rem 0px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    border-bottom: 0.5px solid transparent;
    letter-spacing: 0.4px;
}

.navbar-nav li a:hover {
    color: var(--earth-dark);
    border-bottom-color: var(--earth-med);
}

.navbar-toggler {
    display: none;
    background: none;
    border: 0.5px solid var(--earth-dark);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-radius: 0px;
}

.navbar-toggler-icon {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: var(--earth-dark);
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--earth-dark);
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -0.5rem;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.hero-section {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--paper-white);
}

.hero-section .row {
    min-height: auto;
    margin: 0;
}

.hero-image {
    background-size: cover;
    background-position: center;
    min-height: 25rem;
    position: relative;
    padding: 0;
}

.hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.28);
}

.hero-content {
    padding: 2.5rem 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content-wrapper {
    max-width: 37.5rem;
    padding-left: 0;
    padding-top: 1.25rem;
    border-top: 0.5px solid rgba(168, 145, 118, 0.18);
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--ink-black);
    margin-bottom: 1.875rem;
    line-height: 1.25;
    letter-spacing: -0.4px;
    writing-mode: horizontal-tb;
}

.hero-description {
    font-size: 0.9375rem;
    color: var(--earth-dark);
    margin-bottom: 2.1875rem;
    line-height: 1.85;
    font-weight: 300;
}

.hero-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.9375rem;
    margin-bottom: 2.1875rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 6.875rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--earth-med);
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.85;
}

.feature-item h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--earth-dark);
    letter-spacing: 0.3px;
}

.hero-section .btn {
    display: inline-block;
    padding: 1rem 2.625rem;
    background-color: var(--earth-med);
    color: var(--paper-white);
    text-decoration: none;
    border-radius: 0px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 0.5px solid var(--earth-med);
    font-size: 0.8125rem;
    width: 100%;
    text-align: center;
}

.hero-section .btn:hover {
    background-color: var(--earth-dark);
    border-color: var(--earth-dark);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.platforms-showcase-area {
    padding: 7.5rem 0px 8.125rem 0;
    background: var(--paper-white);
    border-top: 0.5px solid rgba(107, 93, 79, 0.1);
}

.section-header-block {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 5rem auto;
    padding: 0 1.25rem;
}

.main-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--ink-black);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-intro-text {
    font-size: 1.0625rem;
    color: var(--earth-dark);
    font-weight: 300;
    line-height: 1.8;
}

.platform-cards-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.125rem;
}

.single-platform-card {
    background: #ffffff;
    border: 0.5px solid rgba(107, 93, 79, 0.15);
    padding: 0;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    position: relative;
}

.single-platform-card:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 32px rgba(107, 93, 79, 0.12);
    box-shadow: 0 12px 32px rgba(107, 93, 79, 0.12);
}

.card-top-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 2.5rem 2.5rem 1.875rem 2.5rem;
    border-bottom: 0.5px solid rgba(107, 93, 79, 0.08);
    background: rgba(245, 243, 240, 0.35);
}

.rating-reviews-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
}

.star-rating-display {
    color: var(--earth-med);
    font-size: 1.125rem;
    letter-spacing: 0.1875rem;
}

.star-rating-display i {
    margin-right: 0.1875rem;
}

.rating-score-text {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--ink-black);
    line-height: 1;
}

.reviews-count-text {
    font-size: 0.8125rem;
    color: var(--stone-grey);
    font-weight: 300;
}

.platform-logo-container {
    max-width: 180px;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.platform-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.88;
}

.card-content-area {
    padding: 2.5rem 2.5rem 2.8125rem 2.5rem;
}

.platform-title-name {
    font-size: 2rem;
    font-weight: 500;
    color: var(--ink-black);
    margin-bottom: 1.875rem;
    letter-spacing: 0.3px;
}

.bonus-highlight-box {
    background: rgba(138, 154, 126, 0.1);
    border: 3px solid var(--sage-green);
    padding: 1.5625rem 1.875rem;
    margin-bottom: 2rem;
}

.bonus-label-text {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--sage-green);
    margin-bottom: 0.625rem;
}

.bonus-amount-display {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink-black);
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.platform-description-text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--earth-dark);
    margin-bottom: 2.1875rem;
    font-weight: 300;
}

.advantages-list-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-left: 1.25rem;
    border-left: 0.5px solid rgba(138, 154, 126, 0.2);
}

.advantage-single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.9375rem;
    font-size: 0.9375rem;
    color: var(--earth-dark);
    font-weight: 300;
}

.advantage-single-item i {
    color: var(--sage-green);
    font-size: 1.125rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.claim-bonus-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    padding: 1.125rem 2.8125rem;
    background: var(--earth-med);
    color: var(--paper-white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 0.5px solid var(--earth-med);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.claim-bonus-button:hover {
    background: var(--earth-dark);
    border-color: var(--earth-dark);
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}

.claim-bonus-button i {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.claim-bonus-button:hover i {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.sidebar {
    margin-top: 6.875rem;
    padding: 0 1.25rem;
    margin-bottom: 5rem;
}

.about-me {
    text-align: center;
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 3.75rem 2.5rem;
    background: rgba(245, 243, 240, 0.4);
    border: 0.5px solid rgba(107, 93, 79, 0.12);
}

.about-me h2 {
    font-size: 2.125rem;
    color: var(--ink-black);
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 2.1875rem;
    line-height: 1.2;
}

.about-me p {
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-size: 0.9375rem;
    line-height: 1.85rem;
    color: var(--earth-dark);
    font-weight: 300;
    text-align: left;
    padding: 0 1.875rem;
}

.about-learn-more-btn {
    display: inline-block;
    padding: 0.875rem 2.1875rem;
    background: transparent;
    color: var(--earth-med);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: 0.5px solid var(--earth-med);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.about-learn-more-btn:hover {
    background: var(--earth-med);
    color: var(--paper-white);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.section_padding {
    padding: 12.5rem 0px;
    border-top: 0.5px solid rgba(107, 93, 79, 0.1);
}

.btn_1 {
    display: inline-block;
    padding: 1.0625rem 3.125rem;
    border-radius: 0px;
    background-color: var(--earth-med);
    border: 0.5px solid var(--earth-med);
    font-size: 0.9375rem;
    font-weight: 400;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    text-transform: uppercase;
    color: var(--paper-white);
    margin-top: 0.625rem;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn_1:hover {
    background-color: transparent;
    color: var(--earth-med);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.text_image_section {
    background-color: var(--paper-white);
}

.text_image_section .text_content_block h5 {
    color: var(--sage-green);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.375rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.text_image_section .text_content_block h2 {
    font-size: 2.75rem;
    line-height: 1.25;
    color: var(--ink-black);
    font-weight: 400;
    margin-bottom: 2.1875rem;
    letter-spacing: -0.3px;
}

.text_image_section .text_content_block p {
    line-height: 1.85rem;
    margin-bottom: 1.875rem;
    color: var(--earth-dark);
    font-size: 0.9375rem;
    font-weight: 300;
}

.text_image_section .image_block {
    border: 0.5px solid rgba(107, 93, 79, 0.12);
    padding: 1.25rem;
    background: rgba(245, 243, 240, 0.25);
}

.text_image_section .image_block img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.88;
}

.text_only_section {
    background-color: var(--paper-white);
}

.section_tittle {
    margin-bottom: 5rem;
}

.section_tittle h2 {
    font-size: 2.625rem;
    color: var(--ink-black);
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1.75rem;
    letter-spacing: -0.3px;
}

.section_tittle p {
    color: var(--earth-dark);
    line-height: 1.875rem;
    font-size: 1rem;
    font-weight: 300;
}

.text_only_section .text_content_block {
    text-align: center;
    padding: 2.5rem 1.875rem;
    background: rgba(245, 243, 240, 0.3);
    border: 0.5px solid rgba(107, 93, 79, 0.1);
}

.text_only_section .text_content_block p {
    margin-bottom: 1.875rem;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--earth-dark);
    font-weight: 300;
    text-align: left;
    padding: 0 1.25rem;
}

.text_only_section .text_content_block .btn_1 {
    margin-top: 1.875rem;
}

.ftco-section {
    padding: 7em 0px;
    position: relative;
}

.ftco-bg-dark {
    background: #f5f3f0;
    border-top: 0.5px solid rgba(107, 93, 79, 0.15);
}

.ftco-footer {
    font-size: 0.9375rem;
    background: var(--paper-white);
    padding: 6.25em 0px;
    z-index: 0;
    position: relative;
}

.ftco-footer .ftco-footer-widget h2 {
    font-weight: 400;
    color: var(--ink-black);
    margin-bottom: 2.5rem;
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ftco-footer .ftco-footer-widget p {
    color: var(--earth-dark);
    line-height: 1.85;
    font-size: 0.875rem;
    font-weight: 300;
}

.ftco-footer .ftco-footer-widget ul li {
    margin-bottom: 0.9375rem;
}

.ftco-footer .ftco-footer-widget ul li a {
    color: var(--earth-dark);
    display: block;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.875rem;
    -webkit-transition: 0.35s ease;
    -o-transition: 0.35s ease;
    transition: 0.35s ease;
    border-bottom: 0.5px solid transparent;
    padding-bottom: 0.1875rem;
}

.ftco-footer .ftco-footer-widget ul li a:hover {
    color: var(--sage-green);
    border-bottom-color: var(--sage-green);
}

.ftco-footer .block-23 ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.ftco-footer .block-23 ul li {
    color: var(--earth-dark);
    font-size: 0.875rem;
    line-height: 1.85;
    font-weight: 300;
}

.ftco-footer .block-23 ul li span.icon {
    color: var(--sage-green);
    margin-right: 0.625rem;
    font-size: 1rem;
}

.ftco-footer .block-23 ul li span.text {
    display: inline;
}

.ftco-heading-2 {
    font-weight: 500;
}

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

.d-block {
    display: block;
}

.mr-3 {
    margin-right: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.ml-md-4 {
    margin-left: 0;
}

.ion-ios-arrow-forward {
    display: inline-block;
    opacity: 0.6;
}

.ion-ios-arrow-forward::before {
    content: '→';
    font-style: normal;
}

.icon-map-marker::before {
    content: '📍';
    font-style: normal;
}

.site-footer {
    padding: 6.25em 0;
    background: #f5f3f0;
    border-top: 0.5px solid rgba(107, 93, 79, 0.12);
}

.footer-logo-block {
    margin-bottom: 1.5625rem;
}

.footer-logo-img {
    max-width: 160px;
    height: auto;
    opacity: 0.88;
}

.site-footer ul li {
    margin-bottom: 0.625rem;
}

.site-footer ul li a {
    color: var(--earth-dark);
    text-decoration: none;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
    font-weight: 300;
    font-size: 0.875rem;
    border-bottom: 0.5px solid transparent;
    padding-bottom: 0.125rem;
}

.site-footer ul li a:hover {
    color: var(--sage-green);
    border-bottom-color: var(--sage-green);
}

.site-footer .footer-heading {
    font-size: 1.125rem;
    color: var(--ink-black);
    margin-bottom: 1.5625rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    writing-mode: horizontal-tb;
}

.block-7 p {
    color: var(--earth-dark);
    line-height: 1.85;
    font-size: 0.875rem;
    font-weight: 300;
}

.block-5 ul, .block-5 ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.block-5 ul li {
    padding-left: 1.875rem;
    position: relative;
    margin-bottom: 0.9375rem;
    color: var(--earth-dark);
    font-size: 0.875rem;
    font-weight: 300;
}

.block-5 ul li:before {
    top: 0;
    content: "";
    position: absolute;
    left: 0;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--sage-green);
    font-family: 'FontAwesome';
}

.block-5 ul li.address:before {
    content: "\f041";
}

.block-5 ul li.email:before {
    content: "\f0e0";
}

.block-5 ul li.phone:before {
    content: "\f095";
}

.responsible-gaming-highlight {
    margin-top: 3.75rem;
    padding-top: 2.5rem;
    border-top: 0.5px solid rgba(107, 93, 79, 0.18);
}

.responsible-box {
    background: rgba(138, 154, 126, 0.08);
    border: 3px solid var(--sage-green);
    padding: 1.5rem;
    border-radius: 0px;
}

.responsible-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink-black);
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
}

.responsible-title i {
    color: var(--sage-green);
    font-size: 1.5rem;
}

.responsible-text {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--earth-dark);
    margin-bottom: 1.875rem;
    font-weight: 300;
}

.regulator-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

.regulator-logos a:hover {
    opacity: 1;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.regulator-logos img {
    height: 38px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.container {
    padding: 0rem 1.5625rem;
}

@media (min-width: 768px) {
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .container {
        padding: 0rem 2.5rem;
    }

    .hero-section .row {
        min-height: 100vh;
    }

    .hero-image {
        min-height: 100vh;
    }

    .hero-content {
        padding: 5rem 3.75rem 5rem 1.25rem;
    }

    .content-wrapper {
        padding-left: 2.5rem;
        border-left: 0.5px solid rgba(168, 145, 118, 0.18);
        border-top: none;
        padding-top: 0;
    }

    .hero-title {
        font-size: 2.375rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        gap: 1.25rem;
    }

    .feature-item {
        min-width: 9.375rem;
    }

    .feature-item i {
        font-size: 3.75rem;
    }

    .hero-section .btn {
        width: auto;
    }

    .responsible-box {
        padding: 2rem 2.5rem;
    }

    .responsible-title {
        font-size: 1.375rem;
    }

    .responsible-text {
        font-size: 0.9375rem;
    }

    .regulator-logos {
        gap: 1.875rem;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .regulator-logos img {
        height: 48px;
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .text_image_section .text_content_block h2 {
        font-size: 2.75rem;
    }

    .text_image_section .text_content_block p {
        font-size: 0.9375rem;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6667%;
        flex: 0 0 66.6667%;
        max-width: 66.6667%;
    }

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

    .container {
        padding: 0rem 3.75rem;
    }

    .hero-section {
        padding-left: 5%;
    }

    .hero-image {
    }

    .hero-title {
        font-size: 2.625rem;
    }

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

    .text_image_section .image_block {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .default-header {
        position: relative;
        background: var(--paper-white);
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none;
        width: 100%;
        margin-top: 1.25rem;
    }

    .navbar-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }

    .navbar-nav li {
        margin-left: 0;
        margin-bottom: 0.625rem;
        width: 100%;
    }

    .navbar-nav li a {
        display: block;
        padding: 0.75rem 0px;
    }

    .section_padding {
        padding: 4.375rem 0px;
    }

    .text_image_section .text_content_block h2 {
        font-size: 1.875rem;
        margin-bottom: 1.5625rem;
    }

    .text_image_section .image_block {
        margin-bottom: 3.125rem;
    }

    .section_tittle h2 {
        font-size: 1.875rem;
    }

    .section_tittle p {
        font-size: 0.9375rem;
        line-height: 1.7rem;
    }

    .section_tittle {
        margin-bottom: 3.125rem;
    }

    .ftco-section {
        padding: 4.375em 0px;
    }

    .ftco-footer {
        padding: 4.375em 0px;
    }

    .ftco-footer .ftco-footer-widget {
        margin-bottom: 2.5rem;
    }

    .ftco-footer .ftco-footer-widget h2 {
        font-size: 1.25rem;
        margin-bottom: 1.875rem;
    }
}

@media (max-width: 768px) {
    .platforms-showcase-area {
        padding: 4.375rem 0px 5rem 0;
    }

    .section-header-block {
        margin-bottom: 3.125rem;
    }

    .main-section-title {
        font-size: 1.875rem;
    }

    .section-intro-text {
        font-size: 0.9375rem;
    }

    .platform-cards-wrapper {
        gap: 2.5rem;
    }

    .card-top-section {
        padding: 1.875rem 1.5625rem 1.5625rem 1.5625rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5625rem;
    }

    .rating-reviews-block {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .platform-logo-container {
        max-width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .card-content-area {
        padding: 1.875rem 1.5625rem 2.1875rem 1.5625rem;
    }

    .platform-title-name {
        font-size: 1.625rem;
        margin-bottom: 1.5625rem;
    }

    .bonus-highlight-box {
        padding: 1.25rem 1.5625rem;
        margin-bottom: 1.5625rem;
    }

    .bonus-amount-display {
        font-size: 1.25rem;
    }

    .platform-description-text {
        margin-bottom: 1.875rem;
    }

    .advantages-list-section {
        margin-bottom: 2rem;
        padding-left: 1rem;
    }

    .claim-bonus-button {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .sidebar {
        margin-top: 4.375rem;
        margin-bottom: 3.75rem;
    }

    .about-me {
        padding: 2.5rem 1.5625rem;
    }

    .about-me h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5625rem;
    }

    .about-me p {
        font-size: 0.875rem;
        padding: 0 0.625rem;
        margin-bottom: 2rem;
    }

    .about-learn-more-btn {
        padding: 0.75rem 1.875rem;
        font-size: 0.8125rem;
    }

    .text_only_section .text_content_block {
        padding: 1.875rem 1.25rem;
    }

    .text_only_section .text_content_block p {
        font-size: 0.875rem;
        padding: 0 0.625rem;
        margin-bottom: 1.5625rem;
    }

    .text_only_section .text_content_block .btn_1 {
        width: 100%;
        text-align: center;
        margin-top: 1.5625rem;
    }

    .ftco-footer .ftco-footer-widget h2 {
        font-size: 1.125rem;
    }

    .ftco-footer .ftco-footer-widget p {
        font-size: 0.8125rem;
    }

    .ftco-footer .ftco-footer-widget ul li a {
        font-size: 0.8125rem;
    }

    .ftco-footer .block-23 ul li {
        font-size: 0.8125rem;
    }

    .ml-md-4 {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .menu-top .list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .feature-item {
        min-width: 100%;
        margin-bottom: 0.625rem;
    }

    .regulator-logos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .regulator-logos a {
        width: 100%;
        text-align: center;
    }

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

    .card-top-section {
        padding: 1.5625rem 1.25rem 1.25rem 1.25rem;
    }

    .rating-reviews-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 0.625rem;
    }

    .card-content-area {
        padding: 1.5625rem 1.25rem 1.875rem 1.25rem;
    }

    .platform-title-name {
        font-size: 1.375rem;
    }

    .bonus-highlight-box {
        padding: 1rem 1.25rem;
    }

    .bonus-amount-display {
        font-size: 1.125rem;
    }

    .sidebar {
        margin-top: 3.125rem;
    }

    .about-me {
        padding: 2rem 1.25rem;
    }

    .about-me h2 {
        font-size: 1.5rem;
    }

    .about-me p {
        padding: 0;
        text-align: center;
    }

    .about-learn-more-btn {
        width: 100%;
        text-align: center;
    }

    .section_padding {
        padding: 3.125rem 0px;
    }

    .text_only_section .text_content_block {
        padding: 1.5625rem 1rem;
    }

    .text_only_section .text_content_block p {
        padding: 0;
        text-align: center;
    }

    .section_tittle h2 {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .section_tittle p {
        font-size: 0.875rem;
    }

    .ftco-section {
        padding: 3.125em 0px;
    }

    .ftco-footer {
        padding: 3.125em 0px;
    }

    .ftco-footer .ftco-footer-widget {
        margin-bottom: 2rem;
    }

    .ftco-footer .ftco-footer-widget h2 {
        font-size: 1rem;
        margin-bottom: 1.5625rem;
    }
}

.gdpr-cookie-alert-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(250, 250, 248, 0.98);
    border-top: 0.5px solid rgba(107, 93, 79, 0.2);
    -webkit-box-shadow: 0 -4px 20px rgba(107, 93, 79, 0.15);
    box-shadow: 0 -4px 20px rgba(107, 93, 79, 0.15);
    padding: 1.875rem 1.25rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cookie-alert-inner-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cookie-main-content-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 300px;
}

.cookie-icon-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.cookie-icon-block i {
    font-size: 2.5rem;
    color: var(--earth-med);
    opacity: 0.85;
}

.cookie-text-information {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cookie-alert-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ink-black);
    margin-bottom: 0.625rem;
    letter-spacing: 0.3px;
}

.cookie-alert-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--earth-dark);
    font-weight: 300;
    margin: 0;
}

.cookie-policy-link,
.privacy-policy-link {
    color: var(--sage-green);
    text-decoration: none;
    border-bottom: 0.5px solid var(--sage-green);
    padding-bottom: 0.0625rem;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.cookie-policy-link:hover,
.privacy-policy-link:hover {
    color: var(--earth-med);
    border-bottom-color: var(--earth-med);
}

.cookie-actions-buttons-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-cookie-settings,
.btn-cookie-decline,
.btn-cookie-accept {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: 0.5px solid;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    text-transform: uppercase;
    font-family: var(--main-font);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-cookie-settings {
    background: transparent;
    color: var(--earth-dark);
    border-color: var(--earth-dark);
}

.btn-cookie-settings:hover {
    background: var(--earth-dark);
    color: var(--paper-white);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--stone-grey);
    border-color: var(--stone-grey);
}

.btn-cookie-decline:hover {
    background: var(--stone-grey);
    color: var(--paper-white);
}

.btn-cookie-accept {
    background: var(--earth-med);
    color: var(--paper-white);
    border-color: var(--earth-med);
}

.btn-cookie-accept:hover {
    background: var(--earth-dark);
    border-color: var(--earth-dark);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.cookie-settings-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 58, 58, 0.7);
    z-index: 10000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.25rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.cookie-settings-modal-content {
    background: var(--paper-white);
    max-width: 43.75rem;
    width: 100%;
    border: 0.5px solid rgba(107, 93, 79, 0.15);
    -webkit-box-shadow: 0 8px 32px rgba(107, 93, 79, 0.2);
    box-shadow: 0 8px 32px rgba(107, 93, 79, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.875rem 2rem;
    border-bottom: 0.5px solid rgba(107, 93, 79, 0.12);
    background: rgba(245, 243, 240, 0.4);
}

.modal-title-heading {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink-black);
    letter-spacing: 0.3px;
    margin: 0;
}

.modal-close-button {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--earth-dark);
    cursor: pointer;
    padding: 0.3125rem;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.modal-close-button:hover {
    color: var(--earth-med);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.modal-body-content {
    padding: 2rem 2rem 1.5rem 2rem;
}

.cookie-category-item {
    margin-bottom: 1.875rem;
    padding-bottom: 1.875rem;
    border-bottom: 0.5px solid rgba(107, 93, 79, 0.1);
}

.cookie-category-item:last-of-type {
    border-bottom: none;
}

.category-header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.25rem;
}

.category-info-block {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.category-name-title {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--ink-black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.category-description-text {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--earth-dark);
    font-weight: 300;
    margin: 0;
}

.category-toggle-switch {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.toggle-label-disabled {
    font-size: 0.75rem;
    color: var(--stone-grey);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.toggle-checkbox {
    display: none;
}

.toggle-label-slider {
    display: block;
    width: 3.125rem;
    height: 1.5625rem;
    background: rgba(158, 158, 158, 0.3);
    border: 0.5px solid rgba(107, 93, 79, 0.2);
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.toggle-label-slider::after {
    content: '';
    position: absolute;
    left: 0.125rem;
    top: 0.125rem;
    width: 1.1875rem;
    height: 1.1875rem;
    background: var(--paper-white);
    border: 0.5px solid rgba(107, 93, 79, 0.15);
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.toggle-checkbox:checked + .toggle-label-slider {
    background: var(--sage-green);
    border-color: var(--sage-green);
}

.toggle-checkbox:checked + .toggle-label-slider::after {
    -webkit-transform: translateX(1.5625rem);
    -ms-transform: translateX(1.5625rem);
    transform: translateX(1.5625rem);
}

.cookie-policy-links-section {
    padding-top: 1.25rem;
    border-top: 0.5px solid rgba(107, 93, 79, 0.1);
}

.policy-links-text {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--earth-dark);
    font-weight: 300;
    margin: 0;
}

.inline-policy-link {
    color: var(--sage-green);
    text-decoration: none;
    border-bottom: 0.5px solid var(--sage-green);
    padding-bottom: 0.0625rem;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.inline-policy-link:hover {
    color: var(--earth-med);
    border-bottom-color: var(--earth-med);
}

.modal-footer-actions {
    padding: 1.5rem 2rem;
    border-top: 0.5px solid rgba(107, 93, 79, 0.12);
    background: rgba(245, 243, 240, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.9375rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-modal-save-preferences,
.btn-modal-accept-all {
    padding: 0.875rem 1.875rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: 0.5px solid;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    text-transform: uppercase;
    font-family: var(--main-font);
}

.btn-modal-save-preferences {
    background: transparent;
    color: var(--earth-dark);
    border-color: var(--earth-dark);
}

.btn-modal-save-preferences:hover {
    background: var(--earth-dark);
    color: var(--paper-white);
}

.btn-modal-accept-all {
    background: var(--earth-med);
    color: var(--paper-white);
    border-color: var(--earth-med);
}

.btn-modal-accept-all:hover {
    background: var(--earth-dark);
    border-color: var(--earth-dark);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gdpr-cookie-alert-container {
        padding: 1.25rem 1rem;
    }

    .cookie-alert-inner-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.25rem;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .cookie-main-content-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-icon-block i {
        font-size: 2rem;
    }

    .cookie-alert-title {
        font-size: 1rem;
    }

    .cookie-alert-description {
        font-size: 0.8125rem;
    }

    .cookie-actions-buttons-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-settings,
    .btn-cookie-decline,
    .btn-cookie-accept {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .modal-header-section {
        padding: 1.25rem 1.25rem;
    }

    .modal-title-heading {
        font-size: 1.25rem;
    }

    .modal-body-content {
        padding: 1.5rem 1.25rem;
    }

    .category-header-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .modal-footer-actions {
        padding: 1.25rem 1.25rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .btn-modal-save-preferences,
    .btn-modal-accept-all {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gdpr-cookie-alert-container {
        padding: 1rem 0.75rem;
    }

    .cookie-alert-title {
        font-size: 0.9375rem;
    }

    .cookie-alert-description {
        font-size: 0.75rem;
    }

    .btn-cookie-settings,
    .btn-cookie-decline,
    .btn-cookie-accept {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }

    .modal-title-heading {
        font-size: 1.125rem;
    }

    .category-name-title {
        font-size: 1rem;
    }

    .category-description-text {
        font-size: 0.75rem;
    }
}

.age-popup-overlay-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 58, 58, 0.95);
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.25rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.age-popup-content-box {
    background: var(--paper-white);
    max-width: 37.5rem;
    width: 100%;
    border: 0.5px solid rgba(107, 93, 79, 0.2);
    -webkit-box-shadow: 0 12px 48px rgba(107, 93, 79, 0.25);
    box-shadow: 0 12px 48px rgba(107, 93, 79, 0.25);
    padding: 3.125rem 2.5rem 2.5rem 2.5rem;
    text-align: center;
}

.age-icon-display-area {
    margin-bottom: 2.1875rem;
}

.age-restriction-badge-large {
    width: 6.25rem;
    height: 6.25rem;
    background: linear-gradient(135deg, var(--earth-med) 0%, var(--earth-dark) 100%);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.5px solid rgba(107, 93, 79, 0.3);
    -webkit-box-shadow: 0 6px 20px rgba(168, 145, 118, 0.3);
    box-shadow: 0 6px 20px rgba(168, 145, 118, 0.3);
}

.age-number-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--paper-white);
    line-height: 1;
    letter-spacing: 0.125rem;
}

.age-popup-text-section {
    margin-bottom: 2.5rem;
}

.age-popup-title-heading {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--ink-black);
    margin-bottom: 1.5625rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.age-popup-description-text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--earth-dark);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.age-popup-warning-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--stone-grey);
    font-weight: 300;
    margin: 0;
    padding: 1.25rem 1.5625rem;
    background: rgba(138, 154, 126, 0.08);
    border: 3px solid var(--sage-green);
}

.age-popup-actions-area {
    margin-bottom: 1.875rem;
}

.btn-age-confirm {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    padding: 1.125rem 3.125rem;
    background: var(--earth-med);
    color: var(--paper-white);
    border: 0.5px solid var(--earth-med);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-family: var(--main-font);
    border-radius: 0px;
}

.btn-age-confirm:hover {
    background: var(--earth-dark);
    border-color: var(--earth-dark);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 6px 20px rgba(168, 145, 118, 0.3);
    box-shadow: 0 6px 20px rgba(168, 145, 118, 0.3);
}

.btn-age-confirm i {
    font-size: 1.25rem;
}

.age-popup-footer-links {
    padding-top: 1.5625rem;
    border-top: 0.5px solid rgba(107, 93, 79, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.9375rem;
}

.responsible-gaming-link,
.terms-conditions-link {
    font-size: 0.8125rem;
    color: var(--earth-dark);
    text-decoration: none;
    border-bottom: 0.5px solid transparent;
    padding-bottom: 0.125rem;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    font-weight: 300;
}

.responsible-gaming-link:hover,
.terms-conditions-link:hover {
    color: var(--sage-green);
    border-bottom-color: var(--sage-green);
}

.footer-separator {
    color: rgba(107, 93, 79, 0.3);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .age-popup-content-box {
        padding: 2.5rem 1.875rem 2rem 1.875rem;
    }

    .age-restriction-badge-large {
        width: 5rem;
        height: 5rem;
    }

    .age-number-text {
        font-size: 2rem;
    }

    .age-popup-title-heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .age-popup-description-text {
        font-size: 0.875rem;
    }

    .age-popup-warning-text {
        font-size: 0.8125rem;
        padding: 1rem 1.25rem;
    }

    .btn-age-confirm {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .age-popup-footer-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.625rem;
    }

    .footer-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .age-popup-overlay-wrapper {
        padding: 1rem;
    }

    .age-popup-content-box {
        padding: 2rem 1.25rem 1.5625rem 1.25rem;
    }

    .age-restriction-badge-large {
        width: 4.375rem;
        height: 4.375rem;
    }

    .age-number-text {
        font-size: 1.75rem;
    }

    .age-popup-title-heading {
        font-size: 1.25rem;
    }

    .age-popup-description-text {
        font-size: 0.8125rem;
    }

    .age-popup-warning-text {
        font-size: 0.75rem;
        padding: 0.875rem 1rem;
    }

    .btn-age-confirm {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }

    .responsible-gaming-link,
    .terms-conditions-link {
        font-size: 0.75rem;
    }
}


.download_area {
    padding: 9.375rem 0px 6.25rem 0;
    background: rgba(245, 243, 240, 0.5);
    border-top: 0.5px solid rgba(107, 93, 79, 0.12);
}

.download_text h3 {
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--ink-black);
    line-height: 1.3;
    margin-bottom: 5rem;
    letter-spacing: -0.3px;
}

.download_left {
    padding: 2.1875rem 1.875rem;
    background: #ffffff;
    border: 0.5px solid rgba(107, 93, 79, 0.15);
    margin-bottom: 1.875rem;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.download_left:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 8px 24px rgba(107, 93, 79, 0.12);
    box-shadow: 0 8px 24px rgba(107, 93, 79, 0.12);
}

.download_left p {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.85rem;
    color: var(--earth-dark);
    margin-bottom: 1.5625rem;
}

.download_left p:last-of-type {
    margin-bottom: 1.875rem;
}

.boxed-btn3-line {
    background: transparent;
    color: var(--earth-med);
    display: inline-block;
    padding: 0.875rem 2.1875rem;
    font-family: var(--main-font);
    font-size: 0.875rem;
    font-weight: 400;
    border: 0.5px solid var(--earth-med);
    border-radius: 0px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0.625rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.boxed-btn3-line:hover {
    background: var(--earth-med);
    border-color: var(--earth-med);
    color: var(--paper-white);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.9375rem;
    width: 100%;
}

@media (min-width: 1200px) {
    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333%;
        flex: 0 0 83.3333%;
        max-width: 83.3333%;
    }
}

@media (max-width: 991px) {
    .download_area {
        padding: 6.25rem 0px 4.375rem 0;
    }

    .download_text h3 {
        font-size: 2rem;
        margin-bottom: 3.125rem;
    }

    .download_left {
        padding: 1.875rem 1.5625rem;
    }
}

@media (max-width: 767px) {
    .download_text h3 {
        font-size: 1.625rem;
        margin-bottom: 2.5rem;
    }

    .download_left {
        padding: 1.5625rem 1.25rem;
        margin-bottom: 1.5625rem;
    }

    .download_left p {
        font-size: 0.875rem;
        line-height: 1.7rem;
    }

    .boxed-btn3-line {
        width: 100%;
        display: block;
    }
}

@media (max-width: 480px) {
    .download_area {
        padding: 4.375rem 0px 3.125rem 0;
    }

    .download_text h3 {
        font-size: 1.375rem;
    }

    .download_left {
        padding: 1.25rem 1rem;
    }

    .download_left p {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }

    .boxed-btn3-line {
        padding: 0.75rem 1.5625rem;
        font-size: 0.8125rem;
    }
}


.about-section-block {
    margin-bottom: 45px;
    padding-bottom: 30px;
}

.about-section-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-section-block h2 {
    margin-top: 0 !important;
}

.about-section-block p:last-child {
    margin-bottom: 0;
}


.page-content-wrapper {
    padding: 120px 0px 80px;
    background: #f9f9ff;
}

.content-block-main {
    background: white;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.content-block-main h1 {
    font-size: 42px;
    color: #1A8FE3;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.content-block-main h2 {
    font-size: 32px;
    color: #D11149;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.content-block-main h3 {
    font-size: 24px;
    color: #6610F2;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.content-block-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .page-content-wrapper {
        padding: 80px 0 50px;
    }

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

    .content-block-main h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content-block-main h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .content-block-main h3 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .content-block-main p {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }
}