:root {
    --primary-color: #8a2be2;
    --secondary-color: #4b0082;
    --background-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #9370db;
    --highlight-color: #ba55d3;
    --gradient-start: #ffd700;
    --gradient-end: #8a2be2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: linear-gradient(45deg, #1a1a1a 0%, #2a1a2a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    border-bottom: 2px solid var(--primary-color);
    animation: glow 2s ease-in-out infinite alternate;
    background: rgba(74, 0, 130, 0.2);
    border-radius: 10px;
    position: relative;
}

.gradient-eyes {
    width: 100px;
    height: 20px;
    margin: 1rem auto;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    animation: eyeGlow 3s ease-in-out infinite alternate;
}

@keyframes eyeGlow {
    from {
        box-shadow: 0 0 10px var(--gradient-start);
        transform: scale(1);
    }
    to {
        box-shadow: 0 0 20px var(--gradient-end);
        transform: scale(1.1);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px var(--primary-color);
    }
    to {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--accent-color);
    }
}

h1 {
    font-size: 4rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--accent-color);
}

.subtitle {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
}

.profile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-image {
    text-align: center;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px var(--primary-color);
}

.profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--accent-color);
}

.basic-info {
    padding: 2rem;
    background: rgba(74, 0, 130, 0.2);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: 0 0 5px var(--accent-color);
}

h3 {
    color: var(--highlight-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

li::before {
    content: "›";
    color: var(--highlight-color);
    position: absolute;
    left: 0;
}

.personality {
    background: rgba(74, 0, 130, 0.2);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
}

.characteristics, .abilities, .relationship, .daily-life {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(74, 0, 130, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.characteristics:hover, .abilities:hover, .relationship:hover, .daily-life:hover {
    transform: translateX(10px);
    background: rgba(74, 0, 130, 0.2);
}

.projects {
    margin: 2rem 0;
}

.project-card {
    background: rgba(74, 0, 130, 0.3);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.relationship p, .daily-life p {
    color: var(--text-color);
    font-style: italic;
    padding: 1rem;
    border-left: 3px solid var(--highlight-color);
    margin-top: 1rem;
}

.quotes {
    text-align: center;
    padding: 2rem;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--highlight-color);
    background: rgba(74, 0, 130, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

blockquote:hover {
    transform: translateX(10px);
    background: rgba(74, 0, 130, 0.3);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

@media (max-width: 768px) {
    .profile-section {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 3rem;
    }

    .project-card {
        margin: 1rem 0;
    }
}

/* [Previous CSS remains the same until the new additions below] */

/* Navigation Styles */
nav {
    margin-top: 1rem;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

/* Diary Styles */
.diary-entries {
    max-width: 800px;
    margin: 0 auto;
}

.diary-entry {
    background: rgba(74, 0, 130, 0.2);
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.diary-entry:hover {
    transform: translateX(10px);
}

.entry-date {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.entry-content {
    padding: 1rem;
}

.uzi-text {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cyn-text {
    color: var(--primary-color);
    font-style: italic;
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 2px solid var(--highlight-color);
}

.solver-notes {
    margin-top: 3rem;
}

.note-card {
    background: rgba(74, 0, 130, 0.3);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.note-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.note-card ul {
    list-style: none;
}

.note-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.note-card li::before {
    content: "•";
    color: var(--highlight-color);
    position: absolute;
    left: 0;
}

/* [Rest of the previous CSS remains the same] */