/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:	LeagueOfLegends 
	Based on style:
	Original author: NecheB © phpBB Bulgaria ( https://www.phpbb-bg.info/ )
	Modified by:		
    --------------------------------------------------------------
*/

@import url("normalize.css?hash=48eb3f89");
@import url("base.css?hash=7c5543be");
@import url("utilities.css?hash=d8f72c42");
@import url("common.css?hash=a9741ba1");
@import url("links.css?hash=18286e16");
@import url("content.css?hash=be57a41d");
@import url("buttons.css?hash=56f0d25f");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=b64464fb");
@import url("icons.css?hash=64da33ce");
@import url("colours.css?hash=fcb2f289");
@import url("responsive.css?hash=87b53e08");
@import url("custom.css");

/* Forza l'effetto sbalzo sulle categorie e sezioni nella skin League of Legends */
.forumlist li.row, 
ul.forums li.row {
    display: block !important;
    position: relative !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s ease !important;
}

.forumlist li.row:hover, 
ul.forums li.row:hover {
    transform: translateY(-4px) !important; /* Sposta la riga verso l'alto */
    box-shadow: 0 5px 15px #1d3037 !important; /* Ombra scura adatta allo stile di LoL */
    z-index: 10 !important; /* Evita che la riga finisca sotto ad altri elementi durante lo sbalzo */
}