.site-header {
    background-color: #1a1a3e;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 24px;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-image {
    height: 70px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    margin-left: 80px;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: #a78bfa;
}

.site-commander-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a3e;
    text-decoration: none;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-commander-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.site-commander-btn:active {
    transform: translateY(0);
}

.site-menu-toggle {
    display: none;
    background: #fbbf24;
    color: #1a1a3e;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .site-logo-image {
        height: 50px;
    }

    .site-nav {
        margin-left: 0;
        gap: 12px;
        flex-direction: column;
        width: 100%;
        order: 3;
        flex-basis: 100%;
        display: none;
        padding: 15px 0;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        font-size: 13px;
        padding: 8px 12px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .site-commander-btn {
        padding: 8px 16px;
        font-size: 13px;
        width: auto;
    }

    .site-menu-toggle {
        display: block;
        margin-left: auto;
    }
}
