/* 🔥 container */
.podium-real {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
}

/* immagine podio */
.podium-base {
    width: 100%;
    display: block;
}

/* 🔥 slot */
.podium-slot {
    position: absolute;
    transform: translate(-50%, -100%);
    text-align: center;
}

/* 🎯 POSIZIONI REALI (dentro 0–100%) */

/* 🥇 centro */
.pos-1 {
    left: 50%;
    bottom: 25%;
}

/* 🥈 sinistra */
.pos-2 {
    left: 17%;
    bottom: 12%;
}

/* 🥉 destra */
.pos-3 {
    left: 83%;
    bottom: 22%;
}

/* 🔥 link wrapper */
.podium-slot a {
    position: relative;
    display: inline-block;
}

/* 🔥 immagini */
.podium-slot img {
    width: 100%;
    max-width: 120px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

/* gerarchia */
.pos-1 img {
    max-width: 140px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.pos-2 img,
.pos-3 img {
    max-width: 110px;
}

/* hover */
.podium-slot img:hover {
    transform: scale(1.06);
}

/* 🔥 titolo sopra */
.podium-slot p {
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;

    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 🏆 badge */
.podium-slot .rank {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    background: gold;
    color: black;
}

/* colori */
.pos-2 .rank {
    background: #c0c0c0;
}

.pos-3 .rank {
    background: #cd7f32;
}

/* hover */
.podium-slot img:hover {
    transform: scale(1.08);
}

/* 🔥 TITOLO sopra */
.podium-slot p {
    position: absolute;
    bottom: 105%;
    /* sopra l'immagine */
    left: 50%;
    transform: translateX(-50%);

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;

    width: 120px;

    /* clamp vero */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 🏆 badge */
.podium-slot .rank {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    background: gold;
    color: black;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 8px;
    z-index: 999;

}

/* colori diversi */
.pos-2 .rank {
    background: #c0c0c0;
}

.pos-3 .rank {
    background: #cd7f32;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-sub {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    font-size: 13px;
    color: #94a3b8;
    opacity: 0.8;
    margin-top: 10px;

}

.anime-meta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    font-size: 12px;
    color: #32b4db;
}








.show-more {
    padding: 10px 15px;
    border-radius: 999px;

    border: 1px solid rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);

    color: #0f172a;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);

    transition: all 0.25s ease;
}

.show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 20px rgba(56, 189, 248, 0.6);
}

.show-more:active {
    transform: scale(0.95);
}


.anime-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* spazio tra i podi */
    padding-top: 0px;
}

.anime-list>div {
    background: radial-gradient(circle at center, #1f315a, #020929);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}


.anime-list h3 {

    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;

    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #38bdf8;
    text-align: center;
}

.anime-list a {
    text-decoration: none;
}

h2 {
    text-align: center;
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

    margin-top: 50px;
    margin-bottom: 100px;
}

.podio-completed,
.podio-watching,
.podio-plan,
.podio-dropped,
.podio-favorite {
    width: 100%;
}















@media (max-width: 768px) {

    .pos-1 {
        bottom: 15%;
    }

    .pos-2 {
        left: 17%;
        bottom: 12%;
    }

    .pos-3 {
        left: 83%;
        bottom: 21%;
    }

    .pos-1 img {
        max-width: 100px;
    }

    .pos-2 img,
    .pos-3 img {
        max-width: 60px;
    }

    /* 🔥 TITOLO */
    .podium-slot p {
        width: 75px;
        font-size: 10px;
    }

    /* 🔥 FIX SOVRAPPOSIZIONE BADGE */
    .podium-slot .rank {
        top: -50px;
        /* 👈 prima era troppo alto */
        font-size: 10px;
        padding: 2px 6px;
    }

    /* 🔥 HEADER spacing */
    h2 {
        margin-bottom: 30px;
    }

    .section-sub {
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .anime-meta {
        font-size: 10px;
        width: 90px;
    }




    .podium-real {
        margin-top: 150px;
        /* 👈 aumenta spazio sopra */
    }


}