* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.content {
    text-align: center;
    color: white;
    max-width: 700px;
    width: 100%;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 50px;
}

.logo h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.logo .highlight {
    color: #ffd700;
    text-shadow: 2px 2px 20px rgba(255, 215, 0, 0.5);
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.message {
    margin: 50px 0;
}

.status {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.info {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.cta {
    margin: 60px 0;
}

.find-me {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.link-button {
    display: inline-block;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.link-button:active {
    transform: translateY(-1px);
}

footer {
    margin-top: 80px;
    opacity: 0.8;
}

footer p {
    font-size: 0.95rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 600px) {
    .logo h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .status {
        font-size: 1.4rem;
    }

    .info {
        font-size: 1rem;
    }

    .link-button {
        padding: 15px 35px;
        font-size: 1.2rem;
    }

    footer {
        margin-top: 60px;
    }
}

