/**
 * Pausenplatz Quick Click Game Styles
 * file: /wp-content/plugins/pausenplatz/css/games/pausenplatz-quickclick-style.css
 */

.pausenplatz-quickclick-play-field {
    width: 100%;
    height: 400px;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.pausenplatz-quickclick-target {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e74c3c;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.1s ease-out;
}

.pausenplatz-quickclick-target:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.pausenplatz-quickclick-target:active {
    transform: translate(-50%, -50%) scale(0.95);
    background-color: #c0392b;
}

.pausenplatz-quickclick-instructions {
    text-align: center;
    font-size: 1.2em;
    padding: 20px;
    margin: 20px 0;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 5px;
}

.pausenplatz-quickclick-countdown {
    font-size: 5em;
    text-align: center;
    padding: 50px 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .pausenplatz-quickclick-play-field {
        height: 300px;
    }
} 