/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: #5cf24c;
}

/* Navigation Bar */
.navbar-dark-gold {
    background-color: #2c2c2c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px 0px 20px;
}

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #5cf24c;
}

.nav-actions .btn-login {
    background-color: #5cf24c;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-actions .btn-login:hover {
    background-color: #24d417;
}

/* Hero Section */
.hero-dark-gold {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.particle-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: glow 8s ease-in-out infinite;
}

.particle-gold-1 {
    width: 180px;
    height: 180px;
    background: #D4A017;
    top: 15%;
    left: 22%;
}

.particle-gold-2 {
    width: 120px;
    height: 120px;
    background: #F2C94C;
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-container {
    flex: 1;
}

.hero-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary-dark-gold, .btn-secondary-dark-gold {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 2000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary-dark-gold {
    background-color: #5cf24c;
    color: #1a1a1a;
}

.btn-primary-dark-gold:hover {
    background-color: #24d417;
}

.btn-secondary-dark-gold {
    background-color: transparent;
    border: 2px solid #5cf24c;
    color: #5cf24c;
}

.btn-secondary-dark-gold:hover {
    background-color: #5cf24c;
    color: #1a1a1a;
}

.cta-divider {
    font-size: 16px;
    color: #ffffff;
}

.social-connect {
    margin-top: 20px;
}

.connect-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #5cf24c;
}

.hero-image img {
    max-width: 500px;
    height: auto;
}

/* Telegram Banner */
.banner-container {
    text-align: center;
    margin: 20px 0;
}

.banner-desktop {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* App Download Section */
.app-download-dark-gold {
    background-color: #2c2c2c;
    padding: 60px 20px;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-image img {
    max-width: 500px;
    height: auto;
}

.app-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.app-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.app-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qr-image img {
    width: 150px;
    height: 150px;
}

.qr-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.btn-guide {
    background-color: #5cf24c;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-guide:hover {
    background-color: #24d417;
}

/* Providers Slider */
.slider-container-dark-gold {
    background-color: #1a1a1a;
    padding: 20px 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: slide 10s linear infinite;
}

.provider-logo img {
    height: 60px;
    margin: 0 20px;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Why Choose Mambawin */
.why-mambawin-dark-gold {
    padding: 60px 20px;
    background-color: #2c2c2c;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    background-color: #ffffff10;
    border: 2px solid #5cf24c;
    border-radius: 30px;
    padding: 20px;
}

.feature-item img {
    width: 80px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
}

/* Service Metrics */
.service-metrics-dark-gold {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.service-header h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.service-metrics {
    display: flex;
    justify-content: center;
    gap: 150px;
}

.metric {
    text-align: center;
}

.metric h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.progress-bar {
    height: 10px;
    background-color: #5cf24c;
    border-radius: 5px;
    margin-bottom: 10px;
}

.metric p {
    font-size: 14px;
}

/* Promotional Banners */
.promo-banners-dark-gold {
    padding: 60px 20px;
    background-color: #2c2c2c;
}

.promo-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.promo-banner img {
    max-width: 100%;
    height: auto;
}

.promo-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.promo-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.promo-banner.reverse {
    flex-direction: row-reverse;
}

/* Popular Games */
.games-dark-gold {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.game-card {
    text-align: center;
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.game-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.game-images img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* FAQ Section */
.faq-dark-gold {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-toggle {
    background-color: #1a1a1a;
    color: #5cf24c;
    width: 100%;
    padding: 15px;
    border: solid #5cf24c 1px;
    border-radius: 5px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-toggle:hover {
    background-color: #24d417;
    color: #1a1a1a;
}

.faq-content {
    display: none;
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 5px;
    margin-top: 5px;
}

.faq-content p {
    font-size: 14px;
}

/* Footer */
.footer-dark-gold {
    background-color: #1a1a1a;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #5cf24c;
}

.footer-nav h4, .footer-support h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-nav ul, .footer-support ul {
    list-style: none;
}

.footer-nav li, .footer-support li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-support a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover, .footer-support a:hover {
    color: #5cf24c;
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .game-images {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
    }
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-actions .btn-login {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-image img {
        max-width: 100%;
    }

    .qr-section {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .promo-banner, .promo-banner.reverse {
        flex-direction: column;
    }

    .promo-banner img {
        max-width: 100%;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .btn-primary-dark-gold, .btn-secondary-dark-gold {
        padding: 10px 20px;
        font-size: 14px;
    }

    .app-text h2 {
        font-size: 28px;
    }

    .app-text h3 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .promo-text h2 {
        font-size: 24px;
    }

    .game-card h3 {
        font-size: 20px;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-actions .btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }
}