body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Orbitron', sans-serif; /* A futuristic font */
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.logo {
    text-align: center;
    color: #00ffcc;
    background: linear-gradient(90deg, #000000, #333333);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    width: 80%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(90deg, #ff00cc, #3333ff);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px #ff00cc, 0 0 20px #3333ff;
}

.button:hover {
    background: linear-gradient(90deg, #3333ff, #ff00cc);
    box-shadow: 0 0 20px #ff00cc, 0 0 40px #3333ff;
    transform: scale(1.1);
}

.card {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 10px;
    padding: 15px;
    color: #e0e0e0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

footer {
    margin-top: auto;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    padding: 10px;
    background: #111;
    border-top: 1px solid #333;
}

#bg-blur {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: #111;
    background-size: cover;
    background-position: center;
    filter: blur(24px) brightness(0.3);
    transition: background-image 0.5s;
    pointer-events: none;
}
