/* Color Palette */
:root {
    --primary-color: #5c162b; /* Burgundy to match his hair */
    --accent-color: #d4af37;  /* Golden to match his eyes */
    --bg-dark: #0a0a12;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #e0e0e0;
}

/* Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.links a:hover, .links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Placeholder dark forest/moon texture */
    background: url('https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?auto=format&fit=crop&w=1920&q=80') center/cover;
    border-bottom: 4px solid var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.4), rgba(10, 10, 18, 1));
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 5rem;
    margin: 0;
    color: var(--accent-color);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.9);
    letter-spacing: 8px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto;
    color: #fff;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

h2 {
    color: var(--accent-color);
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
    font-size: 2rem;
}

h3 {
    color: var(--text-light);
    margin-top: 30px;
}

/* Lists and Cards */
.profile ul {
    list-style: none;
    padding: 0;
}

.profile li {
    background: var(--bg-card);
    margin: 15px 0;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.profile li:hover {
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.05);
}

.lore-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ccc;
}

/* Simple Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}