/* FLOWGLISH HEADER */
.flowglish-header {
    background: #0a0a0f;
    border-bottom: 1px solid #2a2a3a;
    position: sticky;
    top: 0;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
}

.flowglish-header {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.flowglish-header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.flowglish-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.flowglish-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.flowglish-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flowglish-logo-text {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.flowglish-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1a25;
    border: 1px solid #2a2a3a;
    border-radius: 10px;
    padding: 10px 16px;
    color: #a0a0b0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flowglish-menu-btn:hover {
    border-color: #00d4aa;
    color: #ffffff;
}

.flowglish-menu-icon {
    font-size: 1.1rem;
}

.flowglish-menu-dropdown {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #1a1a25;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    padding: 8px;
    z-index: 10000;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.flowglish-menu-dropdown.show {
    display: block;
    animation: flowglishFadeIn 0.2s ease;
}

@keyframes flowglishFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.flowglish-menu-item {
    display: block;
    padding: 12px 16px;
    color: #a0a0b0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.flowglish-menu-item:hover {
    background: #12121a;
    color: #ffffff;
}

.flowglish-menu-item.active {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
}

.flowglish-menu-divider {
    height: 1px;
    background: #2a2a3a;
    margin: 8px 0;
}

.flowglish-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #2a2a3a;
}

.flowglish-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #606070;
}

.flowglish-breadcrumb a {
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.flowglish-breadcrumb a:hover {
    color: #00d4aa;
}

.flowglish-breadcrumb .separator {
    color: #606070;
}

.flowglish-breadcrumb .current {
    color: #00d4aa;
    font-weight: 500;
}

.flowglish-score-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1a25;
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid #2a2a3a;
}

.flowglish-star {
    color: #fbbf24;
    font-size: 1rem;
}

.flowglish-points {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

@media (max-width: 600px) {
    .flowglish-header-container {
        padding: 0 12px;
    }

    .flowglish-logo-text {
        font-size: 1.2rem;
    }

    .flowglish-menu-btn span:last-child {
        display: none;
    }

    .flowglish-breadcrumb {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
    
    .flowglish-menu-dropdown {
        right: 12px;
        left: 12px;
        min-width: auto;
    }
}