body {
    /* Fem servir la teva imatge de fons que ja tenim */
    background-image: url("../imgs/yeskay1211-hills-2836301_1920.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#home {
    position: fixed;
    top: 25px;
    left: 25px;
    height: 75px;
    width: 75px;
    border-radius: 100%;
    border: 3px solid #3A3A3A;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    opacity: 0.5;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#home:hover {
    transition: 0.3s ease;
    transform: scale(1.05);
    opacity: 1;
}
#home svg {
    width: 28px;
    height: 28px;
}

.interficie {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid #4CAF50;
}

.interficie p{
    font-size: 24px;
}

img{
    border-radius: 15px;
}

h1 { 
    color: #2e7d32; margin-top: 0; 
    font-size: 54px;
    text-transform: uppercase;
}

#puntuacio {
    font-size: 24px;
    font-weight: bold;
    color: #f57c00;
    margin-bottom: 15px;
}

canvas {
    background-color: #e3f2fd;
    border-radius: 15px;
    cursor: crosshair;
    display: block;
    max-width: 100%;
}

h2{
    font-size: 48px;
    text-transform: uppercase;
}

div.popup-contingut p{
    font-size: 24px;
    text-transform: uppercase;
}


#popup-victoria {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fons semitransparent */
    display: none; /* Amagat per defecte */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* La caixa blanca del missatge */
.popup-contingut {
    width: 30%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Classe que afegirem amb JS per mostrar-lo */
#popup-victoria.mostrar {
    display: flex;
}

#restart{
    width: 40%;
    background-color: #4CAF50; /* Verd bonic */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px; /* Bordes arrodonits */
    box-shadow: 0 6px #2e7d32; /* Ombra inferior per donar volum */
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#menu{
    width: 40%;
    background-color: #ec9914; /* Verd bonic */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px; /* Bordes arrodonits */
    box-shadow: 0 6px #855303; /* Ombra inferior per donar volum */
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}