body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.game-container {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    width: 100%;
}

h1 {
    color: #0f0;
    text-shadow: 0 0 15px #0f0;
    margin-bottom: 10px;
    font-size: 2.5rem;
    letter-spacing: 4px;
}

.subtitle {
    color: #0a0;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #0a0;
}

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

.stat {
    color: #0f0;
    font-size: 1.1rem;
    text-shadow: 0 0 5px #0f0;
}

.stat span {
    color: #0ff;
}

.target-area {
    position: relative;
    width: 90%;
    max-width: 700px;
    height: 500px;
    margin: 0 auto;
    border: 3px solid #0f0;
    border-radius: 10px;
    background: rgba(0, 20, 0, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    cursor: crosshair;
    overflow: hidden;
}

#instructions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0f0;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #0f0;
    text-align: center;
    padding: 20px;
    pointer-events: none;
}

.target {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #0ff, #0f0);
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 0.8s infinite;
    box-shadow: 0 0 30px #0ff, inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.target::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

.target.hidden {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.results {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid #0f0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
    z-index: 1000;
    min-width: 400px;
}

.results.hidden {
    display: none;
}

.results h2 {
    color: #0f0;
    text-shadow: 0 0 15px #0f0;
    margin-bottom: 20px;
    font-size: 2rem;
}

.results p {
    color: #0ff;
    font-size: 1.3rem;
    margin: 15px 0;
}

.rating {
    font-size: 1.5rem !important;
    color: #ff0 !important;
    text-shadow: 0 0 10px #ff0 !important;
    margin-top: 20px !important;
}

.btn {
    background: #000;
    border: 2px solid #0f0;
    color: #0f0;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .stats {
        gap: 15px;
    }

    .stat {
        font-size: 0.9rem;
    }

    .target-area {
        height: 400px;
    }

    #instructions {
        font-size: 1.2rem;
    }

    .target {
        width: 50px;
        height: 50px;
    }

    .results {
        min-width: 90%;
        padding: 30px 20px;
    }

    .results h2 {
        font-size: 1.5rem;
    }

    .results p {
        font-size: 1.1rem;
    }
}
