/* Game Design Animation Styles */

/* Game Icons Animation */
.game-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.game-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(0, 100, 255, 0.7));
    transform-origin: center;
    z-index: 3;
}

/* Interactive 3D Controller Section */
.interactive-3d-section {
    background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.interactive-3d-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/patterns/circuit-pattern.svg');
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.game-controller-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

#game-controller-3d {
    width: 100%;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 3;
    cursor: grab;
}

#game-controller-3d:active {
    cursor: grabbing;
}

.controller-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.controller-instructions {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
    border-left: 3px solid #4a9bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .game-controller-container {
        flex-direction: column;
    }
    
    #game-controller-3d {
        height: 250px;
    }
}
