/* Cosmic TypeBlast Specific Styles */
#cosmic-typeblast-canvas {
    background: linear-gradient(180deg, #0c0c2e 0%, #1a1a3e 50%, #0c0c2e 100%);
    cursor: crosshair;
}
h1 {
  display: none;
}
.tmg-enemy-ship {
    position: absolute;
    color: #ff6b6b;
    font-weight: bold;
    text-shadow: 0 0 5px #ff0000;
    transition: transform 0.1s ease;
}

.tmg-player-laser {
    position: absolute;
    width: 3px;
    height: 15px;
    background: linear-gradient(180deg, #00ff00 0%, #00cc00 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px #00ff00;
}

.tmg-explosion {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ff8c00 0%, #ff0000 100%);
    border-radius: 50%;
    animation: explode 0.5s ease-out forwards;
}

@keyframes explode {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.tmg-game-over, .tmg-level-complete {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    z-index: 100;
}

.tmg-game-over h2, .tmg-level-complete h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.tmg-level-complete h2 {
    color: #27ae60;
}

.tmg-continue-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    margin: 10px;
}

.tmg-continue-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}