/*  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=843d5d5f");
@import url("links.css?hash=18286e16");
@import url("content.css?hash=d0e24377");
@import url("buttons.css?hash=56f0d25f");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=9016b55c");
@import url("icons.css?hash=64da33ce");
@import url("colours.css?hash=fcb2f289");
@import url("responsive.css?hash=c9d32cba");
@import url("custom.css");

.logo {
    background-image: url('./images/phpbb_logo.png'); /* Cambia esto por la ruta real */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 500px;
    height: 150px;

    animation: glowLogo 2.5s ease-in-out infinite alternate;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 174, 255, 0.6);
    border-radius: 10px;
}


/* Animación glow */
@keyframes glowLogo {
    0% {
        box-shadow: 0 0 10px rgba(0, 174, 255, 0.4), 0 0 20px rgba(0, 174, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 174, 255, 0.9), 0 0 45px rgba(0, 174, 255, 0.7);
    }
}