/* Floating Shop Button (above Forum Button) */
.rightshop-button {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 10;
    display: block;
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #00ffcc;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffcc, 0 0 20px #ff00cc;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s ease;
    overflow: hidden; /* adăugat */
    box-sizing: border-box; /* adăugat */
}

.rightshop-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 0 3px #ffff00);
    padding: 8%;
    box-sizing: border-box;
}

.rightshop-button:hover {
    transform: scale(1.1);
    border-color: #ffff00;
    box-shadow: 0 0 15px #ffff00, 0 0 30px #00ffcc;
}



/* Floating Pokemon Button */
.poke-button {
    position: fixed;
    bottom: 160px;
    right: 30px;
    z-index: 10;
    display: block;
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #ff00cc;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffcc, 0 0 20px #ff00cc;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s ease;
    overflow: hidden; /* adăugat */
    box-sizing: border-box; /* adăugat */
}

.poke-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1; /* opțional, pentru uniformitate */
    filter: drop-shadow(0 0 3px #00ffcc);
    padding: 8%; /* pentru a compensa eventuale diferențe vizuale */
    box-sizing: border-box;
}

.poke-button:hover {
    transform: scale(1.1);
    border-color: #ffff00;
    box-shadow: 0 0 15px #ffff00, 0 0 30px #ff00cc;
}



/* Floating Forum Button */
.forum-button {
    position: fixed;
    bottom: 240px;
    right: 30px;
    z-index: 10;
    display: block;
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #00ffcc;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffcc, 0 0 20px #ff00cc;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s ease;
    overflow: hidden; /* adăugat */
    box-sizing: border-box; /* adăugat */
}

.forum-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 0 3px #ffff00);
    padding: 8%;
    box-sizing: border-box;
}

.forum-button:hover {
    transform: scale(1.1);
    border-color: #ffff00;
    box-shadow: 0 0 15px #ffff00, 0 0 30px #00ffcc;
}



/* Floating MyAccount Button */
.MyAccount-button {
    position: fixed;
    bottom: 320px;
    right: 30px;
    z-index: 10;
    display: block;
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #ff00cc;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffcc, 0 0 20px #ff00cc;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s ease;
    overflow: hidden; /* adăugat */
    box-sizing: border-box; /* adăugat */
}

.MyAccount-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1; /* opțional, pentru uniformitate */
    filter: drop-shadow(0 0 3px #00ffcc);
    padding: 8%; /* pentru a compensa eventuale diferențe vizuale */
    box-sizing: border-box;
}

.MyAccount-button:hover {
    transform: scale(1.1);
    border-color: #ffff00;
    box-shadow: 0 0 15px #00ffcc, 0 0 20px #ff00cc;
}
