html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #ccc;
    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 Styles */
.navbar {
    background-color: #111;
}

.navbar .navbar-nav .nav-link {
    font-weight: 400;
    color: #fff !important;
}

/* Mobile Top Navbar */
.mobile-top-nav {
    background-color: #111;
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.search-wrapper form {
    transition: all 0.3s ease;
}

.search-input {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50px;
    border: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #fff;
}

.search-toggle {
    cursor: pointer;
    font-size: 1.25rem;
    color: #fff;
    margin-left: 0.5rem;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    padding: 0.4rem 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.mobile-bottom-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 60px;
    position: relative;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
}

.mobile-bottom-nav .nav-link {
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.mobile-bottom-nav .nav-link {
    height: 100%;
    width: 100%;
    color: #fff;
}

.mobile-bottom-nav .nav-link:hover {
    color: #ffffff;
}
/* End Header Styles */

/* Start Hero Styles */
@media (min-width: 768px) {
    .hero-section {
        margin-top: 50px;
    }
}

.hero-section {
    background: linear-gradient(to bottom, #0f1116, #1a1e25);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background-color: #ffc107;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    font-size: clamp(0.75rem, 0.9vw + 0.6rem, 1rem);
    border-radius: 50px;
    font-weight: 600;
}

.overlapping-images {
    display: inline-flex;
    position: relative;
    margin-left: 10px;
}

.overlapping-images img {
    max-width: 40px;
    max-height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #111;
    position: relative;
    z-index: 1;
    margin-left: -10px;
}

.overlapping-images img:first-child {
    margin-left: 0;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section .btn-primary {
    background: #ffc107;
    border: none;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-section .btn-primary:hover {
    background: #ffca2c;
    transform: scale(1.03);
}
/* End Hero Styles */

/* Start Review Styles */
.bonus-sidebar {
    border-radius: 15px;
    position: relative;
}

@media (min-width: 768px) {
    .bonus-sidebar {
        position: sticky;
        top: 100px;
    }
}

.bonus-card {
    background: linear-gradient(to bottom, #0f1116, #1a1e25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

.bonus-card:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.brand-logo {
    max-width: 60px;
    max-height: 60px;
    object-fit: cover;
}

.toggle-btn {
    border: none;
    background-color: transparent;
    font-size: 1.25rem;
    color: #333;
}

.brand-extra {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #ffc107;
    color: #111;
}

.brand-extra .btn {
    font-weight: bold;
}

.brand-extra .btn:hover {
    background-color: #111;
    color: #fff !important;
}

.brand-extra .btn-dark {
    background-color: #111 !important;
    color: #fff !important;
}

.brand-extra.active {
    margin-top: 80px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: fadeSlide 0.3s ease-in-out;
    z-index: 10;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}
/* End Review styles */

/* Start Payment Styles */
.payment-section {
    background-color: #1b1f27;
    color: white;
}

.payment-card {
    background-color: #1b1f27;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.payment-icon {
    max-width: 80px;
    max-height: 80px;
}
/* End Payment Stylese */

/* Start Safety Styles */
.safety-section {
    background-color: #1b1f27;
    color: white;
}

.safety-card {
    background-color: #1b1f27;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}
/* End Safety Styles */

/* Start why Styles  */
.why-choose-section {
    background-color: #1b1f27;
}

.why-item {
    padding: 1rem;
    border-left: 3px solid #ffc107;
}

@media (max-width: 576px) {
    .why-item {
        border-left: none;
        border-top: 2px solid #ffc107;
        padding-top: 1rem;
        margin-top: 1rem;
    }
}
/* End why Styles */

/* Start How Styles */
.casino-rating-section {
    background-color: #1b1f27;
    color: #fff;
}

.lux-card {
    background-color: #16191f;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lux-card ul li {
    color: #fff !important;
    margin-bottom: 8px;
}
/* End How Styles */

/* Start Rating Styles */
.info-box {
    background-color: #161a20;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}
/* End Rating Styles */

/* Start FAQ Styles */
.faq-section {
    background: linear-gradient(to bottom, #0e1015, #181b22);
}

.faq-section .bg-warning {
    background-color: #070707 !important;
}

.accordion-button {
    box-shadow: none;
    transition: background 0.2s ease;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #fff;
    color: #111 !important;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.25rem;
}

/* End FAQ Styles */
