.btn {
    display: inline-block;
    background: var(--swatch--primary-500);
    color: var(--swatch--neutral-800);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--swatch--primary-500);
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background: var(--swatch--primary-400);
    color: var(--swatch--neutral-800);
    border-color: var(--swatch--primary-400);
}

.scroll-arrow {
    position: fixed;
    width: auto;
    min-width: 60px;
    padding: 12px 20px;
    background: var(--swatch--neutral-800);
    border: 2px solid var(--swatch--primary-400);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3,10,15,0.3);
}

.scroll-arrow-text {
    color: var(--swatch--primary-400);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.scroll-arrow:hover .scroll-arrow-text {
    color: var(--swatch--neutral-800);
}

.scroll-arrow:hover {
    background: var(--swatch--primary-400);
    transform: scale(1.1);
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--swatch--primary-400);
    transition: fill 0.3s ease;
}

.scroll-arrow:hover svg {
    fill: var(--swatch--neutral-800);
}

.scroll-arrow.down {
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow.down.left-panel {
    left: 15%;
    transform: translateX(-50%);
}

.scroll-arrow.down.mobile-bottom-left {
    left: 2rem;
    bottom: 2rem;
    transform: none;
}

.scroll-arrow.up {
    top: calc(120px + 2rem);
    left: 50%;
    transform: translateX(-50%);
}