body{
    margin:0;
    height:100vh;
    background:black;
    font-family: 'Press Start 2P', monospace;
    color:white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.clicker{
    width: clamp(150px, 25vw, 300px);
    cursor:pointer;
    transition: transform 200ms ease, filter 200ms ease;
}

.clicker:hover{
    transform: scale(1.1);
    filter: brightness(1.2);
}

.counter{
    position: fixed;
    top:20px;
    left:20px;
    font-size:32px;
    color:white;
    text-shadow: 0 0 8px #fff, 0 0 12px #0ff;
}

.store {
    margin-top: 20px;
    background: #111;
    border: 2px solid #0ff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    width: clamp(200px, 50vw, 400px);
}

.store h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.item {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    padding: 6px;
    border: 1px solid #0ff;
    cursor: pointer;
    transition: background 200ms ease;
}

.item:hover {
    background: #0ff3;
}

/* Overlay cheat message */
.cheat-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
}

.cheat-message {
    color: #ff2f2f;
    font-size: 28px;
    text-align: center;
    padding: 20px;
    border: 3px solid #ff2f2f;
    border-radius: 8px;
    background: #111;
    text-shadow: 0 0 10px #ff2f2f;
}

.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup.hidden { display: none; }

.popup-content {
    background: #222;
    padding: 20px;
    border: 4px solid #0ff;
    border-radius: 12px;
    text-align: center;
    font-family: 'Press Start 2P', monospace;
    color: white;
    box-shadow: 0 0 15px #0ff;
}
.popup-content button {
    margin-top: 15px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
}

#discordInput {
    padding: 8px;
    font-size: 14px;
    width: 90%;
    max-width: 280px;
    border: 2px solid #0ff;
    border-radius: 6px;
    text-align: center;
    font-family: 'Press Start 2P', monospace;
}
#sendUser {
    margin-right: 10px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
}