html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(145deg, #0a0a0a, #1e1e1e, #bfbfbf);
    margin: 0;
    padding: 0;
}

.gradient-text {
    background: linear-gradient(90deg, #f8c400, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* header section style */
.navbar-scrolled {
    background-color: #000 !important;
    transition: background-color 0.3s ease;
}

.navbar .nav-link {
    color: #ffffff !important;
}

.offcanvas {
    background-color: #0a0a0a;
}

/* hero section style */
.casino-hero {
    background: url("/assets/image/playboom-bg.avif") center center / cover
        no-repeat fixed;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.casino-overlay {
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.custom-vh {
    min-height: 100vh;
}

@media (min-width: 768px) {
    .custom-vh {
        min-height: 75vh;
    }
}

/* Overlap Background */
.card-overlap-section {
    background-color: #000;
    border-radius: 1rem 1rem 0 0;
    position: relative;
    z-index: 2;
}

/* Card Styling */
.custom-card {
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #0a0a0a, #1e1e1e, #bfbfbf);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.card-image-side {
    width: 160px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
}

/* Responsive image sizing */
@media (max-width: 991.98px) {
    .card-image-side {
        width: 140px;
    }
}

@media (max-width: 767.98px) {
    .card-image-side {
        width: 110px;
    }
}

@media (max-width: 575.98px) {
    .card-image-side {
        width: 100px;
    }
}

.card-image-side img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* Stats Section Styling */
.casino-stats .gradient-icon {
    background: linear-gradient(90deg, #f8c400, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.casino-stats i {
    transition: transform 0.3s ease;
}
.casino-stats i:hover {
    transform: scale(1.2);
}
.stat-item small {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Responsive Card Position */
@media (min-width: 768px) {
    .custom-card {
        transform: translateY(-110px);
    }

    .casino-stats {
        transform: translateY(-70px);
    }
}

/* achievement section style */
.achievements-section h6 {
    font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.125rem);
    font-weight: 500;
    line-height: 1.5;
}

.achievements-section p {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
}

.achievement-box {
    height: 180px;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.achievement-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-content {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* recovery-section style */

.recovery-section h5 {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 500;
    line-height: 1.5;
}

.recovery-section p {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
}

.recovery-step {
    background-color: #111;
    border-radius: 1rem;
    color: #e0e0e0;
}

.step-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(255, 255, 255, 0.05));
}

/* About Section Styles */
.about-section p {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
}
.image-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 767.98px) {
    .image-container {
        max-height: 200px;
    }

    .image-container img {
        height: 100%;
    }
}

@media (min-width: 768px) {
    .image-container {
        max-height: 450px;
    }

    .image-container img {
        height: 100%;
    }
}

/* aticle section style */
.article-section {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
    color: #fff !important;
}
.article-section p {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
}

.article-section .accordion-body {
    color: #fff;
}

.py-10 {
	padding-top: 10rem !important;
	padding-bottom: 3rem !important;
}
