.desktop-icons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.icon {
    width: 70px;
    text-align: center;
    cursor: pointer;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

.icon span {
    font-size: 12px;
    display: block;
    word-wrap: break-word;
}

.icon:hover {
    background-color: rgba(49, 106, 197, 0.3);
}

/* Snow styles */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

@media (max-width: 768px) {
    .desktop-icons {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .icon {
        width: 80px;
    }

    .icon span {
        font-size: 12px;
    }

    .window {
        border-radius: 0;
    }

    .window.maximized {
        border-radius: 0;
    }

    .taskbar {
        height: 48px;
    }

    .start-menu {
        border-radius: 0;
    }
}