:root {
    --bg-color: #0a0b14;
    --text-color: #e0e0ff;
    --accent-color: #b19cd9;
    --secondary-accent: #7df9ff;
    --muted-color: #6b6b8a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 15px rgba(177, 156, 217, 0.3);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(125, 249, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(177, 156, 217, 0.08) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

nav {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(to bottom, var(--bg-color), transparent);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: var(--secondary-accent);
    text-shadow: 0 0 10px var(--secondary-accent);
}

main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow);
    margin-bottom: 2rem;
}

.main-image-container {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.main-image {
    max-width: 300px;
    border-radius: 50% 50% 20px 20px;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 30px var(--accent-color);
}

.chibi-decor {
    position: absolute;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.chibi-tl { top: -20px; left: -40px; }
.chibi-tr { top: -20px; right: -40px; }

h1, h2, h3 {
    font-weight: 400;
    color: var(--accent-color);
}

.greeting {
    text-align: center;
    margin-bottom: 4rem;
}

.greeting h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.curiosity-list {
    list-style: none;
    padding: 0;
}

.curiosity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border-left: 3px solid var(--secondary-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--glass-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.8rem;
    color: var(--muted-color);
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
