/* ============================================
   DINO-FANGEN - Game-specific Styles
   ============================================ */

/* Override background for jungle/dino theme */
body {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 50%, #1a4a1a 100%);
}

/* Back link and most UI styles are now in shared/css/game-overlays.css */

/* PFFT Text Animation */
.pfft-text {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    color: #8bc34a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    animation: pfft-float 1s ease-out forwards;
}

@keyframes pfft-float {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1.5);
    }
}

/* Score Pop Animation */
.score-pop {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    animation: score-pop 0.8s ease-out forwards;
}

@keyframes score-pop {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0.5);
    }
    50% {
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(1);
    }
}

/* Pause Overlay */
.pause-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.pause-overlay.visible {
    display: flex;
}

.pause-title {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.5);
}

.game-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border: none;
    color: #fff;
    padding: 18px 50px;
    font-size: 1.3rem;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

/* Game Title Override - Green theme */
.game-title {
    color: #8bc34a;
    text-shadow: 0 0 20px rgba(139, 195, 74, 0.5);
}

/* Responsive adjustments - minimal overrides */
@media (max-width: 768px) {
    .pause-title {
        font-size: 2.5rem;
    }
}
