body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #e1bee7);
    height: 100vh;
}

.splash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.splash-card {
    background: white;
    padding: 3em;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.event-title {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #6a1b9a;
}

.subtext {
    font-size: 1em;
    margin-bottom: 1.5em;
    color: #555;
}

.splash-form input {
    display: block;
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.splash-form button {
    background-color: #6a1b9a;
    color: white;
    padding: 0.8em 2em;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
}

.splash-form button:hover {
    background-color: #4a148c;
}

.admin-link {
    margin-top: 2em;
}

.admin-link a {
    color: #6a1b9a;
    text-decoration: none;
    font-size: 0.9em;
}
