@font-face {
  font-family: "minecraft";
  src: url(/src/minecrafter.ttf);
}
@font-face {
  font-family: "minecraftmin";
  src: url(/src/Minecraftia-Regular.ttf);
}
body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; }

h1, a {
    font-family: 'minecraft';
}

p {
    font-family: 'minecraftmin';
}
        
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: black;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: teleportIn 1.2s ease-out forwards;
}

@keyframes teleportIn {
    0% { transform: scale(1.2); filter: blur(15px) brightness(2); opacity: 0; }
    100% { transform: scale(1); filter: blur(0) brightness(1); opacity: 1; }
}
.container a#back {
    top: 30px;
    left: 30px;
    position: absolute;
    background: rgba(0, 0, 0, 0.75); 
    color: #fff;  
    text-decoration: none;
    border: 4px solid #373737;      
    border-right-color: #1e1e1e;    
    border-bottom-color: #1e1e1e;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.3s ease;      
    cursor: pointer;
    }

.container a#back:hover {
transform: scale(1.02);        
border-color: green;         
background: rgba(0, 0, 0, 0.85);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.zone-title {
    position: absolute;
    bottom: 50px;
    right: 50px;
    color: white;
    text-align: right;
    text-shadow: 0 0 20px rgba(0,0,0,1);
}

.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* L'effet de pulsation (pulse) */
.hotspot-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Le label texte (caché par défaut) */
.hotspot-label {
    position: absolute;
    bottom: -35px; /* Placement sous le point */
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Effet au survol (Hover) */
.hotspot:hover .hotspot-label {
    opacity: 1;
    transform: translateY(0);
}

/* --- Placement des Points spécifiques --- */

.hotspot-multibiome {
    top: 60%;
    left: 4%;
}

.hotspot-farmend {
    top: 54%;
    left: 23%;
}

.hotspot-pvp {
    top: 47%;
    left: 41%;
}

.hotspot-is {
    top: 47%;
    left: 49%;
}

.hotspot-zonefarm {
    top: 47%;
    left: 57%;
}

.hotspot-farmnether {
    top: 54%;
    left: 73%;
}

.hotspot-bedwars {
    top: 60%;
    left: 90%;
}