/* Page layout */
body {
    background: #0b0b0e;
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    overflow-x: hidden;
}

/* Title */
h1 {
    color: #ff007f;
    text-shadow: 0 0 10px #ff007f;
    margin-bottom: 30px;
}

/* Link buttons */
.link {
    background: #16161d;
    border: 1px solid #ff007f;
    padding: 18px;
    width: 320px;
    margin: 12px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 5px #ff007f;
}

/* Hover effect */
.link:hover {
    background: #ff007f;
    color: black;
    box-shadow: 0 0 20px #ff007f;
}

.banner {
    width: 100vw;
    height: 300px;
    object-fit: cover;
    display: block;

    border-bottom: 2px solid #ff007f;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.6);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
    margin-top: 60px;
    padding: 20px 0 30px;
    width: 100%;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 0, 127, 0.2);
}

.footer p {
    margin: 0;
}

.footer:hover {
    color: #ff007f;
    text-shadow: 0 0 8px #ff007f;
}