body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #1a1a2e; /* Dark purple/blue background */
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #48c6ef, #6bf1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 2s infinite alternate;
}

p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.link-item {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: 2px solid #6bf1ff;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(107, 241, 255, 0.5);
}

.link-item:hover {
    background-color: #6bf1ff;
    color: #1a1a2e;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 15px #6bf1ff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 107, 107, 0.5), 0 0 10px rgba(72, 198, 239, 0.5);
    }
    to {
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.8), 0 0 20px rgba(72, 198, 239, 0.8);
    }
}
