/* Base */
* {
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top, #1e293b, #020617 70%);
    color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card panel */
.container {
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 18px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow:
        0 0 0 1px rgba(148, 163, 184, 0.15),
        0 25px 60px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Title */
h1 {
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
}

/* Mana buttons */
button {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 14px;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    color: #020617;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9); /* Blue */
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(56, 189, 248, 0.6);
}

/* Secondary = Purple */
button.secondary {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    box-shadow: 0 8px 20px rgba(167, 139, 250, 0.35);
}

/* Inputs */
input {
    width: 100%;
    padding: 0.9rem;
    margin-top: 1rem;
    border-radius: 12px;
    border: none;
    background: #020617;
    color: #e5e7eb;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

input::placeholder {
    color: #94a3b8;
}

/* Results panel */
.results {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.85);
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
    text-align: left;
}

/* Links */
a {
    display: block;
    margin-top: 1.5rem;
    color: #93c5fd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
