:root {
    --color-primary: #240115;
    --color-secondary: #DE3C4B;
    --color-accent: #87F5FB;
    --color-dark: #2F131E;
    --color-light: #CEC3C1;
    --color-black: #000000;
    --color-white: #ffffff;
}

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

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-primary);
    line-height: 1.7;
}

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

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

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

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

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

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

.col-md-4,
.col-md-6,
.col-md-7,
.col-md-12,
.col-lg-6 {
    position: relative;
    width:100%;
    padding-right:15px;
    padding-left: 15px;
}

@media (min-width: 768px){
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-6{
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex:0 0 58.333333%;
        max-width:58.333333%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

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

.ftco-navbar-light{
    background: var(--color-secondary);
    position: absolute;
    top:0;
    left: 0;
    right:0;
    z-index: 3;
    padding: 0;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light {
        background: var(--color-black) !important;
        position: relative;
        top: 0;
        padding:10px 15px;
    }
}

.ftco-navbar-light .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ftco-navbar-light .navbar-brand{
    text-decoration: none;
    display: block;
}

.ftco-navbar-light .navbar-brand img {
    height: 45px;
    width: auto;
    display: block;
}

@media (max-width: 991.98px){
    .ftco-navbar-light .navbar-nav {
        padding-bottom: 10px;
    }
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-size:14px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left:20px;
    padding-right: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    opacity: 1 !important;
    text-decoration: none;
    display: block;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover{
    color: var(--color-white);
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
        padding-left:0;
        padding-right: 0;
        padding-top: .9rem;
        padding-bottom:.9rem;
    }
}

.ftco-navbar-light .navbar-nav > .nav-item.active > a {
    color: white;
}

.ftco-navbar-light .navbar-toggler {
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor:pointer;
    padding-right: 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .1em;
    display: none;
    background: transparent;
}

.ftco-navbar-light .navbar-toggler:focus{
    outline: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin:0;
    padding:0;
}

.navbar-collapse {
    display: none;
}

@media (min-width: 992px) {
    .navbar-collapse{
        display: flex !important;
        justify-content: flex-end;
        flex-basis: auto;
    }
}

.ml-auto {
    margin-left: auto !important;
}

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

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

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

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

.ftco-cover-1.overlay:before{
    content: "";
    position: absolute;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    opacity: .52;
    background: rgba(0, 0, 0, 0.52);
}

.ftco-cover-1.overlay h1{
    color: var(--color-white);
    font-size:4.3rem;
    line-height: 1.05;
}

.ftco-cover-1.overlay p {
    color: var(--color-white);
    font-size: 17px;
}

.form-control{
    height: 57px;
    background: var(--color-white) !important;
    font-family: 'IBM Plex Sans', sans-serif;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    font-size:1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.form-control:active, .form-control:focus {
    border-color: var(--color-secondary);
    outline:0;
}

.form-control:hover, .form-control:active, .form-control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-primary{
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius:0.25rem;
    cursor: pointer;
    border: 1px solid transparent;
    font-weight: 600;
}

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

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

.d-flex{
    display: flex !important;
}

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

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

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

.form-group{
    margin-bottom: 1rem;
}

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

.site-footer {
    padding: 4.2em 0;
    background: #3a3a3a;
}

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

.site-footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.site-footer p{
    color: var(--color-white);
}

.site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: var(--color-white);
}

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

.site-footer a:hover{
    color: white;
}

.site-footer ul li{
    margin-bottom: 11px;
}

.site-footer .footer-heading {
    font-size: 17px;
    color: var(--color-white);
}

.footer-suscribe-form .form-control{
    color: var(--color-black);
}

.footer-suscribe-form .form-control:hover,
.footer-suscribe-form .form-control:active,
.footer-suscribe-form .form-control:focus {
    color: var(--color-black) !important;
}

.footer-suscribe-form .btn{
    color: var(--color-white);
}

.border-secondary {
    border-color: #6c757d !important;
}

.bg-transparent {
    background-color:transparent !important;
}

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

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

.mt-5 {
    margin-top: 3.2rem !important;
}

.pt-5{
    padding-top: 3.2rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-3{
    padding-left: 1rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

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

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

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control{
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group-append{
    display: flex;
    margin-left: -1px;
}

.copyright {
    font-size: 15px;
    color: #d2d2d2;
    text-align: center;
    margin-top: 30px;
}

.footer-links-full {
    columns: 2;
    column-gap: 30px;
}

.footer-links-full li {
    break-inside: avoid;
}

.footer-bottom-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.gambling-warning-box {
    background: rgba(222, 60, 75, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 25px 30px;
    flex: 1;
}

.gambling-warning-box h3 {
    color: var(--color-secondary);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.gambling-warning-box p{
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.support-logos-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.support-logos-row a {
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.support-logos-row a:hover {
    opacity: 1;
}

.support-logos-row img{
    height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .footer-bottom-row {
        flex-direction: column;
        gap: 25px;
    }

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

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

    .support-logos-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .support-logos-row img {
        height: 40px;
    }

    .footer-links-full {
        columns: 1;
    }
}

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

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

.age-modal {
    background: var(--color-white);
    padding: 40px 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-modal h2 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.age-confirm-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.age-confirm-btn:hover {
    background-color: #c23340;
}

@media (max-width: 767px) {
    .age-modal {
        padding: 30px 25px;
    }

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

    .age-modal p {
        font-size: 15px;
    }

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

.top-casinos-wrap {
    padding: 60px 0;
    background: #f8f8f8;
}

.section-heading-main {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtext{
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-list-box{
    max-width: 100%;
}

.gaming-item-row {
    display: flex;
    align-items: center;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    padding:25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.gaming-item-row:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gaming-logo-col{
    flex: 0 0 180px;
    max-width: 180px;
    margin-right: 30px;
    width: 160px;
    height: 160px;

    padding: 10px;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaming-logo-col img {
    width: 100%;
    height: auto;
    display:block;
}

.gaming-info-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
}

.gaming-info-col h3{
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 140px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    min-width: 150px;
}

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

.star-half {
    color: #FFB800;
    font-size: 20px;
    position: relative;
}

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

.rating-text {
    margin-left: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.gaming-info-col .bonus-details {
    flex:1;
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.claim-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.claim-btn:hover{
    background-color: #c23340;
}

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

    .section-subtext {
        font-size: 16px;
    }

    .gaming-item-row{
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .gaming-logo-col {
        flex: 0 0 auto;
        max-width: 150px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .gaming-info-col {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .gaming-info-col h3 {
        min-width: auto;
    }

    .rating-stars {
        min-width: auto;
    }

    .claim-btn{
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .top-casinos-wrap {
        padding: 40px 0;
    }

    .section-heading-main {
        font-size: 24px;
    }

    .gaming-item-row {
        padding: 15px;
    }

    .gaming-logo-col {
        max-width: 120px;
    }
}

.policy-page-wrap {
    padding: 100px 0 80px;
    background: var(--color-white);
}

.policy-page-wrap h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.policy-page-wrap .update-date{
    font-size: 16px;
    color: #888;
    margin-bottom: 35px;
    font-style: italic;
}

.policy-page-wrap p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

.policy-page-wrap .container {
    max-width: 900px;
}

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

    .policy-page-wrap h1{
        font-size: 32px;
    }
}

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

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

    .policy-page-wrap p {
        font-size: 16px;
        line-height: 1.7;
    }
}
.main-section {
    padding: 7.5rem 0;
}

@media (max-width: 991.98px) {
    .main-section {
        padding: 3.5rem 0;
    }
}

.main-section h2 {
    font-weight: 400;
    color: var(--color-primary);
    font-size: 2.2rem;
}

.main-section p {
    line-height: 1.8;
    color: #3a4f5c;
    font-weight: 400;
    font-size: 1.1rem;
}

.btn {
    border-radius: 35px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    padding: 12px 22px;
    text-decoration: none;
    display: inline-block;
}

.btn.btn-main{
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    transition: background-color 0.3s ease;
}

.btn.btn-main:hover {
    background: #c23340;
    border-color: #c23340;
}

.btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

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

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

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

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 991px) {
    .col-lg-5, .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .main-section h2 {
        font-size: 1.8rem;
    }

    .main-section p {
        font-size: 1rem;
    }
}
.text_section_area {
    padding: 125px 0;
}
.text_section_area .section_title h3 {
    font-size: 38px;
    font-weight: 400;
    line-height: 58px;
    color: var(--color-primary);
    position: relative;
    z-index: 0;
    padding-bottom: 17px;
}
.text_section_area .section_title p {
    font-size: 17px;
    color: #606060;
    line-height: 30px;
    margin-bottom: 0;
    font-weight: 400;
}
.text_section_area .text_content p {
    font-size: 17px;
    line-height: 30px;
    color: #606060;
    margin-bottom: 17px;
}
.mb-65 {
    margin-bottom: 70px;
}

.col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-md-10{
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

    .text_section_area .section_title h3{
        font-size: 28px;
        line-height: 40px;
    }
}

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

    .text_section_area .section_title h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .text_section_area .section_title p {
        font-size: 16px;
    }

    .text_section_area .text_content p {
        font-size: 16px;
        line-height: 28px;
    }

    .col-xl-8, .col-md-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}