.home-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.home-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.home-header > * {
    position: relative;
    z-index: 1;
}

.home-box-img {
    max-width: 120px;
    max-height: 120px;
    transition: transform 0.3s ease;
}

.home-box-img:hover {
    transform: scale(1.05);
}

.home-mid-img {
    max-width: 400px;
    transition: transform 0.4s ease;
}

.home-mid-img:hover {
    transform: translateY(-10px);
}

.coinbasae-logo {
    height: 1.3rem;
}

.suggestion-header-bg {
    height: 140px !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Glass morphism cards with consistent styling */
.glass-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Feature cards with consistent design */
.feature-card {
    position: relative;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: var(--bs-light, #f8f9fa) !important;
}

[data-theme="dark"] .feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px) !important;
}

[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure neutral background works in both themes */
.neutral-bg {
    background-color: var(--bs-light, #f8f9fa) !important;
}

[data-theme="dark"] .neutral-bg {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient-primary-sm {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
}

/* Responsive improvements */
@media (max-width: 576px) {
    .home-header {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .home-mid-img {
        max-width: 100%;
        margin-top: 2rem;
    }

    .feature-card {
        margin-top: 1rem;
    }

    .glass-card {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .home-header {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem !important;
        line-height: 1.2 !important;
    }
}
