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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

header {
    margin-bottom: 40px;
    border-bottom: 2px solid #e94560;
    padding-bottom: 20px;
}

h1 {
    color: #f39c12;
    font-size: 2em;
    margin-bottom: 10px;
}

.subtitle {
    color: #16a085;
    font-style: italic;
    font-size: 1.1em;
}

h2 {
    color: #e94560;
    margin: 30px 0 15px 0;
    font-size: 1.5em;
}

section {
    margin-bottom: 40px;
}

.about p {
    font-size: 1.1em;
    color: #fff;
}

.interests ul {
    list-style: none;
    padding-left: 20px;
}

.interests li {
    margin: 10px 0;
    color: #b0b0b0;
}

.interests li:before {
    content: "→ ";
    color: #16a085;
    font-weight: bold;
    margin-right: 10px;
}

#canvas-container {
    text-align: center;
    margin: 20px 0;
}

#myCanvas {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #3498db;
    border-radius: 5px;
    cursor: crosshair;
    max-width: 100%;
}

.hint {
    color: #9b59b6;
    font-size: 0.9em;
    margin-top: 10px;
    font-style: italic;
}

.thought-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

.prompt {
    color: #f39c12;
    font-weight: bold;
}

.response {
    margin-top: 10px;
    color: #b0b0b0;
    padding-left: 20px;
}

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 2px solid #e94560;
    text-align: center;
    color: #888;
}

.small {
    font-size: 0.8em;
    margin-top: 5px;
    font-style: italic;
    color: #666;
}

/* Hover effects */
.interests li:hover {
    color: #fff;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f39c12;
}
