/**
*
* @package phpBB Extension - PhpBB Countdown
* @copyright (c) 2015 dmzx - http://www.dmzx-web.net
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* @Author Stoker - http://www.phpbb3bbcodes.com
*
*/


.timecount {
    min-height: 32px;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    margin-top: 4px;
    position: relative;

    /* Frosted glass panel */
    background: rgba(20, 28, 36, 0.55);
    backdrop-filter: blur(6px);

    /* Neon border */
    border: 1px solid rgba(0, 153, 255, 0.35);
    border-radius: 6px;

    /* Outer glow */
    box-shadow:
        0 0 12px rgba(0, 153, 255, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, .15);

    margin-bottom: 6px;
    padding: 12px 20px;
    letter-spacing: 2px;
    font-family: 'Eurostile', 'Bank Gothic', sans-serif;
    overflow: hidden;
}

/* Subtle scanline texture */
.timecount::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
}

/* Countdown digits */
span.cd-time {
    color: #76DDFF;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(118, 221, 255, 0.9);
    transition: transform 0.15s ease;
}

/* Pulse effect on seconds */
span.cd-time:last-child {
    animation: bf6pulse 1s infinite;
}

@keyframes bf6pulse {
    0%   { text-shadow: 0 0 8px rgba(118,221,255,0.8); }
    50%  { text-shadow: 0 0 16px rgba(118,221,255,1); }
    100% { text-shadow: 0 0 8px rgba(118,221,255,0.8); }
}
