/* WORK IN PROGRESS PAGE */
body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #1a001f, #6a0dad);
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.wip-container {
    text-align: center;
    background: rgba(20, 20, 20, 0.9);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid #bb86fc;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.7);
    max-width: 500px;
}

.wip-container h1 {
    font-size: 2.5rem;
    color: #bb86fc;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #9a40cf, 0 0 20px #bb86fc;
}

.wip-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #e0d6ff;
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 10px;
    background: linear-gradient(90deg, #9a40cf, #bb86fc);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(187, 134, 252, 0.5);
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.8);
}