main {
    padding-top: 80px; /* To prevent content from hiding behind fixed navbar */
}
body {
    background: linear-gradient(to right, #451a1a, #252424);
}

/* Navbar Styles */
.custom-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    transition: background 0.3s ease;
}

.custom-navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    padding: 15px 0;
    min-width: 80px;
    max-width: 100px;
}

.one-section {
    padding: 120px 0 80px; /* Increased top padding to account for navbar */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.one-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.one-section__subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list li {
    padding-left: 35px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
}

.features-headline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.features-grid {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-bottom: 0;
}

.feature-item p {
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .one-section {
        padding: 100px 0 60px;
    }

    .one-section__title {
        font-size: 2rem;
    }

    .one-section__subtitle {
        font-size: 1.5rem;
    }

    .col-lg-8 {
        width: 100%;
    }

    .col-lg-4 {
        display: none; /* Hides the hero image on mobile */
    }

    .features-grid {
        margin-top: 1rem;
    }

    .feature-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .one-section__title {
        font-size: 1.75rem;
    }

    .one-section__subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .one-section {
        min-height: 300px;
        padding: 40px 0;
    }

    .one-section__title {
        font-size: 2rem;
    }

    .one-section__subtitle {
        font-size: 1.2rem;
    }

    .navbar-brand images {
        height: 35px; /* Reduced from 50px */
    }

    /* Update feature row elements */
    .feature-col {
        margin-bottom: 10px;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
        gap: 10px; /* Reduced gap between icon and text */
    }

    .feature-text {
        font-size: 0.8rem; /* Reduced from 0.9rem */
    }

    .feature-icon {
        width: 25px; /* Reduced from 35px */
        height: 25px;
    }
}

/* Casino Listings Styles */
.casino-list .container {
    max-width: 1000px; /* Reduced from default 1320px */
}

.casino-row {
    background: white;
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #280d36;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Add hover effect for better interaction */
.casino-row:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Logo Column - slightly reduced width */
.casino-logo {
    width: 160px; /* Reduced from 180px */
}

.casino-logo images {
    width: 180px; /* Reduced from 150px */
    height: 105px; /* Reduced from 80px */
    object-fit: contain;
    border-radius: 10px;
}

.casino-logo a {
    display: block;
    text-decoration: none;
}

.casino-logo a:hover {
    opacity: 0.9;
}

/* Info Column */
.casino-info {
    flex: 2;
    padding: 0 20px;
    text-align: center;
}

.welcome-bonus {
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center;
}

.casino-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
}

.casino-features li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: flex-start;
}

.casino-features li images {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Rating Column */
.casino-rating {
    flex: 1;
    text-align: center;
}

.rating-score {
    font-size: 1.8rem;
}

.rating-score span {
    color: #280d36;
    font-weight: bold;
}

.rating-stars {
    color: rgb(234 179 8);
    font-size: 1.2rem;
}

.views {
    color: #808080;
    font-size: 0.9rem;
}

/* CTA Column */
.casino-cta {
    width: 150px;
    flex-shrink: 0;
    text-align: center;
}

.btn-play {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #f25555, #360d0d);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-play:hover {
    transform: translateY(-2px);
    color: #000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .casino-row {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .casino-logo,
    .casino-info,
    .casino-rating,
    .casino-cta {
        width: 100%;
        padding: 10px 0;
    }

    .casino-logo images {
        width: 100%;
        height: auto;
        max-height: 150px;
    }

    .casino-features li {
        justify-content: center;
    }

    .btn-play {
        width: 100%;
        max-width: none;
        padding: 15px;
    }

    .casino-cta {
        padding: 10px 15px;
    }
}

/* Casino Info Section Styles */
.casino-information-section {
    max-width: 1000px;
    margin: 30px auto;
    background: white;
    border-radius: 15px;
    padding: 30px;
    color: #333;
}

.information-title {
    color: #4169e1;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.information-content {
    line-height: 1.7;
}

.information-content p {
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.information-content h3 {
    color: #333;
    font-size: 1.1rem;
    margin: 30px 0 20px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .casino-information-section {
        margin: 20px 15px;
        padding: 20px;
    }

    .information-title {
        font-size: 1.5rem;
    }

    .information-content h3 {
        font-size: 1.3rem;
    }

    .information-content p {
        font-size: 0.95rem;
    }
}

/* Footer Styles */
.footer {
    background: #24172980;
    padding: 40px 0 20px;
    color: #fff;
}

.footer-branding {
    text-align: left;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
}

.footer-links_list {
    margin-bottom: 20px;
}

.footer-links_list a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
}

.footer-links_list a:hover {
    text-decoration: underline;
}

.social-links {
    margin-bottom: 30px;
}

.social-link {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-notes {
    font-size: 0.8rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-notes p {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.8rem;
    color: #ccc;
}

.footer-helping-logos {
    display: flex;
    gap: 15px;
}

.footer-help-logo {
    height: 47px;
}

.footer-disclosure {
    font-size: 0.75rem;
    color: white;
    line-height: 1.6;
    margin-top: 20px;
}

/* Footer Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-branding {
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-links_list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .footer-links_list a {
        margin-right: 0;
        font-size: 1rem;
        padding: 5px 0;
    }

    .footer-notes {
        text-align: center;
        font-size: 0.75rem;
        margin-bottom: 25px;
    }

    .footer-disclosure {
        text-align: center;
        font-size: 0.7rem;
        margin: 20px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
        padding-top: 20px;
    }

    .copyright {
        text-align: center;
        order: 2; /* Move copyright below helping-logos */
    }

    .footer-helping-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        order: 1; /* Move helping-logos above copyright */
    }

    .footer-help-logo {
        height: 35px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .footer-helping-logos {
        gap: 8px;
    }

    .footer-help-logo {
        height: 35px;
    }

    .footer-notes {
        font-size: 0.7rem;
    }

    .footer-disclosure {
        font-size: 0.65rem;
    }

    .navbar-brand images {
        height: 30px; /* Even smaller for very small devices */
    }

    .features-row {
        padding: 12px 8px;
    }

    .feature-col {
        padding: 6px;
    }

    .feature-text {
        font-size: 0.75rem;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 30px auto;
}

.contact-form .form-control {
    margin-bottom: 20px;
    border-radius: 5px;
}

.contact-form .btn-primary {
    background: linear-gradient(90deg, #cddc39, #280d36);
    border: none;
    color: #000;
    padding: 12px 30px;
    font-weight: 600;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Team Section Styles */
.team-section {
    margin: 30px 0;
}

.team-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #cddc39;
}

.team-category h3 {
    color: #cddc39;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.information-content ul,
.information-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.information-content ul li,
.information-content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.information-content strong {
    color: #cddc39;
}

.features-row {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.feature-col {
    padding: 10px 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.feature-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature-col {
        margin-bottom: 15px;
    }

    .feature-item {
        justify-content: center; /* Center items horizontally */
        text-align: center; /* Center text */
    }

    .feature-text {
        font-size: 0.9rem;
    }

    /* Optional: if you want the icons to be slightly larger on mobile */
    .feature-icon {
        width: 30px;
        height: 30px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .features-row {
        padding: 15px 10px;
    }

    .feature-col {
        padding: 8px;
    }
}

/* Trust helping-logos Section */
.trust {
    padding: 30px 0;
    background: #1a1a1a;
    margin: 20px 0; /* Reduced from 40px */
}

.helping-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust {
        padding: 20px 0;
        margin: 15px 0; /* Reduced from 30px */
    }

    .helping-logos-row {
        gap: 15px;
        padding: 0 10px;
    }

    .trust-badge {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .helping-logos-row {
        gap: 12px;
    }

    .trust-badge {
        height: 25px;
    }
}
.casino-logo img {
    max-width: 100%;
}
