       body {
    background-color: var(--accent-navy);
    color: var(--text-primary);
    padding: 0;
    margin: 0;
}
        /* ============================================
               HERO SECTION
               ============================================ */
        .hero-section {
            position: relative;
            padding: 5rem 0 4rem;
            background: var(--accent-gradient);
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            border: 1px solid rgba(251, 191, 36, 0.2);
            margin-bottom: 1.5rem;
        }
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 1.2rem;
        }
        .hero-title .highlight {
            background: var(--secondary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 520px;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        .hero-search {
            display: flex;
            max-width: 560px;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 60px;
            padding: 0.3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        .hero-search form {
            display: flex;
            width: 100%;
            align-items: center;
        }
        .hero-search input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.9rem 1.8rem;
            color: var(--white);
            font-size: 1rem;
            min-width: 0; /* prevent overflow */
        }
        .hero-search input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .hero-search input:focus {
            outline: none;
        }
        .hero-search button {
            background: var(--secondary-gradient);
            border: none;
            padding: 0.9rem 2.2rem;
            border-radius: 60px;
            font-weight: 700;
            color: var(--accent-navy-dark);
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .hero-search button:hover {
            transform: scale(1.03);
            box-shadow: var(--secondary-glow);
        }
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2.5rem;
        }
        .hero-stats .stat-item {
            color: rgba(255, 255, 255, 0.8);
        }
        .hero-stats .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            display: block;
        }
        .hero-stats .stat-label {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* Hero image mockup */
        .hero-image-wrapper {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-image-wrapper .floating-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 2rem;
            max-width: 380px;
            width: 100%;
            box-shadow: var(--shadow-heavy);
        }
        .floating-card .coupon-preview {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .floating-card .coupon-preview:last-child {
            border-bottom: none;
        }
        .floating-card .coupon-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        .floating-card .coupon-info {
            flex: 1;
        }
        .floating-card .coupon-info .store-name {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }
        .floating-card .coupon-info .deal-text {
            color: var(--white);
            font-weight: 600;
        }
        .floating-card .coupon-info .discount {
            color: var(--secondary);
            font-weight: 700;
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-stats {
                gap: 1.5rem;
                flex-wrap: wrap;
            }
            .hero-image-wrapper {
                margin-top: 2rem;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-search {
                flex-direction: column;
                background: transparent;
                border: none;
                padding: 0;
                gap: 0.8rem;
            }
            .hero-search form {
                flex-direction: column;
                gap: 0.8rem;
            }
            .hero-search input {
                background: rgba(255, 255, 255, 0.07);
                border-radius: 60px;
                padding: 0.9rem 1.5rem;
                border: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }
            .hero-search button {
                width: 100%;
                justify-content: center;
            }
        }

        /* ============================================
               SECTION TITLES (shared)
               ============================================ */
        .section-heading {
            margin-bottom: 2.5rem;
        }
        .section-heading .subtitle {
            color: var(--secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
        }
        .section-heading h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
        }
        .section-heading p {
            color: rgba(255, 255, 255, 0.7);
            max-width: 500px;
        }

        /* ============================================
               STORE CARDS (GRID)
               ============================================ */
        .stores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.5rem;
        }
        .store-card-dark {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 1.5rem 0.8rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }
        .store-card-dark:hover {
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: var(--primary-glow);
            background: var(--accent-navy-light);
        }
        .store-card-dark .store-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--accent-navy);
            margin: 0 auto 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid var(--medium-gray);
            transition: border-color 0.3s ease;
        }
        .store-card-dark:hover .store-logo {
            border-color: var(--primary);
        }
        .store-card-dark .store-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .store-card-dark .store-name {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }
        .store-card-dark .store-coupons {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        /* ============================================
               COUPON / DEAL CARDS
               ============================================ */
        .deal-card {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid var(--medium-gray);
            height: 100%;
        }
        .deal-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--primary-glow);
        }
        .deal-card .deal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }
        .deal-card .deal-store {
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
        }
        .deal-card .deal-store:hover {
            color: var(--primary);
        }
        .deal-card .deal-discount {
            background: var(--secondary-gradient);
            color: var(--accent-navy-dark);
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        .deal-card .deal-title {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }
        .deal-card .deal-code {
            background: var(--accent-navy);
            color: var(--secondary);
            font-family: monospace;
            font-size: 1.1rem;
            letter-spacing: 2px;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            display: inline-block;
            margin: 0.5rem 0;
            border: 1px dashed var(--secondary);
        }
        .deal-card .deal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 0.8rem;
            color: var(--text-light);
            font-size: 0.85rem;
        }
        .deal-card .deal-footer .btn-copy {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .deal-card .deal-footer .btn-copy:hover {
            transform: scale(1.05);
            box-shadow: var(--primary-glow);
        }

        /* ============================================
               BLOG CARDS (dark)
               ============================================ */
        .blog-card-dark {
            background: var(--light-gray);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--medium-gray);
            height: 100%;
        }
        .blog-card-dark:hover {
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: var(--primary-glow);
        }
        .blog-card-dark .blog-img {
            height: 200px;
            overflow: hidden;
        }
        .blog-card-dark .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .blog-card-dark:hover .blog-img img {
            transform: scale(1.05);
        }
        .blog-card-dark .blog-body {
            padding: 1.5rem;
        }
        .blog-card-dark .blog-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        .blog-card-dark .blog-title {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }
        .blog-card-dark .blog-title:hover {
            color: var(--primary);
        }
        .blog-card-dark .blog-excerpt {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .blog-card-dark .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--medium-gray);
            margin-top: 1rem;
        }
        .blog-card-dark .blog-footer .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .blog-card-dark .blog-footer .read-more:hover {
            gap: 12px;
        }

        /* ============================================
               NEWSLETTER CTA (dark version)
               ============================================ */
        .newsletter-dark {
            background: var(--primary-gradient);
            border-radius: 24px;
            padding: 4rem 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        .newsletter-dark::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        .newsletter-dark .news-content {
            position: relative;
            z-index: 2;
        }
        .newsletter-dark h2 {
            color: white;
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }
        .newsletter-dark p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin-bottom: 1.5rem;
        }
        .newsletter-dark .input-group-dark {
            display: flex;
            max-width: 480px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 60px;
            padding: 0.3rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .newsletter-dark .input-group-dark input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.9rem 1.5rem;
            color: white;
        }
        .newsletter-dark .input-group-dark input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .newsletter-dark .input-group-dark input:focus {
            outline: none;
        }
        .newsletter-dark .input-group-dark button {
            background: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 60px;
            font-weight: 700;
            color: var(--primary);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .newsletter-dark .input-group-dark button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }
        @media (max-width: 576px) {
            .newsletter-dark {
                padding: 2.5rem 1.5rem;
            }
            .newsletter-dark .input-group-dark {
                flex-direction: column;
                background: transparent;
                border: none;
                padding: 0;
                gap: 0.8rem;
            }
            .newsletter-dark .input-group-dark input {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 60px;
                border: 1px solid rgba(255, 255, 255, 0.15);
            }
            .newsletter-dark .input-group-dark button {
                width: 100%;
                justify-content: center;
            }
        }

        /* ============================================
               TRENDING TAGS (dark)
               ============================================ */
        .trending-tags-dark {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1rem;
        }
        .trending-tags-dark .tag {
            background: var(--light-gray);
            color: var(--text-secondary);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            text-decoration: none;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
        }
        .trending-tags-dark .tag:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--primary-glow);
        }

        /* ============================================
               RESPONSIVE TWEAKS
               ============================================ */
        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .stores-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 1rem;
            }
        }