html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #111;
    overflow-x: hidden;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    overflow-x: hidden;
}

a,
ul,
ol,
li {
    color: #111 !important;
    font-weight: 400;
    text-decoration: none;
}

/* Header Section */
/* Modern Minimal Navbar */
.modern-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: "Inter", sans-serif;
}

/* Brand */
.brand-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

/* Top Bar */
.bg-primary-light {
    background-color: #f9fafb;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #2f6fed;
    transition: width 0.3s ease;
}
.nav-link:hover {
    color: #2f6fed !important;
}
.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #2f6fed, #0044cc) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.cta-btn:hover {
    background: linear-gradient(135deg, #0044cc, #2f6fed) !important;
}

/* Mobile Top Navbar */
.mobile-top-nav {
    background-color: #ffffff;
    color: #111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-accent {
    width: 6px;
    height: 22px;
    background: linear-gradient(135deg, #2f6fed, #0044cc);
    border-radius: 2px;
}

.menu-btn {
    color: #2f6fed;
    background: transparent;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.menu-btn:hover {
    background: rgba(47, 111, 237, 0.08);
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 0.4rem 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-bottom-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 60px;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
}

.mobile-bottom-nav .nav-link {
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    transition: color 0.3s ease;
}

.mobile-bottom-nav .nav-link.active,
.mobile-bottom-nav .nav-link:hover {
    color: #2f6fed;
}

.mobile-bottom-nav .nav-link i {
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-link.active i {
    transform: scale(1.2);
}
/* End Header */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0077d4, #005bb5);
    display: flex;
    align-items: center;
}

.hero-section .avatars img {
    margin-left: -10px;
    border: 2px solid #fff;
}

.hero-section .avatars img:first-child {
    margin-left: 0;
}

.text-accent {
    color: #ffcc33;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.6);
}
/* End Hero */

/* Review Section */
.casino-review {
    background-color: #f9fafb;
    color: #111;
}

.review-card .btn-outline-primary:hover {
    color: #fff !important;
}
/* End Review */

/* Bonus Section */
.why-choose-us {
    background-color: #f8f9fa;
}

.bonus-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.bonus-box .bg-light {
    font-size: 1.5rem;
    background-color: #fff !important;
    color: #111 !important;
}

.bonus-box .bg-primary {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #2f6fed, #0044cc) !important;
    color: #fff !important;
}

.bonus-box h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-box p {
    color: #555;
    font-size: 0.95rem;
}

.bonus-box.active {
    background: linear-gradient(135deg, #2f6fed, #0044cc) !important;
    color: white;
}

.bonus-box.active h5,
.bonus-box.active p {
    color: white;
}
/* End Bonus */

/* Payment Section */
.payment-methods-section {
    background: linear-gradient(135deg, #0077d4, #005bb5);
    border-radius: 30px;
    color: white;
}

.payment-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
}

.payment-card h6 {
    color: #0077d4;
    font-weight: 600;
    margin-bottom: 5px;
}

.payment-card p {
    color: #444;
    font-size: 0.85rem;
    margin: 0;
}

.payment-card .icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* End Payment */

/* Safety Section */
.safety-section {
    background-color: #f8f9fc;
}

.safety-card {
    background-color: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.safety-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.badge {
    font-size: 0.85rem;
    background-color: #e8f6ee;
    color: #2e7d32;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
}

.check-icon {
    color: #198754;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .safety-card {
        padding: 1.5rem;
    }
}
/* End Safety */

/* Why Section */
.why-section {
    background-color: #f8f9fc;
}

.choose-item {
    background-color: #ffffff;
    border-left: 6px solid #0077d4;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.choose-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    border-left-color: #005bb5;
}

.choose-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #0077d4;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.why-section h2 {
    font-size: 2rem;
}

.why-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}
/* End Why */

/* Rating Section */
.rating-section {
    background-color: #f7faff;
}

.rating-card {
    background-color: #fff;
    border-left: 5px solid #0077d4;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.rating-card:hover {
    border-left-color: #005bb5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.rating-icon {
    font-size: 2rem;
    color: #0077d4;
}

.rating-score {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0077d4;
}
/* End Rating */

/* Score Section */
.overall-score-section {
    background-color: #f9fbfd;
}

.overall-score-box {
    background-color: #ffffff;
    border-left: 6px solid #0077d4;
}

.score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #0077d4;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 100px;
    position: relative;
}

.score-circle small {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #6c757d;
    font-size: 0.75rem;
}

.editor-card {
    border: 1px solid #dee2e6;
}
/* End Score */

/* Faq Section */
.faq-section {
    background-color: #f8f9fc;
}

.accordion-button {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: #e8f0fe;
    color: #0d6efd;
}

.accordion-body {
    font-size: 0.95rem;
    color: #555;
}
/* End Faq */

/* Footer Section */
.hover-opacity:hover {
    opacity: 0.7;
}

.form-control.form-control-sm.bg-dark.text-light::placeholder {
    color: white;
    opacity: 1;
}
/* End Footer */
