/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			prosilver (the default phpBB 3.3.x style)
	Based on style:
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Limited ( https://www.phpbb.com/ )
    --------------------------------------------------------------
*/

@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");


/* BMC Button */

/* --- Botón Flotante BMC X-Trader --- */
.xtrader-bmc-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999; /* Por encima de todo */
    
    /* Diseño de la pastilla */
    background-color: #0173c5;
    color: #FFF; /* Texto negro para contraste */
    font-family: 'Inter', sans-serif; 
    font-weight: 700;
    font-size: 18px;
    
    /* Geometría */
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Sombra elegante */
    
    /* Comportamiento */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio entre icono y texto */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.xtrader-bmc-btn .bmc-icon {
    font-size: 20px; /* Icono un poco más grande */
}

/* Efecto Hover (Al pasar el ratón) */
.xtrader-bmc-btn:hover {
    transform: translateY(-5px) scale(1.02); /* Sube un poco y crece */
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); /* La sombra crece */
    color: #001431;
}

/* Animación de "Latido" suave para llamar la atención cada 5 segundos */
@keyframes bmc-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.xtrader-bmc-btn {
    animation: bmc-pulse 3s infinite ease-in-out;
    animation-delay: 2s; /* Espera 2s antes de empezar a latir */
}

/* Pausar animación al pasar el ratón para que no moleste */
.xtrader-bmc-btn:hover {
    animation: none;
}

/* --- Versión Móvil --- */
@media (max-width: 768px) {
    .xtrader-bmc-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 14px;
    }
    
    /* En móvil quitamos la animación de latido para ahorrar batería y no distraer */
    .xtrader-bmc-btn {
        animation: none;
    }
}