/* Global reset */
* {
    box-sizing: border-box;
}

/* Page background */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #dbeafe, #eef2ff);
    margin: 0;
    padding: 0;
    color: #111827;
}

/* Title */
h1 {
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Subtitle */
p {
    text-align: center;
    color: #4b5563;
    font-size: 15px;
}

/* Button (glass style) */
button {
    display: block;
    margin: 30px auto;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px; /* pill shape */
    cursor: pointer;
    transition: all 0.25s ease;
}

button:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
}

/* Section headings */
h2 {
    text-align: center;
    margin-top: 40px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px 0;
}

/* Glass cards */
li {
    width: 85%;
    margin: 14px auto;
    padding: 16px 20px;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);

    font-size: 15px;
    line-height: 1.4;
    color: #1f2937;
}
.signature {
    position: fixed;
    bottom: 12px;
    right: 12px;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.4);
    font-style: italic;
    pointer-events: none; /* makes it non-clickable */
}
