body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.message {
    font-size: 3rem;
    font-weight: 700;
    color: #c084fc;
    text-align: center;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
    animation: fadeInScale 1.5s ease-out, pulseGlow 2s infinite alternate;
    padding: 20px;
}

.email {
    position: fixed;
    bottom: 20px;
    font-size: 1rem;
    color: #c084fc;
    text-align: center;
    animation: fadeIn 2s ease-out 0.5s forwards;
    opacity: 0;
}

.email a {
    color: #c084fc;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.email a:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.8);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(192, 132, 252, 0.8);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .message {
        font-size: 2rem;
    }
    .email {
        font-size: 0.9rem;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .message {
        font-size: 1.5rem;
    }
    .email {
        font-size: 0.8rem;
        bottom: 10px;
    }
}
