.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 2147483647 !important;
    width: 100%;
}

.sticky-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #1a1a1a;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2147483647 !important;
}

.sh-logo img {
    max-height: 40px;
    width: auto;
}

.sh-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sh-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
}

.sh-btn-gradient {
    background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 4px rgba(255, 75, 43, 0.3);
}

.sh-btn-outline {
    background: transparent !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
}

.sh-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sh-hide-mobile {
        display: none !important;
    }
    .sticky-header-container {
        padding: 15px;
    }
}