       /* Base Variables */
       :root {
        --primary: #10b981;
        --primary-light: #34d399;
        --primary-dark: #059669;
        --primary-gradient: linear-gradient(135deg, #10b981, #059669);
        --accent-glow: #4ade80;
        --primary-light: #34d399;

        --primary-color: #10b981;
        --primary-dark: #059669;
        --primary-light: #34d399;
        --secondary-color: #064e3b;

        --secondary: #064e3b;
        --secondary-light: #0d9488;
        --secondary-gradient: linear-gradient(135deg, #064e3b, #0d9488);

        --tertiary: #3ecf8e;
        --tertiary-light: #4ade80;
        --tertiary-gradient: linear-gradient(135deg, #3ecf8e, #4ade80);

        --success: #10b981;
        --warning: #f59e0b;
        --error: #ef4444;
        --info: #3b82f6;

        --bg-primary: #f9fafb;
        --bg-secondary: #ffffff;
        --bg-tertiary: rgba(255, 255, 255, 0.7);

        --text-primary: #111827;
        --text-secondary: #4b5563;
        --text-tertiary: #9ca3af;

        --border-light: rgba(209, 213, 219, 0.5);

        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.02), 0 10px 10px -5px rgba(0, 0, 0, 0.01);

        --glass: rgba(255, 255, 255, 0.7);
        --glass-dark: rgba(255, 255, 255, 0.15);
        --glass-border: rgba(255, 255, 255, 0.5);
        --glass-highlight: rgba(255, 255, 255, 0.9);
        --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);

        --blur-amount: 12px;
        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 16px;
        --radius-xl: 24px;
        --radius-full: 9999px;
    }

    /* Reset & Base Styles */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        font-size: 16px;
        scroll-behavior: smooth;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, 'Helvetica Neue', sans-serif;
        background-color: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        padding-bottom: 80px;
    }

    .btn-primary{
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
    }

    /* Background Elements */
    .bg-shapes {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
        overflow: hidden;
    }

    .shape {
        position: absolute;
        border-radius: var(--radius-full);
        filter: blur(80px);
        opacity: 0.5;
        animation: float 18s ease-in-out infinite;
    }

    .shape-1 {
        width: 400px;
        height: 400px;
        background-color: rgba(16, 185, 129, 0.15);
        top: -100px;
        right: -100px;
        animation-delay: -2s;
    }

    .shape-2 {
        width: 300px;
        height: 300px;
        background-color: rgba(14, 165, 233, 0.1);
        bottom: -100px;
        left: -100px;
        animation-delay: -5s;
    }

    .shape-3 {
        width: 250px;
        height: 250px;
        background-color: rgba(62, 207, 142, 0.12);
        top: 40%;
        left: 30%;
        animation-delay: -8s;
    }

    @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(30px, 30px) rotate(5deg); }
        66% { transform: translate(-20px, 20px) rotate(-5deg); }
        100% { transform: translate(0, 0) rotate(0deg); }
    }

    /* Layout Components */
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.25rem;
    }

    .section {
        margin: 1.5rem 0;
    }

    /* Typography */
    .section-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .section-title::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 1rem;
        background: var(--primary-gradient);
        margin-right: 0.5rem;
        border-radius: 4px;
    }

    .view-all {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--primary);
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
    }

    .view-all:hover {
        color: var(--primary-dark);
    }

    .view-all i {
        font-size: 0.75rem;
        margin-left: 0.25rem;
        transition: transform 0.2s ease;
    }

    .view-all:hover i {
        transform: translateX(3px);
    }

    /* Header with Green Gradient Background */
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: linear-gradient(to bottom, var(--secondary-color), var(--primary-dark));
        padding: 1rem 0;
        color: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }

    .header-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
    }

    .header-shape-1 {
        width: 300px;
        height: 300px;
        background-color: var(--accent-glow);
        opacity: 0.15;
        top: -150px;
        right: -50px;
    }

    .header-shape-2 {
        width: 200px;
        height: 200px;
        background-color: var(--primary-light);
        opacity: 0.1;
        bottom: -100px;
        left: 10%;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .logo {
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 1.25rem;
        color: white;
        text-decoration: none;
    }

    .logo-icon {
        width: 100px;
        height: 2.2rem;
        border-radius: var(--radius-md);
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0.75rem;
        color: white;
        font-size: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .auth-container {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .btn {
        font-size: 0.875rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-full);
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: none;
        outline: none;
    }

    .btn-text {
        color: white;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn-text:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .btn-primary {
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* Search */
    .search-container {
        position: relative;
        margin-top: 1rem;
    }

    .search-input {
        width: 100%;
        padding: 0.875rem 1rem 0.875rem 3rem;
        font-size: 0.95rem;
        border: none;
        outline: none;
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        color: white;
        border-radius: var(--radius-full);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .search-input:focus {
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .search-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.8);
        pointer-events: none;
    }

    /* User Dropdown */
    .user-dropdown {
        position: relative;
    }

    .user-avatar {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background-color: #34d399;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        cursor: pointer;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .user-avatar:hover {
        border-color: rgba(255, 255, 255, 0.8);
        transform: translateY(-2px);
    }

    .user-info {
        display: none;
        margin-left: 0.5rem;
    }

    .user-name {
        font-size: 0.875rem;
        font-weight: 600;
        color: white;
    }

    .user-email {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        width: 12rem;
        background-color: white;
        border-radius: var(--radius-md);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        z-index: 50;
        transform-origin: top right;
        transition: all 0.2s ease;
    }

    .dropdown-link {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .dropdown-link:hover {
        background-color: var(--primary-light);
        color: white;
    }

    .dropdown-divider {
        height: 1px;
        background-color: var(--border-light);
        margin: 0.25rem 0;
    }

    @media (min-width: 768px) {
        .user-info {
            display: block;
        }

        .user-dropdown {
            display: flex;
            align-items: center;
        }
    }

    /* Cards & Components */
    .glass-card {
        background-color: var(--glass);
        backdrop-filter: blur(var(--blur-amount));
        border-radius: var(--radius-lg);
        border: 1px solid var(--glass-border);
        overflow: hidden;
        box-shadow: var(--glass-shadow);
        transition: all 0.3s ease;
    }

    .glass-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        border-color: var(--glass-highlight);
    }

    /* Hero Carousel */
    .carousel {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        height: 180px;
        margin-top: 1.5rem;
    }

    .carousel-inner {
        height: 100%;
        width: 100%;
        position: relative;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .carousel-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        color: white;
        border-bottom-left-radius: var(--radius-lg);
        border-bottom-right-radius: var(--radius-lg);
    }

    .carousel-badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        border-radius: var(--radius-full);
        margin-bottom: 0.5rem;
    }

    .carousel-title {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .carousel-subtitle {
        font-size: 0.875rem;
        opacity: 0.8;
    }

    .carousel-indicators {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-indicator.active {
        width: 20px;
        border-radius: 4px;
        background-color: var(--primary);
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        font-size: 0.875rem;
    }

    .carousel-arrow:hover {
        background-color: white;
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .carousel-arrow.prev {
        left: 16px;
    }

    .carousel-arrow.next {
        right: 16px;
    }

    /* Categories */
    .category-scroll {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
    }

    .category-scroll::-webkit-scrollbar {
        display: none;
    }

    .category-container {
        display: flex;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .category-pill {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-full);
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-secondary);
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-sm);
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .category-pill.active {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    .category-pill:hover:not(.active) {
        background-color: var(--bg-tertiary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }

    .category-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
        font-size: 1.25rem;
    }

    .category-icon-blue {
        background: linear-gradient(135deg, #38bdf8, #0ea5e9);
        color: white;
        box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
    }

    .category-icon-green {
        background: linear-gradient(135deg, #34d399, #10b981);
        color: white;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    .category-icon-yellow {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: white;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    }

    .category-icon-purple {
        background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
        color: white;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    }

    .category-icon-red {
        background: linear-gradient(135deg, #f87171, #ef4444);
        color: white;
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }

    .category-icon-indigo {
        background: linear-gradient(135deg, #93c5fd, #3b82f6);
        color: white;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }

    .category-icon-orange {
        background: linear-gradient(135deg, #fb923c, #f97316);
        color: white;
        box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    }

    .category-icon-teal {
        background: linear-gradient(135deg, #5eead4, #14b8a6);
        color: white;
        box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
    }

    .category-item:hover .category-icon {
        transform: translateY(-4px) scale(1.05);
    }

    .category-name {
        font-size: 0.75rem;
        color: var(--text-secondary);
        text-align: center;
    }

    /* Products */
    .products-scroll {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
    }

    .products-scroll::-webkit-scrollbar {
        display: none;
    }

    .products-container {
        display: flex;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .product-card {
        width: 150px;
        flex-shrink: 0;
        border-radius: var(--radius-lg);
        overflow: hidden;
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .product-image-container {
        position: relative;
        height: 150px;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-badge {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 500;
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    }

    .product-content {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-shop {
        font-size: 0.75rem;
        color: var(--text-tertiary);
        margin-bottom: 0.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-price {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .price-current {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--primary);
    }

    .price-old {
        font-size: 0.75rem;
        text-decoration: line-through;
        color: var(--text-tertiary);
    }

    /* News Cards */
    .news-card {
        display: flex;
        border-radius: var(--radius-lg);
        overflow: hidden;
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-md);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .news-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .news-image {
        width: 90px;
        height: 90px;
        object-fit: cover;
    }

    .news-content {
        padding: 0.75rem;
        flex: 1;
    }

    .news-badge {
        display: inline-block;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 500;
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .news-title {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-meta {
        font-size: 0.75rem;
        color: var(--text-tertiary);
    }

    /* Services */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        display: flex;
        align-items: center;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .service-icon {
        width: 40px;
        height: 40px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0.75rem;
        font-size: 1.25rem;
    }

    .service-content {
        flex: 1;
    }

    .service-title {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }

    .service-description {
        font-size: 0.75rem;
        color: var(--text-tertiary);
    }

    /* Jobs */
    .job-card {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-md);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .job-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .job-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.75rem;
    }

    .job-title {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }

    .job-company {
        font-size: 0.75rem;
        color: var(--text-tertiary);
    }

    .job-badge {
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 500;
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--primary);
    }

    .job-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .job-salary {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--primary);
    }

    .job-date {
        font-size: 0.75rem;
        color: var(--text-tertiary);
    }

    /* Sponsored Content */
    .sponsored-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-md);
        margin-bottom: 1rem;
    }

    .sponsored-image {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .sponsored-content {
        padding: 1rem;
    }

    .sponsored-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .sponsored-badge {
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 500;
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--primary);
    }

    .sponsored-source {
        font-size: 0.75rem;
        color: var(--text-tertiary);
    }

    .sponsored-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .sponsored-description {
        font-size: 0.875rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .sponsored-button {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--primary-gradient);
        color: white;
        border-radius: var(--radius-full);
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    .sponsored-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }

    .sponsored-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sponsored-small {
        padding: 0.75rem;
        border-radius: var(--radius-lg);
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .sponsored-small:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .sponsored-small-image {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-bottom: 0.5rem;
    }

    .sponsored-small-source {
        font-size: 0.75rem;
        color: var(--text-tertiary);
        margin-bottom: 0.25rem;
    }

    .sponsored-small-title {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-primary);
    }

    /* Navigation with Green Gradient Background */
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
        padding: 0.75rem 0 env(safe-area-inset-bottom, 0.75rem);
        display: flex;
        justify-content: space-around;
        z-index: 50;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }

    .nav-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
    }

    .nav-shape-1 {
        width: 250px;
        height: 250px;
        background-color: var(--accent-glow);
        opacity: 0.15;
        bottom: -120px;
        right: 10%;
    }

    .nav-shape-2 {
        width: 200px;
        height: 200px;
        background-color: var(--primary-light);
        opacity: 0.1;
        top: -100px;
        left: 20%;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.75rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .nav-item:hover, .nav-item.active {
        color: white;
    }

    .nav-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .nav-add {
        position: relative;
    }

    .nav-add-button {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .nav-add-button:hover {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    }

    .nav-add > .nav-label {
        position: relative;
        top: 24px;
    }

    .nav-label {
        margin-top: 5px;
    }

    /* Section Styles */
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
        .category-grid {
            grid-template-columns: repeat(8, 1fr);
        }

        .services-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .carousel {
            height: 220px;
        }
    }

    /* Shimmer effect for buttons */
    @keyframes shimmer {
        0% { background-position: -100% 0; }
        100% { background-position: 200% 0; }
    }

    .shimmer {
        background-size: 200% 100%;
        background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.1));
        animation: shimmer 3s infinite linear;
    }