html {
    scroll-behavior: smooth;
}

body {
    background-color: #993afe;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    margin: 0;
    padding: 0;
}

/* Header Style */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: rgba(255, 255, 255, 0.2) !important;
    font-family: "Inter", sans-serif;
    max-height: 100vh;
    overflow-y: auto;
    border: none !important;
}

.nav-item .nav-link {
    color: #fff !important;
    font-family: "inter", sans-serif;
    font-weight: 400;
}

.btn-play-now {
    padding: 0.4rem 1.3rem;
    font-weight: 600;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    color: #fff;
    border-radius: 50px;
    border: none;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: start;
    justify-content: flex-start;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-play-now:hover .arrow-circle {
    transform: translateX(4px);
}

@media (min-width: 992px) {
    .navbar .container {
        background-color: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* for Safari */
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .nav-item .nav-link {
        color: #fff !important;
    }

    .btn-play-now {
        color: #fff;
    }

    .btn-play-now:hover {
        border-color: #ccc;
        color: #fff !important;
    }
}

@media (max-width: 991.98px) {
    .offcanvas {
        backdrop-filter: blur(30px);
    }
    .navbar {
        background-color: #993afe;
    }
}

/* Hero Section */
#vbet-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-overlay::before,
.hero-overlay::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    transition: all 1s ease-in-out;
    z-index: 1;
    opacity: 0;
}

.hero-overlay::before {
    left: 0;
}

.hero-overlay::after {
    right: 0;
}

/* Games Style */
.games-section {
    background-color: #000;
    color: #fff !important;
    z-index: 1020;
}

.d-flex::-webkit-scrollbar {
    display: none;
}

.games-section .category-sticky-bar {
    background-color: #000;
    z-index: 1020;
    top: 56px;
}

.games-section aside {
    background-color: #993afe;
}

.game-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.game-card:hover {
    transform: translateY(-5px);
}

.play-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.game-card:hover .play-btn {
    opacity: 1;
}

.game-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #333;
}

.game-card .card-body {
    padding-bottom: 2.5rem !important;
}

.category-btn {
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn.active {
    background-color: #ffc107 !important;
    color: #000 !important;
    border-right: 4px solid #fff;
}

.category-btn:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    cursor: pointer;
}

/* how to play style */
.how-to-play-section .step-card {
    background-color: #000;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-play-section .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.step-card h4 {
    margin-bottom: 0.5rem;
}

.step-card p {
    margin-bottom: 0;
}

.how-to-play-section .banner-cta {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* blogs style */
.blog-section {
    background-color: #fff;
}

.blog-section-violet {
    background-color: #8a2cee;
}

.filter-buttons .btn {
    border: 1px solid black;
    border-radius: 20px;
    font-weight: 500;
    padding: 6px 14px;
}

.filter-buttons .active,
.dropdown-item:hover {
    background-color: #993afe !important;
    color: #f8f9fa;
    border: none;
}

.filter-buttons .btn:hover {
    background-color: #993afe;
    color: #fff;
    border: none;
}

.search-box input {
    max-width: 280px;
    border-radius: 20px;
}

.vbet-card {
    background-color: #000;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vbet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.featured-card {
    min-height: 100%;
}

.vbet-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.vbet-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vbet-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.vbet-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
}

.vbet-description {
    font-size: 0.95rem;
    color: #bbb;
    flex-grow: 1;
}

.vbet-link {
    color: #ffce00;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
}

/* media style */
.partners-banner-section {
    background: linear-gradient(to right, #111827, #1e293b);
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: white;
    font-size: 0.875rem;
}

.banner-text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.logo-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.85;
}

.logo-group img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* article style */
.article-section {
    background: linear-gradient(to right, #111827, #1e293b);
}

.text-pink {
    color: #993afe;
}

.article-section .btn-primary {
    background-color: #993afe !important;
    color: #fff !important;
    border: 0;
}

.image-slot-wrapper {
    max-width: 940px;
    margin: 0 auto;
}

.game-card {
    background-color: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.custom-list li {
    margin-bottom: 0.5rem;
}

/* faq */
.accordion-button::after {
    filter: invert(0.5);
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #f8f9fa;
}

.accordion-item {
    background-color: #fff;
}

/* Footer Styles */
.footer-section a:hover {
    text-decoration: underline;
    color: #f8f9fa !important;
}

.py-10 {
	padding-top: 10rem !important;
	padding-bottom: 3rem !important;

}
