#space-game-container {
    width: 100%;
    height: 400px;
    background: #000;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
}

#space-game-canvas {
    width: 100%;
    height: 100%;
}

.space-game-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.space-game-stats {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

.space-game-stats div {
    margin: 5px 0;
    font-size: 14px;
}

#space-game-start-btn, #space-game-fullscreen-btn {
    background: #ff0050;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#space-game-start-btn:hover, #space-game-fullscreen-btn:hover {
    background: #ff1a6a;
    transform: scale(1.05);
}

#space-game-start-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.space-game-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    border: 2px solid #ff0050;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

.space-game-notification.show {
    opacity: 1;
}

.space-game-notification .user-name {
    color: #ff0050;
    font-weight: bold;
}

.space-game-notification .effect {
    color: #00ff88;
    font-weight: bold;
}

/* Tam ekran modu için özel stiller */
#space-game-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    z-index: 9999;
}

#space-game-container.fullscreen #space-game-canvas {
    width: 100vw;
    height: 100vh;
} 