/* Theme 6: Aurora Bio (theme-aurora-bio)
   Vibe: Aurora borealis / bioluminescent glow, deep space/purple background, bright green/mint highlights. */

body {
    background-color: #0b071e;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
    color: #f1f5f9;
    font-family: 'Outfit', sans-serif;
}

/* Header */
.main-header {
    background-color: rgba(11, 7, 30, 0.9);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.logo-text .accent {
    color: #22c55e; /* Bright Green */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list a {
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.nav-list a:hover, .nav-list a.active {
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

/* Lang selector */
.lang-selector-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.lang-selector-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #22c55e;
}

.lang-dropdown-menu {
    position: absolute;
    background: #0b071e;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    list-style: none;
    padding: 8px 0;
    width: 150px;
    display: none;
    z-index: 1001;
}

.lang-dropdown-menu.active {
    display: block;
}

.lang-dropdown-menu a {
    padding: 10px 16px;
    font-size: 13px;
    color: #94a3b8;
}

.lang-dropdown-menu a:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Cards customization */
.product-item-card, .product-listing-card, .feature-card {
    background: rgba(21, 16, 44, 0.7) !important;
    border: 1px solid rgba(168, 85, 247, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    color: #cbd5e1 !important;
    border-radius: 16px !important;
}

.product-item-card:hover, .product-listing-card:hover, .feature-card:hover {
    border-color: #22c55e !important;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15) !important;
    transform: translateY(-5px) !important;
}

.card-title a, .list-card-title a, .feature-card h3 {
    color: #ffffff !important;
}

.alt-bg {
    background-color: rgba(11, 7, 30, 0.4) !important;
}

.section-title {
    color: #ffffff !important;
}

/* Footer styling */
.site-footer {
    background-color: #070414;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-block h3, .footer-block h4 {
    color: #ffffff;
}

.footer-block h4::after {
    background-color: #22c55e;
}

.footer-bottom {
    background-color: #030209;
}

/* Mobile */
.mobile-menu-btn .bar {
    background: #ffffff;
}

@media (max-width: 768px) {
    .nav-bar {
        background: #0b071e;
        border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    }
}
