* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f172a;
    overflow: hidden;
}

.contact-card {
    width: 90%;
    max-width: 650px;
    padding: 65px 55px;
    text-align: center;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card h1 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-card p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 38px;
}

.email {
    display: inline-block;
    padding: 18px 34px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, rgb(214, 8, 8));
    transition: 0.3s ease;
}

.email:hover {
    transform: translateY(-5px) scale(1.03);
}

@media(max-width:700px) {
    .contact-card {
        padding: 45px 25px;
    }

    .contact-card h1 {
        font-size: 38px;
    }

    .contact-card p {
        font-size: 16px;
    }

    .email {
        font-size: 15px;
        padding: 14px 22px;
    }
}