﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, #app {
    height: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Fira Code', monospace;
    background-color: #0f0f0f;
    color: white;

}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.container {
    position: fixed;
    z-index: 12;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    pointer-events: none;
}

h1 {
    font-family: 'Fira Code', monospace;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

    h1 span {
        background: linear-gradient(90deg, orange, darkorange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

p {
    font-family: 'Fira Code', monospace;
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: white;
}

.cta-button {
    background-color: #00ffc3;
    color: #0f0f0f;
    padding: 0.6rem 0.6rem;
    margin: 2px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: auto;
    min-width: 240px;
}

    .cta-button.primary {
        background-color: orange;
    }

    .cta-button:hover {
        filter: brightness(1.25);
    }
    .cta-button.primary:hover {
        filter: brightness(1.25);
    }
footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    z-index: 12;
    pointer-events: none;
}

.get-span {
    background: linear-gradient(270deg, orange, darkorange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* 📱 Adattamenti per tablet e smartphone */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }
}
