#plant-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

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

body {
    margin: 0;
    padding: 40px;
    font-family: 'Courier New', 'Courier', monospace;
    background: #ffffff;
    color: #0066ff;
    line-height: 1.6;
}

.title {
    font-size: 48px;
    text-align: center;
    margin: 20px 0;
    color: #0066ff;
    font-weight: bold;
    letter-spacing: 4px;
    text-shadow: 2px 2px 0px rgba(0, 102, 255, 0.3);
}

.layout {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    background: #ffffff;
    padding: 30px;
    margin: 30px 0;
    border: 4px solid #0066ff;
    box-shadow: 8px 8px 0px rgba(0, 102, 255, 0.2);
}

.navbar a {
    display: block;
    margin: 15px 0;
    padding: 12px;
    text-decoration: none;
    color: #0066ff;
    font-size: 20px;
    font-weight: bold;
    border: 3px solid #0066ff;
    background: #ffffff;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar a:hover {
    background: #0066ff;
    color: #ffffff;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px rgba(0, 102, 255, 0.3);
}

.caption {
    font-size: 14px;
    color: #6699ff;
    margin: 5px 0 20px 12px;
    font-style: italic;
}

.imagewrapper {
    margin: 30px 0;
    border: 4px solid #0066ff;
    padding: 20px;
    background: #ffffff;
    box-shadow: 8px 8px 0px rgba(0, 102, 255, 0.2);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6699ff;
}

.citation {
    font-size: 11px;
    color: #6699ff;
    margin-top: 60px;
    padding: 20px;
    border-top: 2px solid #cce0ff;
    text-align: center;
}

.citation a {
    color: #0066ff;
    text-decoration: underline;
}

p {
    color: #0066ff;
    font-weight: 500;
}

.controls {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border: 4px solid #0066ff;
    padding: 20px;
    box-shadow: 8px 8px 0px rgba(0, 102, 255, 0.2);
    z-index: 10000;
}

.controls h3 {
    color: #0066ff;
    margin-bottom: 15px;
    font-size: 16px;
}

.controls button {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    background: #0066ff;
    color: #ffffff;
    border: 2px solid #0066ff;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.controls button:hover {
    background: #ffffff;
    color: #0066ff;
}

.plant-count {
    color: #6699ff;
    font-size: 12px;
    margin-top: 10px;
}