/* Стили для хедера */
header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.connect-wallet {
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

/* Медиа запросы */
@media (min-width: 769px) {
    .connect-wallet {
        font-size: 15.6px;
        padding: 5px 14px;
    }
}

@media (max-width: 768px) {
    .connect-wallet {
        font-size: 16px;
        padding: 8px 16px;
    }
} 