body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #00ffff;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: rgba(0, 20, 20, 0.8);
    border-right: 1px solid #00ffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    z-index: 100;
}

.ai-text {
    font-size: 32px;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 40px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ai-text:hover {
    transform: scale(1.2);
    text-shadow: 0 0 25px #00ffff, 0 0 50px #00ffff;
}

.nav-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
    fill: #00ffff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px #00ffff);
}

#main-content {
    margin-left: 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
