* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    color: #333;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.game-header {
    text-align: center;
    margin-bottom: 30px;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.game-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: linear-gradient(145deg, #f1f2f6, #dfe4ea);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .images-container {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 500px) {
    .game-title {
        font-size: 1.5rem;
    }
    .game-subtitle{
        font-size: 1rem;
    }
    .stat-card{
        padding: 11px 18px;
    }
    .stat-value{
        font-size: 1.5rem;
    }
    .game-stats{
        gap: 20px;
    }
}

.image-section {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /*transition: transform 0.3s ease;*/
}

.image-section:hover {
    /*transform: translateY(-5px);*/
}

.image-header {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.game-image:hover {
    /*transform: scale(1.02);*/
}

.instruction {
    text-align: center;
    margin-top: 15px;
    color: #7f8c8d;
    font-size: 1rem;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

img[area] {
    cursor: default !important;
}

.clickable-area {
    cursor: default !important;
    transition: all 0.3s ease;
}

.clickable-area:hover {
    filter: brightness(1.1);
}

.found-area {
    background: rgba(46, 204, 113, 0.3) !important;
    animation: foundPulse 1s ease-out;
}

@keyframes foundPulse {
    0% { background: rgba(46, 204, 113, 0.8) !important; }
    100% { background: rgba(46, 204, 113, 0.3) !important; }
}

.success-message {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
    animation: successSlideIn 0.5s ease-out;
    display: none;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reset-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    margin: 20px auto;
    display: block;
}

.reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.progress-bar {
    background: #ecf0f1;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.click-effect {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #2ecc71;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: clickRipple 0.6s ease-out forwards;
    z-index: 10;
}

@keyframes clickRipple {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

.wp-back-link {
    text-align: center;
    margin-top: 20px;
}

.wp-back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wp-back-link a:hover {
    color: #764ba2;
}
@media (max-width: 400px) {
    .stat-value {
        font-size: 1rem;
    }
    .game-stats {
        gap: 10px;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .game-container{
        padding: 11px;
    }

    .image-header{
        padding: 8px;
        font-size: 1rem;
    }
    .success-message{
        font-size: 1rem;
    }
}
