/* RESET E GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

body {
    background: linear-gradient(135deg, #09001a 0%, #160033 50%, #0d012a 100%);
    overflow-x: hidden;
}

/* BUTTONS GENERICI */
.btn-primary,
.btn-secondary,
.btn-gradient {
    display: inline-block;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 22px;
    font-weight: 600;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, #7b5cff, #3b82f6);
    color: #fff;
    box-shadow: 0 8px 30px rgba(123,92,255,0.14);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(123,92,255,0.22);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 220px;
    padding: 0.8rem 1.4rem;
    border-radius: 16px;
    border: 1px solid rgba(159,129,255,0.25);
    color: #dcd6ff;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.03), 0 8px 28px rgba(30,10,80,0.18);
    transition: all 0.28s ease;
    transform-origin: center;
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 38px rgba(123,92,255,0.28);
    background: linear-gradient(90deg, #7b5cff, #3b82f6);
    color: #fff;
}

.btn-gradient {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    color: #fff;
    box-shadow: 0 8px 30px rgba(59,130,246,0.12);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
