:root {
    --bg-color: #240046;
    --card-bg: #3c096c;
    --text-color: #e0e0e0;
    --accent-color: #ff00ff;
    --heading-color: #00ffff;
    --border-color: #ff00ff;
    --header-bg: #5a189a;
    --glow: 0 0 15px #ff00ff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-color);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: clamp(20px, 8vh, 40px) clamp(16px, 5vw, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wishlist {
    max-width: 650px;
    width: 100%;
}

h1 {
    text-align: center;
    color: var(--heading-color);
    margin-bottom: clamp(1.5rem, 8vh, 3rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
}

.person-section {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    margin-bottom: clamp(20px, 5vh, 30px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    border: 1px solid var(--border-color);
}

.person-section h2 {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--header-bg);
    margin: 0;
    padding: 16px 20px;
    border-bottom: 2px solid var(--accent-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--glow);
}

ol {
    padding: 0 1.5rem 1.5rem 2.5rem;
}

li {
    margin-bottom: 12px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px var(--accent-color);
}

a:focus {
    outline: 3px solid var(--heading-color);
    outline-offset: 4px;
    border-radius: 2px;
}

#content p {
    font-style: italic;
}
