:root {
    --primary: #0091b9;
    --primary-dark: #007596;
    --primary-light: #00b8eb;
    --secondary: #fd9e31;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --gradient-blue: linear-gradient(135deg, #00b8eb 0%, #0077a5 100%);
    --gradient-button: linear-gradient(to right, #ffffff, #e6f8ff);
    --gradient-cta: linear-gradient(90deg, #01a7cc 0%, #0077a5 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 25px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
}

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

body {
    background-color: #f5f5f5;
    color: var(--text-light);
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.9;
}

.main-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('/assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.95;
}

.gradient-overlay-1,
.gradient-overlay-2,
.gradient-overlay-3 {
    position: absolute;
    width: 100%;
    height: 1402px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 43.75%, rgba(255, 255, 255, 0) 100%);
}

.gradient-overlay-1 {
    top: 1035px;
}

.gradient-overlay-2 {
    top: 2674px;
}

.gradient-overlay-3 {
    top: 4036px;
}

.blue-container {
    position: relative;
    width: 800px;
    margin: 40px auto;
    background-color: rgba(0, 145, 185, 0.85);
    border-radius: var(--border-radius-lg);
    z-index: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.content-wrapper {
    position: relative;
    z-index: 1;
    padding: 45px 0;
}

/* Card styles */
.card {
    width: 680px;
    margin: 0 auto 30px;
    background-color: rgba(0, 183, 234, 0.4); 
    border: 5px solid #FFFFFF;
    border-radius: 34px;
    padding: 25px 30px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
}

.card-title {
    color: #FFF;
    font-family: Roboto;
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
    line-height: 130.523%;
    padding-bottom: 15px;
    text-align: center;
}

/* Main card */
.main-card {
    min-height: auto;
    background: rgba(0, 183, 234, 0.40);
    border-width: 3px;
}

.image-container {
    width: 100%;
    height: 329px;
    margin: 0 auto;
    background-color: var(--text-light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--text-light);
    margin: -55px auto 0;
    position: relative;
    z-index: 2;
    background-color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    background-image: url('/assets/images/profile_image.png');
    background-size: cover;
    background-position: center;
}

.main-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin: 15px 0 10px;
    letter-spacing: -0.4px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 42px;
    font-style: normal;
    font-weight: 800;
    line-height: 130.523%;
}

.description {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 20px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* VIP cards */
.vip-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.vip-card {
    width: 190px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,240,240,0.9) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    gap:10px;
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.vip-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.2;
}

.heart-icon {
    bottom: 10px;
    width: 35px;
    height: 20px;
    color: var(--primary);
}

.heart-icon img {
    width: 100%;
    height: auto;
}

/* Button styles */
.gradient-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 61px;
    margin: 10px auto;
    border-radius: 30.5px;
    background: linear-gradient(to right, #FFFFFF, #ADEDFF);
    border: 2px solid #0091B9;
    box-shadow: 0px 4px 4.7px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0 20px;
}

.gradient-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 145, 185, 0.05);
    transition: all 0.3s ease;
    z-index: -1;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gradient-button:hover::after {
    height: 100%;
}

.button-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.button-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-icon {
    background-image: url('/assets/images/vip_icon.png');
    background-size: 100%;
}



.fishing-icon {
    background-image: url('/assets/images/sp1.png');
    background-size: cover;
    background-position: center;
}

.slot-icon {
    background-image: url('/assets/images/sp3.png');
    background-size: cover;
    background-position: center;
}

.casino-icon {
    background-image: url('/assets/images/sp4.png');
    background-size: cover;
    background-position: center;
}

.sport-icon {
    background-image: url('/assets/images/sp2.png');
    background-size: cover;
    background-position: center;
}

.card-game-icon {
    background-image: url('/assets/images/sp5.png');
    background-size: cover;
    background-position: center;
}

.chicken-fight-icon {
    background-image: url('/assets/images/sp6.png');
    background-size: cover;
    background-position: center;
}

.button-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    flex: 1;
    text-align: center;
}

.button-privacy {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    flex: 1;
    text-align: left;
    padding: 6px 0px 5px 10px;
}

.button-text.medium {
    font-size: 16px;
    text-transform: capitalize;
}

.arrow-icon {
    margin-left: auto;
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.gradient-button:hover .arrow-icon {
    transform: translateX(3px);
    color: var(--secondary);
}

/* CTA button */
.cta-button {
    margin:0px auto;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button img {
    width: 70%;
    max-width: 200px;
}


/* .cta-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
} */

/* Two column layout */
.two-column {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.column {
    flex: 1;
    height: auto;
    min-height: 500px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-md);
    padding: 0 0 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.column:hover {
    transform: translateY(-5px);
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    margin: 280px 20px 15px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.column-description {
    font-size: 16px;
    font-weight: 500;
    margin: 15px 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.column-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    background-color: #333;
    overflow: hidden;
}

.column-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.promo-image {
    background-image: url('./images/promo_banner.png');
    background-size: cover;
    background-position: center;
    right: 0;
    height: 220px;
    width: 180px;
    top: 15px;
    left: auto;
    border-radius: 0;
    box-shadow: var(--shadow-md);
}

.promo-image img{
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

.promo-image::before {
    display: none;
}

.column-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 180px;
    height: 220px;
    color: var(--text-light);
    z-index: 2;
}

/* Social media buttons */
.social-button {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FFFFFF 0%, #ADEDFF 100%);
    border: 2px solid #0091B9;
    border-radius: 30.5px;
    padding: 10px 15px;
    margin-bottom: 5px;
    box-shadow: 0px 4px 4.7px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-text {
    font-size: 32px;
    font-weight: 800;
    color: #0091B9;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    flex: 1;
    text-align: center;
}

/* Conclusion section */
.conclusion {
    width: 680px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(5px);
}

.conclusion h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.conclusion h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

/* Rating section */
.rating-container {
    width: 680px;
    height: auto;
    margin: 40px auto;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    padding: 20px 30px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(5px);
}

.rating-score {
    font-size: 48px;
    font-weight: 800;
    margin-right: 15px;
    color: var(--secondary);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    margin-right: 20px;
}

.star {
    width: 30px;
    height: 30px;
    color: var(--secondary);
    margin-right: 5px;
}

.rating-button {
    background: var(--gradient-cta);
    border-radius: var(--border-radius-sm);
    padding: 12px 20px;
    box-shadow: 0 3px 0 var(--primary-dark);
    margin-left: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 var(--primary-dark);
}

.rating-button:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--primary-dark);
}

.rating-button-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* VIP cards section styling based on Figma */
.vip-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.vip-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

/* For the "View All" button */
.view-all-button {
    width: 100%;
    height: 45px;
    background: linear-gradient(to bottom, #02A8CC, #1C81A0);
    border: none;
    box-shadow: inset 0px -4px 0px 0px rgba(0, 97, 124, 1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: inset 0px -4px 0px 0px rgba(0, 97, 124, 1), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.view-all-button .button-text {
    color: #FFFFFF;
    font-weight: 900;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    flex: 1;
    text-align: center;
}

.khieunai-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.khieunai-content img {
    width: 120px;
    height: auto;
}

.khieunai-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.khieunai-text p {
    color: #FFF;
    font-family: Roboto;
    font-size: 23.47px;
    font-style: normal;
    font-weight: 500;
    line-height: 126%; /* 29.573px */
}

.khieunai-text a {
    font-size: 18px;
    font-weight: 500;
    padding:10px 20px;
    border-radius: 19.975px;
    background-image: linear-gradient(180deg, #02A8CC 0%, #1C81A0 100%);
    box-shadow: 0px -3.716px 0px 0px #00617C inset;
}

/* Add styles for section-khieunai */
.section-khieunai {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 680px;
    margin: 0 auto 30px;
}

.section-khieunai .card {
    width: calc(50% - 10px);
    margin: 0;
}


.section-khieunai .card {
    padding:0;
}

.section-khieunai .card .promo-image {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
}

.section-khieunai .card .promo-image img {
    width: 100%;
    height: 100%;
}
.section-khieunai .card .promo-button {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-khieunai .card .promo-button a {
    color: #FFF;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    border-radius: 19.975px;
    padding: 8px 10px;
    background: linear-gradient(180deg, #02A8CC 0%, #1C81A0 100%);
    box-shadow: 0px -3.716px 0px 0px #00617C inset;
}

.section-khieunai .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-khieunai .khieunai-content {
    padding:10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    max-height: 157px;
}

.section-khieunai .khieunai-content img{
    width: 80%;
    max-width: 80px;
}

.section-khieunai .khieunai-content p {
    font-size: 14px;
    padding-bottom: 10px;
    font-weight: 700;
}

.rating-button {
    border-radius: 40px;
    padding: 5px;
}

.rating-button-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap:15px;
}

.rating-button-text  .rating-button-text-google {
    width: 30px;
    height: 30px;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-button-text  .rating-button-text-google img {
    width: 100%;
    height: auto;
}

/* Responsive styles */
@media (max-width: 900px) {
    .blue-container {
        width: 95%;
        margin: 30px auto;
    }
    
    .card, .conclusion, .rating-container, .kawa-section {
        width: 90%;
    }

    .section-khieunai {
        width: 90%;
    }
}

@media (max-width: 768px) {
    :root {
        --border-radius-sm: 10px;
        --border-radius-md: 16px;
        --border-radius-lg: 24px;
    }
    
    .blue-container {
        width: 92%;
        margin: 20px auto;
        border-radius: var(--border-radius-md);
    }

    .card {
        width: 90%;
        padding: 20px;
        border-radius: var(--border-radius-md);
    }

    .image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .main-title {
        font-size: 30px;
    }

    .description {
        font-size: 16px;
    }

    .vip-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .vip-card {
        width: 160px;
        height: 80px;
        margin-bottom: 0;
    }
    
    .vip-title {
        color: #0091B9;
        text-align: center;
        font-family: Roboto;
        font-size: 12px;
        font-style: normal;
        font-weight: 800;
        line-height: 126%;
    }

    .two-column {
        flex-direction: column;
    }

    .column {
        width: 100%;
        margin-bottom: 20px;
        min-height: 450px;
    }
    
    .column-title {
        margin-top: 260px;
    }

    .conclusion {
        width: 90%;
        font-size: 16px;
        padding: 20px;
    }
    
    .conclusion h2 {
        font-size: 24px;
    }

    .rating-container {
        width: 90%;
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px;
        gap: 15px;
    }
    
    .rating-button {
        margin: 10px auto 0;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .button-text, .social-text {
        font-size: 16px;
        text-align: center;
    }
    
    .gradient-button, .social-button {
        padding: 4px 8px;
        justify-content: center;
    }
    
    .button-icon, .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-button {
        padding: 12px 20px;
    }
    
    .cta-text {
        font-size: 16px;
    }

    .button-text {
        font-size: 24px;
    }
    
    .vip-section-title {
        font-size: 30px;
    }

    .khieunai-content {
        gap: 10px;
    }
    
    .khieunai-content img {
        width: 80px;
    }
    
    .khieunai-text {
        width: auto;
        flex: 1;
    }
    
    .khieunai-text p {
        font-size: 16px;
        text-align: center;
    }

    .section-khieunai {
        width: 90%;
        flex-direction: row;
        gap: 10px;
    }
    
    .section-khieunai .card {
        width: calc(50% - 5px);
        margin: 0;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 20px 0;
    }
    
    .main-title {
        font-size: 26px;
    }

    .description {
        font-size: 15px;
        margin: 15px 0;
        text-align: justify;
    }

    .button-text {
        font-size: 20px;
        text-align: center;
    }
    
    .social-text {
        font-size: 14px;
    }
    
    .column-title {
        font-size: 20px;
        margin: 220px 15px 10px;
    }
    
    .column-image {
        height: 200px;
    }
    
    .column-description {
        font-size: 14px;
    }
    
    .vip-cards {
        gap: 5px;
    }
    
    .vip-card {
        width: 30%;
        height: 70px;
    }
    
    .card-title {
        font-size: 20px;
        padding-bottom: 0;
    }
    
    .button-icon, .social-icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }
    
    .button-text.medium {
        font-size: 14px;
    }
    
    .profile-image {
        width: 90px;
        height: 90px;
        margin-top: -45px;
        border-width: 3px;
    }
    
    .rating-score {
        font-size: 42px;
    }
    
    .star {
        font-size: 26px;
    }
    
    .rating-button-text {
        font-size: 14px;
    }
    
    .conclusion p {
        font-size: 14px;
    }
    
    .gradient-button {
        height: 100%;
        padding: 5px;
        border-radius: 26px;
        justify-content: center;
    }
    
    .view-all-button {
        height: 40px;
        font-size: 18px;
    }
    
    .vip-section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .arrow-icon {
        width: 30px;
        height: 20px;
    }

    .section-khieunai {
        flex-direction: row;
        gap: 8px;
    }
    
    .section-khieunai .card {
        width: calc(50% - 4px);
    }
    
    .section-khieunai .card-title {
        font-size: 14px;
    }
    
    .khieunai-content {
        gap: 8px;
    }
    
    .khieunai-content img {
        width: 60px;
    }
    
    .khieunai-text p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .khieunai-text a {
        font-size: 10px;
        padding: 6px 10px;
    }
}
