body { 
    font-family: 'Segoe UI', sans-serif; 
    background-color: #fff0f6;
    color: #ad1457;
    margin: 0;
    display: flex;
    justify-content: center;
}

.main-wrapper {
    width: 90%;
    max-width: 900px;
    text-align: center;
    padding-top: 30px;
}

h1 {
    font-size: 2.2rem;
    text-shadow: 2px 2px #f8bbd0;
    margin-bottom: 20px;
}

.glass-panel {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #f06292;
    box-shadow: 0 10px 20px rgba(240, 98, 146, 0.2);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

select {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #f48fb1;
    font-size: 1rem;
    color: #880e4f;
    outline: none;
}

button {
    padding: 15px 40px;
    background-color: #f06292;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #e91e63;
    transform: scale(1.05);
}

.info-row {
    justify-content: space-around;
    padding: 15px;
}

.stat {
    font-size: 1.5rem;
    font-weight: bold;
}

#game-field { 
    position: relative; 
    width: 100%; 
    height: 500px; 
    background: #fff; 
    border-top: 4px solid #f06292;
    border-radius: 20px;
    overflow: hidden;
    display: none; 
    box-shadow: inset 0 0 15px rgba(240, 98, 146, 0.1);
}

#pixel {
    position: absolute;
    cursor: pointer;
    display: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
