:root {
    --accent: #00bfff;
    --border: rgba(255, 255, 255, 0.1);
    --bg-hover: rgba(255, 255, 255, 0.05);
}

/* CONTAINER */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 24px 100px;
}

/* HERO */
.contact-hero {
    text-align: center;
    margin-bottom: 80px;
}

.badge {
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-hero h1 {
    font-size: clamp(38px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero p {
    color: #888;
    font-size: 18px;
    max-width: 500px;
    margin: auto;
}

/* CONTACT LIST */
.contact-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.contact-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 10px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: white;
    transition: all 0.35s ease;
}

.line-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.line-icon {
    font-size: 24px;
    color: var(--accent);
    width: 30px;
    text-align: center;
}

.line-text h3 {
    font-size: 22px;
    font-weight: 600;
}

.line-text p {
    color: #666;
    margin-top: 3px;
    font-size: 14px;
}

.line-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
    transition: 0.3s;
}

.line-right i {
    font-size: 12px;
}

/* HOVER */
.contact-line:hover {
    background: var(--bg-hover);
    padding-left: 20px;
}

.contact-line:hover .line-right {
    color: var(--accent);
    transform: translateX(6px);
}

/* MOBILE REWORK */

@media (max-width: 768px) {

    /* CONTAINER */

    .contact-container{
        max-width:520px;
        margin:auto;
        padding:120px 24px 80px;
        text-align:center;
    }

    /* HERO */

    .contact-hero{
        margin-bottom:40px;
    }

    .contact-hero h1{
        font-size:38px;
        font-weight:800;
        letter-spacing:-1px;
    }

    .contact-hero p{
        color:#888;
        font-size:16px;
        margin-top:10px;
    }

    /* CONTACT LIST */

    .contact-list{
        display:flex;
        flex-direction:column;
        gap:16px;
        margin-top:35px;
    }

    /* CARD */

    .contact-line{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        background:#0f0f0f;
        border-radius:16px;
        padding:24px;

        text-decoration:none;
        color:white;

        transition:all .35s ease;

        border:1px solid rgba(255,255,255,0.05);
    }

    /* glow effect */

    .contact-line:hover{
        transform:translateY(-3px);
        border-color:#00bfff;

        box-shadow:
        0 0 20px rgba(0,191,255,0.2),
        0 10px 40px rgba(0,0,0,0.5);
    }

    /* titolo */

    .line-text h3{
        font-size:20px;
        font-weight:700;
    }

    /* username */

    .line-text p{
        font-size:14px;
        color:#777;
        margin-top:4px;
    }

    /* icona */

    .line-icon{
        font-size:22px;
        margin-bottom:10px;
        color:#00bfff;
    }

    /* nascondiamo freccia */

    .line-right{
        display:none;
    }

}