* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #cccccc;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    font-size: 17px;
}

.main-menu {
    background-color: #1a1a1a;
    border-bottom: 3px solid #444444;
    padding: 15px 0;
    margin-bottom: 20px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.main-menu a {
    color: #00ff9d;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ff9d;
}

.main-menu a:hover,
.main-menu a.active {
    color: #ffffff;
    border: 2px solid #00ff9d;
    background-color: #222222;
    text-shadow: 0 0 15px #00ff9d,
                 0 0 25px #00ff9d;
    box-shadow: 0 0 20px #00ff9d;
}

.content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1px 30px;

    display: grid;
    grid-template-columns: 0.97fr 2.8fr 0.97fr;
    gap: 20px;
}

.side-panel {
    background-color: #111111;
    border: 2px solid #444444;
    padding: 15px;
    height: 86vh;
    overflow-y: auto;
    text-shadow: 0 0 5px #00ff9d;
}

.side-panel h3 {
    margin-bottom: 10px;
    color: #00ff9d;
    letter-spacing: 2px;
    font-size: 18px;
}

.project-link {
    display: block;
    margin: 8px 0;
    cursor: pointer;
    color: #bbbbbb;
    transition: 0.2s;
}

.project-link:hover {
    color: #00ff9d;
    text-shadow: 0 0 8px #00ff9d;
}

#projekte {
    background-color: #111111;
    border: 2px solid #444444;
    height: 82vh;
    position: relative;
    overflow: hidden;
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

canvas:active {
    cursor: grabbing;
}

#infoBox {
    position: absolute;
    background-color: #111111;
    border: 2px solid #444444;
    padding: 15px;
    font-size: 14px;
    color: #00ff9d;
    max-width: 220px;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-shadow: 0 0 5px #00ff9d;
    cursor: pointer;
}

#infoBox.active {
    opacity: 1;
}

#infoBox h3 {
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

#infoBox p {
    font-size: 12px;
    color: #bbbbbb;
}

.ticker-wrapper {
    grid-column: 2;
    overflow: hidden;
    width: 100%;
    margin-top: -50px;
    border-top: 2px solid #333;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerLoop 12s linear infinite;
}

.ticker-content {
    display: inline-block;
    padding-right: 80px;
    color: #00ff9d;
    text-shadow: 0 0 5px #00ff9d;
    letter-spacing: 2px;
    font-size: 16px;
    white-space: nowrap;
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}