html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(to bottom, #f8faff, #ffffff);
    color: #111;
    overflow-x: hidden;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
}

a,
ul,
ol,
li {
    color: #111 !important;
    font-weight: 400;
    text-decoration: none;
}

/* start header style */
.navbar {
    background: linear-gradient(to right, #007bff, #00c6ff);
}

.navbar .navbar-nav .nav-link {
    font-weight: 400;
    color: #fff !important;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff !important;
}

/* Mobile Top Navbar */
.mobile-top-nav {
    background: linear-gradient(to right, #007bff, #00c6ff);
    height: 60px;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.mobile-search {
    width: 100%;
    position: relative;
}

.search-input {
    background-color: #fff;
    border: none;
    border-radius: 50px;
    height: 38px;
    font-size: 0.8rem;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding-right: 40px;
    padding-left: 15px;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.search-icon.end-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    pointer-events: none;
}

/* Mobile Bottom Navbar */
.fortune-bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #007bff, #00c6ff);
    width: 90%;
    max-width: 400px;
    height: 50px;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.fortune-nav-item {
    flex: 1;
    text-align: center;
    color: #999;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

.fortune-nav-item.active,
.fortune-nav-item:hover {
    color: #4b60f5;
}

.fortune-nav-item span {
    display: block;
    font-size: 0.7rem;
}

.fortune-nav-item.center-item {
    position: relative;
    top: -20px;
    background: #007bff;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fortune-nav-item.center-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(111, 66, 193, 0.6);
}
/* end header style */

/* start banner styles */
@media (min-width: 768px) {
    .mt-banner-fix {
        margin-top: 73px;
    }
}

.banner-limited-height {
    max-height: 100%;
    overflow: hidden;
}

.banner-img {
    height: 100%;
    object-fit: cover;
}

.carousel-line-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-line-indicators span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.carousel-line-indicators span.active,
.carousel-line-indicators span:hover {
    background-color: #fff;
}
/* end banner styles */

/* start hero styles */
.hero-section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    text-align: left;
}

.hero-content-box {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: -0.5px;
}

.hero-section .lead {
    font-size: 1.15rem;
    margin: 0 auto;
}

.badge {
    font-size: 0.9rem;
    border-radius: 50px;
    background-color: #007bff;
}

.btn-casino {
    background-color: #007bff !important;
    color: #fff !important;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-casino:hover {
    background-color: #007bff;
    transform: scale(1.05);
    color: #000;
}

.featured-image-group {
    max-width: 100%;
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 1rem;
}

.hero-feature-img {
    max-height: 420px;
    object-fit: contain;
    width: auto;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.side-feature-img {
    max-height: 230px;
    object-fit: contain;
    opacity: 0.3;
    filter: blur(2px);
    transform: scale(0.92);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.me-n3 {
    margin-right: -8rem;
}
.ms-n3 {
    margin-left: -8rem;
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-content-box {
        margin-bottom: 2rem;
    }

    .hero-feature-img {
        max-height: 300px;
    }

    .side-feature-img {
        display: inline-block;
        max-height: 120px;
        opacity: 0.25;
        filter: blur(1.5px);
        transform: scale(0.85);
    }

    .featured-image-group {
        gap: 0.5rem;
    }
}
/* end hero styles */

/* start rating styles*/
.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-6px);
}

.circular-progress {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-progress .bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3;
}

.circular-progress .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke-dasharray: 100, 100;
    transition: stroke-dasharray 1s ease-out;
}

.percentage {
    fill: #000;
    font-size: 0.8rem;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}
/* end rating styles */

/* start why choose styles */
.text-gradient {
    background: linear-gradient(to right, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-box {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}

.feature-box .text-primary {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff !important;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}
/* end why choose styles */

/* start register section*/
.section-badge {
    display: inline-block;
    background: #e3f2ff;
    color: #007bff;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #e7ecf1;
    height: 100%;
    transition: transform 0.3s ease;
}

.register-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.1);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 576px) {
    .register-card {
        padding: 0.8rem;
    }

    .icon-circle {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}
/* end register section */

/* start featured games styles */
.fortune-card-blogs {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    padding-top: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fortune-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    padding-top: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fortune-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.15);
}

.fortune-card-img {
    height: 130px;
    background-size: cover;
    background-position: center;
    margin-top: -32px;
    border-radius: 0 0 12px 12px;
    clip-path: ellipse(90% 100% at 50% 0%);
    transition: transform 0.3s ease;
}

.fortune-card-blog {
    background-size: cover;
    background-position: center;
    margin-top: -32px;
    border-radius: 0 0 12px 12px;
    clip-path: ellipse(90% 100% at 50% 0%);
    transition: transform 0.3s ease;
}

.fortune-card:hover .fortune-card-img {
    transform: scale(1.05);
}

.fortune-card-info {
    text-align: center;
    padding: 10px;
}

.fortune-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.fortune-card-sub {
    font-size: 0.75rem;
    color: #777;
    margin: 0;
}

/* Game Background Images */
.bg-game1 {
    background-image: url("/assets/image/sweet-alchemy-bingo.webp");
}
.bg-game2 {
    background-image: url("/assets/image/7-clovers.webp");
}
.bg-game3 {
    background-image: url("/assets/image/big-bass-vegas.webp");
}
.bg-game4 {
    background-image: url("/assets/image/big-piggy-bank.webp");
}
.bg-game5 {
    background-image: url("/assets/image/congo-cash.webp");
}
.bg-game6 {
    background-image: url("/assets/image/goldmine-fortune.webp");
}
.bg-game7 {
    background-image: url("/assets/image/hercules.webp");
}

.bg-game8 {
    background-image: url("/assets/image/alien-invaders.webp");
}

.bg-game9 {
    background-image: url("/assets/image/amun.webp");
}

.bg-game10 {
    background-image: url("/assets/image/bonanza.webp");
}

.bg-game11 {
    background-image: url("/assets/image/donuts.webp");
}

.bg-game12 {
    background-image: url("/assets/image/gates-of-olympus.webp");
}
/* end featured games styles */

/* start article style */
.article-section .article-card p {
    margin-bottom: 1rem;
}
.article-section .img-fluid {
    border-radius: 12px;
}
.article-section .btn-primary {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff !important;
    border: 0;
}
.article-section .article-card {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    border-radius: 12px;
}

.faq-section .bg-dark {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}
/* end article style */


.py-10 {
	padding-top: 10rem !important;
	padding-bottom: 3rem !important;
}
