:root {
    --primary-dark: #271F30;
    --secondary-brown: #6C5A49;
    --accent-gold: #C8AD55;
    --light-green: #D0FCB3;
    --medium-green: #9BC59D;
}

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

body {
    font-family: 'Figtree', sans-serif;
    background-color: #271F30;
    color: #f4f4f4;
    line-height: 1.6;
}

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

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

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

.col-xl-2 { width: 16.66%; }
.col-xl-3 { width: 25%; }
.col-xl-7 { width: 58.33%; }
.col-xl-12 { width: 100%; }
.col-lg-2 { width: 16.66%; }
.col-lg-3 { width: 25%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.33%; }
.col-md-12 { width: 100%; }

.align-items-center { align-items: center; }
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.text-white { color: #fff; }
.pb-20 { padding-bottom: 20px; }
.img-fluid { max-width: 100%; height: auto; display: block; }
.relative { position: relative; }

.video-section {
    font-family: "Figtree", sans-serif;
}

.spad {
    padding-top: 103px;
    padding-bottom: 103px;
}

.video-text h2 {
    font-size: 38px;
    font-weight: 300;
    color: #D0FCB3;
    margin-bottom: 35px;
}

.video-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 2;
    margin-bottom: 45px;
}

.site-btn {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 600;
    min-width: 186px;
    padding: 23px 47px;
    text-transform: uppercase;
    background: #C8AD55;
    color: #fff;
    line-height: normal;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.site-btn:hover {
    background: #d4b961;
}

.video-box {
    height: 607px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 2px solid #6C5A49;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.video-box .video-popup {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background: #C8AD55;
    color: #fff;
    font-size: 30px;
}

.video-box .video-popup:hover {
    background: #271F30;
}

@media (max-width: 991px) {
    .spad {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .video-text h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .video-box {
        height: 450px;
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .video-text h2 {
        font-size: 28px;
    }

    .video-text p {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .site-btn {
        min-width: 160px;
        padding: 18px 35px;
        font-size: 13px;
    }

    .video-box {
        height: 350px;
    }
}

.header-area {
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 9;
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-area .main-header-area {
    padding: 18px 0;
    background: transparent;
}

.header-area .main-header-area .logo-img {
    text-align: center;
}

.header-area .main-header-area .logo-img img {
    max-height: 80px;
    max-width:  100%;
    width: auto;
}

.banner-area {
    background: linear-gradient(135deg, #6C5A49 0%, #271F30 100%);
    position: relative;
    min-height: 100vh;
}

.banner-area .overlay-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.banner-area .fullscreen {
    padding: 140px 0 80px;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.banner-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.primary-btn2 {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn2:hover {
    background: #fff;
    color: #6C5A49;
}

.footer {
    background: #001D38;
}

.footer-main-content {
    padding: 50px 0 30px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 35px;
}

.footer-logo {
    max-height: 70px;
    width: auto;
    max-width: 100%;
}

.footer-navigation {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-navigation a:hover {
    color: #C8AD55;
}

.responsible-gaming-notice {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    background: rgba(200, 173, 85, 0.15);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #C8AD55;
}

.warning-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #C8AD55;
    margin-bottom: 15px;
}

.warning-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

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

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

.copy-right_text {
    padding: 40px 0;
}

.footer_border {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.copy_right {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.copy_right a {
    color: #C8AD55;
}

.copy_right a:hover {
    color: #D0FCB3;
}

@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 36px;
    }

    .banner-area .fullscreen {
        min-height: auto;
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 28px;
    }

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

    .col-xl-2, .col-xl-3, .col-xl-7,
    .col-lg-2, .col-lg-3, .col-lg-6, .col-lg-7 {
        width: 100%;
    }

    .copy-right_text {
        padding: 30px 0;
    }
    .footer_border {
        margin-bottom: 30px;
    }
    .copy_right {
        font-size: 13px;
    }

    .header-area .main-header-area .logo-img img {
        max-height: 60px;
    }

    .footer-logo {
        max-height: 55px;
    }

    .footer-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .responsible-gaming-notice {
        padding: 20px;
    }

    .warning-highlight {
        font-size: 17px;
    }

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

    .regulator-logos {
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .primary-btn2 {
        padding: 12px 28px;
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .footer-navigation a {
        font-size: 14px;
    }

    .regulator-logos {
        gap: 15px;
    }

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

.platformsListingArea {
    background: linear-gradient(180deg, #271F30 0%, #1a141f 100%);
    padding: 70px 0;
}

.topPlatformsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.singlePlatformBox {
    background: linear-gradient(145deg, rgba(108,90,73,0.25), rgba(39,31,48,0.4));
    border: 1.5px solid #6C5A49;
    border-radius: 14px;
    padding: 32px;
    width: calc(50% - 14px);
    transition: all 0.35s;
}

.singlePlatformBox:hover {
    transform: translateY(-6px);
    border-color: #C8AD55;
    box-shadow: 0 12px 35px rgba(200,173,85,0.25);
}

.platformHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.brandImg {
    height: 52px;
    width: auto;
}

.ratingArea {
    text-align: right;
}

.starsDisplay {
    color: #C8AD55;
    font-size: 19px;
    display: block;
    margin-bottom: 4px;
}

.scoreNum {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 600;
}

.platformTitle {
    font-size: 27px;
    color: #D0FCB3;
    margin-bottom: 16px;
    font-weight: 700;
}

.bonusHighlight {
    background: rgba(200,173,85,0.18);
    padding: 14px 18px;
    margin-bottom: 20px;
}

.bonusLabel {
    font-size: 12px;
    color: #C8AD55;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 6px;
}

.bonusAmount {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.platformDesc {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.benefitsList {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.benefitsList li {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.benefitsList li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9BC59D;
    font-weight: 700;
    font-size: 16px;
}

.claimBtn {
    display: block;
    background: linear-gradient(135deg, #C8AD55, #d4b961);
    color: #271F30;
    text-align: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(200,173,85,0.3);
}

.claimBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(200,173,85,0.45);
}

.widePlatform {
    width: 100%;
}

.wideContent {
    display: flex;
    gap: 30px;
    align-items: center;
}

.wideLeft {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.brandImgWide {
    height: 58px;
    width: auto;
}

.wideInfo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wideMiddle {
    flex: 1;
}

.wideRight {
    flex: 0 0 280px;
}

.wideRight .benefitsList {
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .singlePlatformBox {
        width: 100%;
    }

    .wideContent {
        flex-direction: column;
        gap: 24px;
    }

    .wideLeft {
        width: 100%;
    }

    .wideRight {
        flex: 1;
        width: 100%;
    }
}

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

    .topPlatformsGrid {
        gap: 20px;
    }

    .singlePlatformBox {
        padding: 24px;
    }

    .platformTitle {
        font-size: 23px;
    }

    .bonusAmount {
        font-size: 16px;
    }

    .brandImg {
        height: 44px;
    }

    .brandImgWide {
        height: 48px;
    }

    .wideLeft {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

.text-section {
    padding: 7em 0;
    background: #1a141f;
}

.text-section .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #D0FCB3;
    margin-bottom: 20px;
    font-family: "Figtree", sans-serif;
}

.text-section .section-description {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 0;
}

.text-section .text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-section .text-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    background: rgba(108,90,73,0.2);
    padding: 22px 26px;
}

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

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

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

.col-md-8 {
    width: 66.66%;
}

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

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

    .text-section .section-title {
        font-size: 28px;
    }

    .text-section .section-description {
        font-size: 16px;
    }

    .text-section .text-content p {
        font-size: 15px;
        padding: 18px 20px;
    }

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

.ftco-section {
    padding: 7em 0;
    position: relative;
}
.bg-light {
    background: #f8f9fa !important;
}
.heading-section .subheading {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    color: #C8AD55;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.heading-section h2 {
    font-size: 40px;
    font-weight: 500;
    color: #271F30;
    font-family: 'Figtree', sans-serif;
}

.ftco-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.btn-MAIN_COLOR_OUTLINE {
    color: #C8AD55;
    border: 1px solid #C8AD55;
    background: transparent;
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 4px;
}
.btn-MAIN_COLOR_OUTLINE:hover {
    background: #C8AD55;
    color: #fff;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

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

.offset-md-1 {
    margin-left: 8.33%;
}

.col-md-4 {
    width: 33.33%;
    padding: 0 15px;
}

.col-md-7 {
    width: 58.33%;
}

.col-md-10 {
    width: 83.33%;
}

.ftco-animate {
    opacity: 1;
}

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

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.team-member-card {
    background: #fff;
    border: 2px solid #6C5A49;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108,90,73,0.2);
    border-color: #C8AD55;
}

.member-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #C8AD55, #d4b961);
    color: #271F30;
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.member-role {
    font-size: 22px;
    color: #271F30;
    margin-bottom: 15px;
    font-weight: 700;
}

.member-description {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

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

    .heading-section h2 {
        font-size: 28px;
    }

    .ftco-section p {
        font-size: 16px;
    }

    .col-md-4,
    .col-md-7,
    .col-md-10 {
        width: 100%;
    }

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

    .col-md-4 {
        margin-bottom: 25px;
    }

    .col-md-4:last-child {
        margin-bottom: 0;
    }
}

.site-section {
    padding: 5em 0;
}
.section-title {
    padding-bottom: 20px;
    font-size: 3rem;
    color: #271F30;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #333;
}

.simple-text-section {
    background: #f8f9fa;
}

.simple-text-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.contact-form-wrapper {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group-wrapper {
    margin-bottom: 20px;
}

.form-control-input,
.form-control-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    transition: border-color 0.3s;
    background: #fff;
}

.form-control-input:focus,
.form-control-textarea:focus {
    outline: none;
    border-color: #C8AD55;
}

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

.btn {
    font-size: 16px;
    border-radius: 30px;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn.btn-primary {
    background: #C8AD55;
    border-color: #C8AD55;
    color: #fff;
    font-weight: 600;
    padding: 14px 40px;
}

.btn.btn-primary:hover {
    background: #d4b961;
}

.thank-you-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.popup-content {
    background: #fff;
    margin: 15% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
}

.close-popup:hover {
    color: #333;
}

.popup-content h3 {
    color: #271F30;
    font-size: 28px;
    margin-bottom: 15px;
}

.popup-content p {
    color: #666;
    font-size: 16px;
}

@media (max-width: 767px) {
    .site-section {
        padding: 3em 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .popup-content {
        margin: 30% auto;
        padding: 30px;
    }
}

.page-content-wrapper {
    background: #271F30;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 60px;
}

.content-area {
    background: rgba(255,255,255,0.05);
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.content-area h1 {
    font-size: 42px;
    font-weight: 700;
    color: #C8AD55;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-area h2 {
    font-size: 28px;
    font-weight: 600;
    color: #D0FCB3;
    margin-top: 40px;
    margin-bottom: 18px;
    line-height: 1.4;
}

.content-area h3 {
    font-size: 22px;
    font-weight: 500;
    color: #9BC59D;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-area p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.content-area a {
    color: #C8AD55;
    text-decoration: underline;
    transition: color 0.3s;
}

.content-area a:hover {
    color: #D0FCB3;
}

@media (max-width: 991px) {
    .page-content-wrapper {
        padding-top: 120px;
    }

    .content-area {
        padding: 40px 30px;
    }

    .content-area h1 {
        font-size: 36px;
    }

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

@media (max-width: 767px) {
    .page-content-wrapper {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .content-area {
        padding: 30px 20px;
    }

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

    .content-area h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .content-area h3 {
        font-size: 19px;
    }

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

@media (max-width: 480px) {
    .content-area {
        padding: 25px 15px;
    }

    .content-area h1 {
        font-size: 24px;
    }

    .content-area h2 {
        font-size: 20px;
    }

    .content-area p {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .row{
        margin: 0;
    }
}


.age-popup-overlay {
    display: block;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(39,31,48,0.95);
    backdrop-filter: blur(8px);
}

.age-popup-box {
    background: linear-gradient(145deg, #271F30, #1a141f);
    border: 2px solid #C8AD55;
    border-radius: 16px;
    padding: 45px 35px;
    max-width: 480px;
    margin: 10% auto;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.age-icon-wrapper {
    margin-bottom: 25px;
}

.age-icon {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: linear-gradient(135deg, #C8AD55, #d4b961);
    color: #271F30;
    font-size: 42px;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(200,173,85,0.4);
}

.age-popup-title {
    font-size: 32px;
    color: #D0FCB3;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
}

.age-popup-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 35px;
}

.age-confirm-button {
    background: linear-gradient(135deg, #C8AD55, #d4b961);
    color: #271F30;
    border: none;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(200,173,85,0.35);
    font-family: 'Figtree', sans-serif;
}

.age-confirm-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(200,173,85,0.5);
}

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

@media (max-width: 767px) {
    .age-popup-box {
        margin: 20% auto;
        padding: 35px 25px;
        max-width: 90%;
    }

    .age-icon {
        width: 75px;
        height: 75px;
        line-height: 75px;
        font-size: 36px;
    }

    .age-popup-title {
        font-size: 26px;
    }

    .age-popup-text {
        font-size: 15px;
    }

    .age-confirm-button {
        padding: 14px 35px;
        font-size: 16px;
        width: 100%;
    }
}

.cookie-consent-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #271F30, #1a141f);
    border-top: 3px solid #C8AD55;
    padding: 25px 20px;
    z-index: 9998;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
    display: none;
}

.cookie-consent-wrapper.show {
    display: block;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content-section {
    flex: 1;
}

.cookie-title {
    color: #D0FCB3;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cookie-description {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: #C8AD55;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #d4b961;
}

.cookie-buttons-section {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Figtree', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #C8AD55, #d4b961);
    color: #271F30;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200,173,85,0.4);
}

.cookie-btn-decline {
    background: transparent;
    border: 2px solid #6C5A49;
    color: rgba(255,255,255,0.8);
}

.cookie-btn-decline:hover {
    border-color: #C8AD55;
    color: #fff;
}

.cookie-btn-settings {
    background: rgba(108,90,73,0.3);
    color: #fff;
    border: 1px solid #6C5A49;
}

.cookie-btn-settings:hover {
    background: rgba(108,90,73,0.5);
}

.cookie-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.cookie-modal-overlay.show {
    display: block;
}

.cookie-modal-box {
    background: linear-gradient(145deg, #271F30, #1a141f);
    border: 2px solid #C8AD55;
    border-radius: 12px;
    max-width: 650px;
    margin: 5% auto;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.modal-header-section {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(108,90,73,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: #D0FCB3;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.modal-close-btn {
    color: rgba(255,255,255,0.6);
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #C8AD55;
}

.modal-content-section {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-option-item {
    background: rgba(108,90,73,0.15);
    border: 1px solid #6C5A49;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-option-item:last-child {
    margin-bottom: 0;
}

.option-info {
    flex: 1;
}

.option-title {
    color: #D0FCB3;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

.option-desc {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.option-toggle {
    flex-shrink: 0;
}

.cookie-checkbox {
    display: none;
}

.toggle-label {
    display: block;
    width: 50px;
    height: 26px;
    background: #6C5A49;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-label:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: 0.3s;
}

.cookie-checkbox:checked + .toggle-label {
    background: #C8AD55;
}

.cookie-checkbox:checked + .toggle-label:after {
    left: 27px;
}

.cookie-checkbox:disabled + .toggle-label {
    opacity: 0.5;
    cursor: not-allowed;
    background: #9BC59D;
}

.modal-footer-section {
    padding: 20px 30px;
    border-top: 1px solid rgba(108,90,73,0.3);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .cookie-consent-container {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons-section {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal-box {
        margin: 10% auto;
        max-width: 95%;
    }

    .cookie-option-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-footer-section {
        flex-direction: column;
    }

    .modal-content-section {
        max-height: 300px;
    }
}