/* Kontener kafelków */
.section-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

/* Pojedynczy kafelek-button */
.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    min-width: 180px;
}

.card-btn::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, #00f0ff33, transparent);
    transform: rotate(25deg);
    top: -150%;
    left: -150%;
    transition: 0.7s;
}

.card-btn:hover::before {
    top: 100%;
    left: 100%;
}

.card-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #00f0ff33;
}



/* --- Responsywność --- */
@media (max-width: 768px) {
    .card-btn {
        padding: 25px 30px;
        min-width: 140px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card-btn {
        padding: 20px 25px;
        min-width: 120px;
        font-size: 13px;
    }
}