/* ===== FLOATING CONTENT ITEMS ===== */

#content-items-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.content-item {
    position: absolute;
    font-family: 'PixelTimes', monospace;
    color: #000;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.1s ease;
    user-select: none;
}

.content-item:hover {
    transform: scale(1.1);
}

.content-item:active {
    transform: scale(0.9);
}

/* Game items */
.content-item.game {
    font-size: 32px;
    font-weight: bold;
}

.content-item.game:hover {
    text-decoration: underline;
}

/* About text */
.content-item.about {
    font-size: 36px;
    max-width: 600px;
    text-align: center;
    pointer-events: none;
    cursor: default;
}

/* Contact email */
.content-item.contact {
    font-size: 32px;
    text-decoration: underline;
}

.content-item.contact:hover {
    font-weight: bold;
}
