* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        body {
            background-color: #0b0f15;
            color: #eef4ff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* EarnDollar brand colors – dark premium with dollar accents */
        :root {
            --bg-dark: #0c111a;
            --card-bg: #1a232f;
            --accent-gold: #f0b90b;   /* crypto dollar warmth */
            --accent-green: #2ecc71;
            --deep-teal: #1a3b4e;
            --soft-white: #f0f4fa;
        }

        /* ===== HEADER & MOBILE MENU ===== */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 20, 30, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0.8rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
            box-shadow: 0 10px 30px -10px #00000080;
        }

        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(130deg, #ffffff, #f1c40f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo i {
            color: var(--accent-gold);
            margin-right: 6px;
            font-size: 2rem;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: #f8c150;
        }

        /* desktop navigation */
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: #eef2f5;
            font-weight: 500;
            font-size: 1.1rem;
            transition: 0.2s;
            padding: 0.3rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--accent-gold);
            transition: 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a:hover, .nav-links a.active {
            color: white;
            text-shadow: 0 0 8px #f1c40f;
        }

        .menu-toggle {
            display: none;
            font-size: 2.2rem;
            background: transparent;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
            z-index: 1100;
        }

        /* mobile menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(75%, 340px);
            height: 100vh;
            background: #101b28;
            backdrop-filter: blur(15px);
            background: linear-gradient(145deg, #0f1a24, #1a2a38);
            box-shadow: -10px 0 30px #000000cc;
            z-index: 1050;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border-left: 3px solid #f0b90b;
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-menu ul {
            list-style: none;
            text-align: center;
            width: 100%;
        }
        .mobile-menu li {
            margin: 1rem 0;
        }
        .mobile-menu a {
            font-size: 1.5rem;
            color: #d4e0f0;
            text-decoration: none;
            font-weight: 500;
            padding: 0.2rem 1rem;
            border-radius: 10px;
            transition: 0.3s;
            display: inline-block;
        }
        .mobile-menu a:hover {
            background: #f0b90b;
            color: #0a121c;
            transform: scale(1.05);
            box-shadow: 0 0 25px #f5c542;
        }
        .close-btn {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 2.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 1020;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* main spacing */
        .main {
            margin-top: 80px;
        }

        section {
            scroll-margin-top: 80px;
            padding: 5rem 2rem;
            position: relative;
        }

        /* alternating section tints */
        /* section:nth-child(odd) {
            background: #0e1622;
        } */
        section:nth-child(even) {
            background: #121c29;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2.8rem;
            background: linear-gradient(135deg, #ffffff, #f1c40f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            letter-spacing: -0.02em;
        }

        /* image rich cards */
        .image-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .image-card {
            background: #1e2a37;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #3a4c5e;
            box-shadow: 0 25px 30px -15px black;
            transition: all 0.35s ease;
            backdrop-filter: blur(5px);
        }
        .image-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #f0b90b;
            box-shadow: 0 30px 45px -10px #f1c40f80;
        }

        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            border-bottom: 3px solid #f0b90b;
        }

        .card-content {
            padding: 1.8rem 1.5rem 2rem;
        }
        .card-content h3 {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            color: white;
        }
        .card-content p {
            color: #bcd0e0;
            margin-bottom: 1.2rem;
        }
        .price {
            font-size: 2rem;
            font-weight: 700;
            color: #2ecc71;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .price i {
            color: #f0b90b;
            font-size: 1.8rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            /* display: flex; */
            /* align-items: center; */
            position: relative;
            overflow: hidden;

            
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Dark overlay for readability */
        /* .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                120deg,
                rgba(11, 15, 21, 0.95) 10%,
                rgba(11, 15, 21, 0.75) 40%,
                rgba(11, 15, 21, 0.55) 100%
            );
            z-index: 1;
        } */

        /* Keep content above overlay */
        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2.8rem, 10vw, 6rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
        .hero-highlight {
            color: #f0b90b;
            /* text-shadow: 0 0 25px #ffd966; */
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 650px;
            margin: 1.5rem 0 2rem;
            color: #d0e2f2;
        }

        .btn {
            display: inline-block;
            background: #f0b90b;
            color: #0c1a28;
            padding: 1rem 2.8rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.2rem;
            text-decoration: none;
            border: none;
            box-shadow: 0 8px 20px #f0b90b80;
            transition: 0.3s;
            cursor: pointer;
        }
        .btn:hover {
            background: white;
            box-shadow: 0 0 30px #ffe484;
            transform: scale(1.07);
            color: #0b141f;
        }

        /* stat blocks with subtle images */
        .stats-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4rem;
            margin: 3rem 0;
        }
        .stat-block {
            text-align: center;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(8px);
            padding: 1.5rem 2.5rem;
            border-radius: 20px;
            border: 1px solid #f0b90b40;
            min-width: 170px;
        }
        .stat-number {
            font-size: 3.3rem;
            font-weight: 800;
            color: #f0b90b;
        }

        /* gallery/images section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.8rem;
        }
        .gallery-grid img {
            width: 100%;
            aspect-ratio: 1/0.9;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #3a4f62;
            transition: 0.35s;
            filter: brightness(0.9);
        }
        .gallery-grid img:hover {
            border-color: #f0b90b;
            transform: scale(1.02) rotate(1deg);
            filter: brightness(1.1);
            box-shadow: 0 20px 30px -8px #f0b90b;
        }

        /* testimonials with profile images */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }
        .testimonial {
            background: #1e2a37;
            border-radius: 10px;
            padding: 2rem 2rem 2rem;
            border: 1px solid #2f4b60;
            transition: 0.3s;
        }
        .testimonial:hover {
            border-color: #f0b90b;
        }
        .testimonial img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0b90b;
            margin-bottom: 1rem;
        }
        .testimonial i.fa-quote-left {
            color: #f0b90b;
            font-size: 1.8rem;
            opacity: 0.7;
        }

        /* platform images row */
        .platforms {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            align-items: center;
            margin: 3rem 0;
        }
        .platforms img {
            height: 50px;
            filter: brightness(0.8) grayscale(0.5);
            transition: 0.2s;
        }
        .platforms img:hover {
            filter: brightness(1.2) grayscale(0);
            transform: scale(1.1);
        }

        /* contact with image side */
        .contact-area {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            background: #16212e;
            border-radius: 10px;
            padding: 2.5rem;
            align-items: center;
        }
        .contact-img {
            flex: 1 1 250px;
            border-radius: 10px;
            overflow: hidden;
        }
        .contact-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .contact-form {
            flex: 2 1 350px;
            display: flex;
            flex-direction: column;
            gap: 1.3rem;
        }
        .contact-form input, .contact-form textarea {
            background: #0e1b26;
            border: 1px solid #3c5a70;
            padding: 1.2rem 1.8rem;
            border-radius: 10px;
            font-size: 1.1rem;
            color: white;
            outline: none;
        }
        .contact-form textarea {
            border-radius: 10px;
        }
        .contact-form button {
            background: #f0b90b;
            border: none;
            padding: 1.2rem;
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 20px;
            color: #0c151f;
            cursor: pointer;
            transition: 0.2s;
        }
        .contact-form button:hover {
            background: white;
            box-shadow: 0 0 30px #f7d359;
        }

        .footer {
            background: #0a131f;
            padding: 2.5rem;
            text-align: center;
            border-top: 3px solid #f0b90b;
        }

        /* responsive */
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .menu-toggle { display: block; }
            h2 { font-size: 2.5rem; }
        }
        @media (min-width: 901px) {
            .mobile-menu, .overlay, .close-btn { display: none; }
        }
        @media (max-width: 600px) {
            section { padding: 3rem 1rem; }
            .hero p { font-size: 1.2rem; }
        }

        /* animation on scroll (simple fade) */
        .image-card, .testimonial, .gallery-grid img, .stat-block {
            animation: fadeUp 0.7s ease backwards;
        }
        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        /* Fix contact form responsiveness */
.contact-area {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: #16212e;
    border-radius: 10px;
    padding: 2.5rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-img {
    flex: 1 1 250px;
    border-radius: 10px;
    overflow: hidden;
    min-width: 200px;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    width: 100%;
    min-width: 0; /* Important for flex children to shrink properly */
}

.contact-form input,
.contact-form textarea {
    background: #0e1b26;
    border: 1px solid #3c5a70;
    padding: 1.2rem 1.8rem;
    border-radius: 10px;
    font-size: 1.1rem;
    color: white;
    outline: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    background: #f0b90b;
    border: none;
    padding: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 20px;
    color: #0c151f;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}


/* Footer Styles */
.footer {
    background: #1a2634;
    padding: 50px 20px 20px;
    color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a3644;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Part 1: Logo & Summary Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    color: #f0b90b;
    font-size: 28px;
}

.logo-container h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-description {
    color: #a1bbd5;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Part 2: Vertical Navigation Links */
.footer-section h4 {
    color: #ffffff;
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #f0b90b;
}

.nav-links-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links-vertical li {
    margin: 0;
}

.nav-links-vertical a {
    color: #a1bbd5;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.nav-links-vertical a:hover {
    color: #f0b90b;
    padding-left: 8px;
}

.nav-links-vertical a.active {
    color: #f0b90b;
    font-weight: 500;
    padding-left: 8px;
}

.nav-links-vertical a.active::before {
    content: '•';
    position: absolute;
    left: -5px;
    color: #f0b90b;
    font-size: 20px;
    top: -3px;
}

/* Part 3: Vertical Social Links */
.social-links-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    color: #a1bbd5;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link i {
    font-size: 20px;
    width: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #f0b90b;
    transform: translateX(8px);
}

.social-link:hover i {
    color: #f0b90b;
}

/* Footer Bottom Styles */
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
    color: #a1bbd5;
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    color: #ffffff;
}

.footer-bottom .disclaimer {
    color: #a1bbd5;
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .logo-container {
        justify-content: flex-start;
    }
    
    .footer-section h4::after {
        left: 0;
        transform: none;
    }
    
    .nav-links-vertical a:hover {
        padding-left: 8px;
    }
    
    .social-link:hover {
        transform: translateX(8px);
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 15px 15px;
    }
    
    .logo-container h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .nav-links-vertical a,
    .social-link {
        font-size: 0.95rem;
    }
}

/* Additional mobile-specific fixes */
@media (max-width: 768px) {
    .contact-area {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .contact-form button {
        padding: 1rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-area {
        padding: 1rem;
    }
    
    .contact-img {
        flex: 1 1 100%; /* Image takes full width on very small screens */
        max-height: 200px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}