:root {
    --primary-color: #EB5E55;
    --secondary-color: #3A3335;
    --accent-color: #D81E5B;
    --light-color: #FDF0D5;
    --soft-color: #C6D8D3;
}

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

body {
    font-family: 'Kanit', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.age-verify-box h2{
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom:20px;
    font-weight: 700;
}

.age-verify-box p {
    font-size:1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.verify-btn{
    background: var(--accent-color);
    color:#fff;
    border: none;
    padding: 15px 40px;
    font-size:1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top:20px;
    font-family: 'Kanit', sans-serif;
    transition: background 0.3s;
}

.verify-btn:hover {
    background: var(--primary-color);
}

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

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

.col-md-4,.col-md-6, .col-md-7,.col-md-10, .col-md-12{
    padding: 0 15px;
    width:100%;
}

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

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

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

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

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

.text-uppercase {
    text-transform: uppercase;
}

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

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

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

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

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

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

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

.pt-3{
    padding-top: 1.5rem !important;
}

.main-header{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    background: rgba(58, 51, 53, 0.95);
    padding:15px 0;
    z-index: 1000;
}

.header-wrapper {
    max-width:1200px;
    margin: 0 auto;
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-left, .nav-right{
    display:flex;
    gap: 25px;
}

.nav-left a,.nav-right a {
    color:#fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-left a:hover, .nav-right a:hover{
    color: var(--accent-color);
}

.logo-center img{
    height: 50px;
}

@media (max-width:991px){
    .header-wrapper{
        flex-direction: column;
        gap:15px;
    }

    .nav-left,.nav-right {
        gap:15px;
        display: none;
    }
    .main-header{
        padding: 6px 0;
    }
}

.site-blocks-cover{
    background-size: cover;
    background-repeat:no-repeat;
    background-position: top;
    background-position: center center;
    margin-top: 80px;
}

.site-blocks-cover.overlay {
    position: relative;
}

.site-blocks-cover.overlay:before{
    position:absolute;
    content: "";
    left: 0;
    bottom:0;
    right: 0;
    top:0;
    background: rgba(0, 0, 0, 0.72);
}

.site-blocks-cover, .site-blocks-cover > .container > .row{
    min-height: 50svh;
    padding: 0 0 30px 0;
}

.site-blocks-cover h1{
    font-size:3.8rem;
    font-weight: 420;
    color: #fff;
    font-weight:850;
}

@media (max-width:991.98px) {
    .site-blocks-cover h1 {
        font-size: 2.2rem;
    }
    .site-blocks-cover{
        margin-top: 60px;
    }
}

.site-blocks-cover p {
    color:white;
    font-size:1.05rem;
    line-height: 1.52;
    font-weight: 320;
}

.site-blocks-cover .desc{
    font-size: 1.42rem;
    font-weight:320;
}

.slider-wrapper{
    position: relative;
    width: 100%;
}

.slide {
    display:none;
    animation: fadeEffect 1s;
}

.slide.active{
    display: block;
}

@keyframes fadeEffect{
    from{opacity: 0;}
    to {opacity:1;}
}

.slider-dots{
    text-align: center;
    margin-top: 30px;
}

.dot{
    height: 10px;
    width:10px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display:inline-block;
    cursor: pointer;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.dot.active{
    background-color: rgba(255, 255, 255, 0.9);
    width: 10px;
    transform: scale(1.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.mouse{
    position: absolute;
    bottom:42px;
    z-index: 5;
    left:50%;
    -webkit-transform: translateX(-50%);
    -ms-transform:translateX(-50%);
    transform: translateX(-50%);
    display:block;
}

.mouse .mouse-icon {
    display: block;
    width:27px;
    height: 47px;
    border:2px solid white;
    border-radius: 16px;
    cursor:pointer;
    position: relative;
    text-align: center;
    -webkit-transition: .32s all ease-in-out;
    -o-transition:.32s all ease-in-out;
    transition: .32s all ease-in-out;
}

.mouse .mouse-wheel {
    height: 5px;
    margin:3px auto 0;
    display: block;
    width:5px;
    background-color:white;
    border-radius: 50%;
    -webkit-animation:1.7s ease infinite wheel-up-down;
    -moz-animation: 1.7s ease infinite wheel-up-down;
    animation:1.7s ease infinite wheel-up-down;
}

.mouse:hover .mouse-icon{
    border-color: #fff;
}

@-webkit-keyframes wheel-up-down{
    0%{
        margin-top:3px;
        opacity: 0;
    }
    32% {
        opacity:1;
    }
    100%{
        margin-top: 22px;
        opacity:0;
    }
}

@-moz-keyframes wheel-up-down {
    0% {
        margin-top:3px;
        opacity:0;
    }
    32%{
        opacity: 1;
    }
    100% {
        margin-top:22px;
        opacity: 0;
    }
}

@keyframes wheel-up-down {
    0%{
        margin-top: 3px;
        opacity: 0;
    }
    32% {
        opacity:1;
    }
    100%{
        margin-top:22px;
        opacity:0;
    }
}

.site-footer {
    padding:3em 0 2em 0;
    background-color:#c9ccd4;
}

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

.site-footer p{
    color: gray;
}

.site-footer h2, .site-footer h3,.site-footer h4, .site-footer h5{
    color: #000;
}

.site-footer a {
    color:rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover{
    color: var(--accent-color);
}

.site-footer .footer-heading{
    font-size: 16px;
    color:#000;
    font-weight:600;
}

.footer-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.about-section {
    max-width:800px;
}

.links-section h2 {
    margin-bottom: 20px;
}

.links-row{
    display: flex;
    gap:30px;
    flex-wrap: wrap;
}

.links-row a{
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.warning-section{
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
}

.gambling-warning {
    font-size: 1rem;
    line-height:1.7;
    color: #333;
    margin:0;
}

.gambling-warning strong{
    color: var(--primary-color);
}

.regulators-section{
    margin-top: 20px;
}

.regulator-logos{
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.regulator-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: opacity 0.3s;

    padding: 12px;
    background: var(--secondary-color);
    height: 80px;
}

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

.regulator-logos img{
    max-width: 180px;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media (max-width:768px){
    .links-row{
        flex-direction: column;
        gap: 15px;
    }

    .regulator-logos{
        gap: 20px;
    }

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

.bg-light {
    background-color:#f6f5f5 !important;
}

.top-picks-area{
    padding: 80px 0;
    background: linear-gradient(135deg, #FDF0D5 0%, #C6D8D3 100%);
    position:relative;
    overflow: hidden;
}

.section-header {
    text-align:center;
    margin-bottom: 50px;
}

.section-header h2{
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom:15px;
    font-weight: 700;
}

.section-header p {
    font-size:1.1rem;
    color: #666;
}

.picks-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
}

.pick-card {
    background:#fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow:hidden;
}

.pick-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-inner{
    position: relative;
    z-index:2;
}

.operator-logo {
    text-align: center;
    margin-bottom:20px;
    height: 80px;
    display:flex;
    align-items: center;
    justify-content:center;
}

.operator-logo img{
    max-height:70px;
    max-width: 180px;
}

.operator-name{
    font-size: 1.5rem;
    font-weight:600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 15px;
}

.rating-display {
    text-align:center;
    margin-bottom: 20px;
    display: flex;
    align-items:center;
    justify-content: center;
    gap:10px;
}

.stars{
    color: #FFB800;
    font-size:1.2rem;
    letter-spacing: 2px;
}

.rating-num {
    color:#666;
    font-weight: 500;
}

.bonus-highlight{
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: #fff;
    padding:15px;
    border-radius: 8px;
    text-align:center;
    margin-bottom: 20px;
}

.bonus-highlight strong {
    font-size:1rem;
}

.operator-desc{
    font-size: 0.95rem;
    color:#555;
    line-height: 1.6;
    margin-bottom:25px;
    text-align: center;
}

.claim-btn {
    display:block;
    background: var(--secondary-color);
    color:#fff;
    text-align: center;
    padding: 14px 25px;
    border-radius:6px;
    text-decoration: none;
    font-weight:600;
    transition: background 0.3s;
}

.claim-btn:hover{
    background: var(--accent-color);
}

.full-width-card{
    grid-column: 1 / -1;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.card-inner-wide {
    display:flex;
    align-items: center;
    gap: 30px;
    position:relative;
    z-index: 2;
}

.card-inner-wide .operator-logo{
    flex-shrink:0;
    margin-bottom: 0;
}

.wide-content{
    flex:1;
}

.wide-content .operator-name{
    text-align: left;
    font-size:1.8rem;
}

.wide-content .rating-display{
    justify-content: flex-start;
}

.wide-content .bonus-highlight {
    text-align:left;
}

.wide-content .bonus-highlight strong{
    font-size: 1.2rem;
}

.wide-content .operator-desc {
    text-align:left;
    margin-bottom: 0;
}

.claim-btn-large{
    flex-shrink: 0;
    padding:18px 35px;
    font-size: 1.1rem;
}

@media (max-width:991px){
    .picks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .full-width-card{
        grid-column: 1/-1;
    }
}

@media (max-width: 768px){
    .picks-grid{
        grid-template-columns:1fr;
    }

    .card-inner-wide{
        flex-direction: column;
        text-align:center;
    }

    .wide-content .operator-name,
    .wide-content .rating-display,
    .wide-content .bonus-highlight,
    .wide-content .operator-desc {
        text-align:center;
    }

    .wide-content .rating-display{
        justify-content:center;
    }
}

.site-section{
    padding: 7.3rem 0;
}

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

.subtitle-39293 {
    color: #EB5E55;
    font-size: 0.95rem;
    text-transform:uppercase;
    letter-spacing: 1px;
    font-weight:600;
}

.serif{
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size:2.5rem;
    color: var(--secondary-color);
}

.text-content p{
    font-size:1.15rem;
    line-height: 1.9;
    color:#555;
    margin-bottom: 1.6rem;
}

.text-content h3{
    font-size: 1.8rem;
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

@media (min-width:768px){
    .col-md-7{
        width: 58.333333%;
    }

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

    .col-md-4 {
        width:33.333333%;
    }
}

.team-cards-row {
    margin-top:50px;
    margin-bottom: 40px;
}

.member-card{
    background: #fff;
    padding: 35px 25px;
    border-radius:10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom:30px;
    transition: transform 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow:0 6px 20px rgba(0,0,0,0.12);
}

.member-initials{
    width: 80px;
    height:80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color:#fff;
    border-radius: 50%;
    display: flex;
    align-items:center;
    justify-content: center;
    font-size:1.8rem;
    font-weight: 700;
    margin:0 auto 20px;
}

.member-card h4 {
    font-size:1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight:600;
}

.member-card p{
    font-size: 1rem;
    color: #666;
    line-height:1.7;
    margin:0;
}

.recent_update_area{
    background: linear-gradient(135deg, #FDF0D5 0%, #C6D8D3 100%);
}

.recent_update_area.made_white{
    background:#fff;
}

.recent_update_text .chart_img{
    position: relative;
    z-index:999;
}

.recent_update_text .chart_img img {
    height:100% !important;
    z-index: 999;
}

.recent_update_text .chart_img:after{
    content: "";
    position:absolute;
    height: 100%;
    width:20%;
    top:0;
    right: -40px;
    background: var(--accent-color);
    z-index:-1;
}

.recent_update_text .section_content {
    background: linear-gradient(to right, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.section_content{
    position:relative;
    padding: 70px 0px 73px 70px;
}

.section_content h6 {
    color:#fff;
    font-size: 14px;
    margin-bottom:12px;
    position: relative;
    letter-spacing:2px;
    text-transform: uppercase;
}

.section_content h6:after{
    content:"";
    position: absolute;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--light-color) 100%);
    height:1px;
    width: 50px;
    bottom:-10px;
    left:0;
}

.section_content h1{
    color: #fff;
    line-height:45px;
    padding:30px 0 30px;
    margin-bottom: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.section_content p {
    margin-bottom:20px;
    color:#fff;
    font-weight: 400;
    padding:0 40px 20px 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.advantage-list {
    list-style: none;
    padding:0;
    margin: 0 0 30px 0;
}

.advantage-list li{
    color: #fff;
    padding: 8px 0 8px 25px;
    position:relative;
    font-size: 0.98rem;
}

.advantage-list li:before {
    content:"✓";
    position: absolute;
    left:0;
    color: var(--light-color);
    font-weight: 700;
    font-size:1.2rem;
}

.primary_btn{
    display:inline-block;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--light-color) 51%, var(--primary-color) 100%);
    background-size: 200% auto;
    padding: 0px 35px;
    color:#222;
    letter-spacing:1px;
    font-family: 'Kanit', sans-serif;
    font-size:12px;
    font-weight: 600;
    line-height: 50px;
    border-radius:5px;
    outline: none !important;
    box-shadow:0px 10px 30px rgba(235, 94, 85, 0.2);
    text-align: center;
    cursor:pointer;
    transition: all 0.4s ease 0s;
    text-transform: uppercase;
    text-decoration: none;
}

.primary_btn:hover {
    background-position:right center;
    color: var(--secondary-color);
}

.section_gap{
    padding: 120px 0;
}

.container-fluid {
    max-width: 100%;
    padding-left:15px;
    padding-right: 15px;
}

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

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

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

.img-fluid{
    max-width: 100%;
    height: auto;
}

@media (max-width:991px){
    .left_side_text {
        margin-bottom:50px;
    }
}

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

    .made_life_area.made_white .left_side_text {
        margin-bottom: 0px;
        margin-top:30px;
    }
}

@media (min-width:768px) and (max-width: 991px) {
    .chart_img{
        display: none;
    }

    .section_gap {
        padding:80px 0;
    }
}

@media (min-width: 481px) and (max-width:767px){
    .chart_img {
        display:none;
    }

    .section_content{
        padding: 50px 10px 50px 50px;
    }

    .section_content h1{
        line-height: 40px;
        font-size:30px;
        padding:25px 0 25px;
    }

    .section_gap{
        padding: 70px 0;
    }
}

@media (min-width:320px) and (max-width: 480px) {
    .chart_img{
        display: none;
    }

    .section_content {
        padding:35px 10px 35px 35px !important;
    }

    .section_content h1 {
        line-height:30px;
        font-size: 20px;
        padding: 20px 0 16px;
    }

    .section_content p{
        padding-bottom: 30px;
    }

    .section_gap {
        padding:60px 0;
    }
}

@media (min-width: 992px) and (max-width:1199px){
    .section_content{
        padding:68px 0px 68px 70px;
    }

    .section_content h1 {
        line-height: 40px;
        padding:25px 0 25px;
        font-size: 30px;
    }
}

.policy-page{
    padding: 120px 0 80px 0;
    background: #f9f9f9;
    min-height: 70vh;
}

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

.policy-content h1 {
    font-size:2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.policy-content p{
    font-size: 1.05rem;
    line-height:1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

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

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

    .policy-content h1{
        font-size: 1.8rem;
    }

    .policy-content p {
        font-size:1rem;
        text-align: left;
    }
}

.contact-page{
    padding: 120px 0 80px 0;
    background: #f9f9f9;
    min-height:70vh;
}

.contact-wrapper {
    background:#fff;
    padding: 50px;
    border-radius:8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width:700px;
    margin: 0 auto;
}

.contact-wrapper h1{
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom:15px;
    font-weight: 700;
    text-align: center;
}

.contact-intro {
    text-align: center;
    color:#666;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

.contact-form label {
    display:block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width:100%;
    padding: 12px 15px;
    border:1px solid #ddd;
    border-radius: 5px;
    font-family: 'Kanit', sans-serif;
    font-size:1rem;
    transition: border-color 0.3s;
}

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

.contact-form textarea{
    resize: vertical;
}

.error-msg{
    color: var(--primary-color);
    font-size: 0.85rem;
    display: block;
    margin-top:5px;
}

.submit-btn {
    width:100%;
    background: var(--accent-color);
    color: #fff;
    padding:15px;
    border: none;
    border-radius:5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family:'Kanit', sans-serif;
}

.submit-btn:hover{
    background: var(--primary-color);
}

.thankyou-popup {
    position: fixed;
    top:0;
    left: 0;
    width:100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content:center;
    align-items: center;
    z-index: 10000;
}

.popup-content{
    background: #fff;
    padding:40px;
    border-radius: 10px;
    text-align:center;
    max-width: 400px;
}

.popup-content h2 {
    color: var(--accent-color);
    margin-bottom:15px;
    font-size: 1.8rem;
}

.popup-content p{
    color: #555;
    margin-bottom: 25px;
    font-size:1.05rem;
}

.close-popup{
    background: var(--secondary-color);
    color:#fff;
    padding: 12px 30px;
    border:none;
    border-radius: 5px;
    cursor:pointer;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

.close-popup:hover {
    background: var(--accent-color);
}

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

    .contact-wrapper{
        padding:30px 20px;
    }

    .contact-wrapper h1 {
        font-size:1.8rem;
    }
}