body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(backgroun.jpg);
    background-color: black;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p {
    color: aqua;
    text-align: center;
    font-family: inherit;
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.3px;
    max-width: 640px;
    margin: 0;
    padding: 2.5rem 3rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 255, 255, 0.35);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

p:hover {
    transform: translateY(-4px);
    border-color: aqua;
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.2);
}

p b {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

@media (max-width: 600px) {
    p {
        font-size: 1.05rem;
        padding: 1.75rem 1.5rem;
    }
}

/* ---------- ❄ Nav bar (shared ice theme) ---------- */
.nav {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 14px 10px;
    background: rgba(0, 10, 14, 0.55);
    border-bottom: 1px solid rgba(0, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.nav a {
    margin: 0;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: #bff5ea;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav a:hover {
    color: #ffffff;
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav a.active {
    color: #05130f;
    background: linear-gradient(135deg, #7fffd4, #40e0d0);
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

