body {
    background: url('image.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.image-container {
    display: none;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-item {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.6),
                 0 0 30px rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.link-item:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                 0 0 25px rgba(255, 255, 255, 0.6),
                 0 0 35px rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}
