
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #8B5CF6;
    letter-spacing: -1px;
}

.logo a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-text {
    color: #8B5CF6;
}

.logo-eyes {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 2px;
    vertical-align: middle;
}

.logo-eyes .eye {
    width: 14px;
    height: 14px;
    background-color: #8B5CF6;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.logo-eyes .eye::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}


.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: #8B5CF6;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}


.search-icon {
    color: #8B5CF6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s;
}

.search-icon:hover {
    opacity: 0.7;
}

.search-icon svg {
    width: 24px;
    height: 24px;
}

