/* Basic resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #8a2be2, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.7;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.2);
}

.card p {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.highlight {
    color: #ff4081;
    font-weight: bold;
}

.footer {
    opacity: 0.4;
    font-size: 0.9rem;
}



