html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f9f4f0;
    color: #111;
    font-family: "Barlow", sans-serif;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
}

a,
ul,
ol,
li {
    color: #111 !important;
    font-weight: 400;
    text-decoration: none;
}

/* start headet style */
.navbar .navbar-nav .nav-link {
    font-weight: 400;
    color: #fff !important;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff !important;
}

.btn-play-now {
    font-weight: 600;
    color: #fff !important;
    border: 0;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    transition: all 0.3s ease-in-out;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.btn-play-now:hover .arrow-circle {
    transform: translateX(4px);
}

/* Mobile Top Navbar */
.mobile-top-nav {
    background-color: #104026;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

/* Mobile Bottom Navbar */
.mobile-bottom-nav {
    background-color: #104026;
    height: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-bottom-nav a {
    flex: 1;
    font-size: 0.75rem;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (min-width: 678px) {
    .navbar .container-md {
        background-color: #104026;
    }
}
/* end headet style */

/* start hero styles */
.hero-maximalist {
    background: linear-gradient(145deg, #0b1f13, #104026);
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: "Barlow", sans-serif;
}

.hero-maximalist .highlight {
    background: linear-gradient(to right, #ffe600, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-maximalist .letter-spacing {
    letter-spacing: 0.1em;
}

.btn-gradient {
    background: linear-gradient(to right, #ffc107, #ff5722);
    color: #111;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #ff5722, #ffc107);
    transform: translateY(-2px);
    color: #000;
}

.sponsor-strip {
    overflow: hidden;
}

.sponsor-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sponsor-scroll-track {
    display: flex;
    gap: 16px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.sponsor-card {
    padding: 12px 16px;
    min-width: 140px;
    max-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sponsor-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    margin-top: 2rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsor-scroll-wrapper:hover .sponsor-scroll-track {
    animation-play-state: paused;
}

.mt-fixed-mobile {
    padding: 70px;
}

@media (min-width: 768px) {
    .mt-fixed-mobile {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .sponsor-card {
        min-width: 100px;
        height: 55px;
    }
}
/* end hero styles */

/* start how to play styles */
.step-card {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #104026;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-icon i {
    font-size: 1.8rem;
    margin-top: 0.5rem;
    color: #104026;
}
/* end how to play styles */

/* start 82Lottery prizes styles */
.lottery-card {
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lottery-card .amount {
    font-size: 1.5rem;
    font-weight: bold;
}

.lottery-card .label {
    font-size: 1rem;
}

.lottery-card.jackpot-prize {
    background-color: #14532d;
    color: #fff;
}

.lottery-card.current-prize {
    background-color: #fff;
    color: #000;
}
/* end 82Lottery prizes styles */

/* start featured games style */
.visual-column {
    background-color: #14532d;
}

.game-entry {
    padding-left: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-entry .game-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}
/* end featured games style */

/* start banner style */
.carousel-item img {
    object-fit: cover;
}
/* end banner style */

/* start article style */
.article-section .btn-primary {
    background-color: #104026 !important;
    color: #fff !important;
    border: 0;
}

.hover-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.hover-image {
    transition: filter 0.4s ease, transform 0.4s ease;
    display: block;
    width: 100%;
}

.hover-card:hover .hover-image {
    filter: blur(4px) brightness(0.75);
    transform: scale(1.05);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    transition: all 0.4s ease;
}

.hover-title,
.hover-subtitle {
    opacity: 0;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.hover-title {
    transform: translateY(-30%);
    font-size: 2rem;
}

.hover-subtitle {
    transform: translateY(30%);
    font-size: 0.95rem;
}

.hover-card:hover .hover-title,
.hover-card:hover .hover-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.py-10 {
	padding-top: 10rem !important;
	padding-bottom: 3rem !important;
}

/* end article styles */
