/*  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");

/* ========================================
   NAVBAR STYLE LECTEUR - Sport et Passion
   ======================================== */

.navbar-custom {
    background: #000000;
    border: 3px solid #00bfff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.6),
        0 0 40px rgba(0, 191, 255, 0.3),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    margin: 10px auto;
    max-width: 100%;
}

.navbar-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 191, 255, 0.3), 
        transparent
    );
    animation: borderShine 3s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes borderShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-left-custom,
.nav-right-custom {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.nav-item-custom {
    position: relative;
    padding: 15px 22px;
    color: #00bfff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    border-right: 1px solid rgba(0, 191, 255, 0.2);
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.8);
}

.nav-item-custom:last-child {
    border-right: none;
}

.nav-item-custom:hover {
    background: rgba(0, 191, 255, 0.15);
    color: #ffffff;
    text-shadow: 
        0 0 10px #00bfff,
        0 0 20px #00bfff,
        0 0 30px #00bfff;
    box-shadow: inset 0 0 20px rgba(0, 191, 255, 0.2);
}

.nav-item-custom i {
    font-size: 16px;
    filter: drop-shadow(0 0 5px currentColor);
    transition: all 0.3s ease;
}

.nav-item-custom:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px currentColor);
}

.badge-custom {
    background: #ff0000;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 6px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.8),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
    animation: livePulse 1.5s infinite;
    letter-spacing: 1px;
}

@keyframes livePulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), inset 0 0 5px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 0, 0, 1), inset 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

.nav-item-custom.active {
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.2), rgba(0, 191, 255, 0.1));
    color: #ffffff;
    text-shadow: 
        0 0 10px #00bfff,
        0 0 20px #00bfff;
    box-shadow: 
        inset 0 0 20px rgba(0, 191, 255, 0.3),
        inset 0 -3px 0 #00bfff;
}

.nav-item-custom.active::before {
    content: '?';
    position: absolute;
    left: 8px;
    font-size: 10px;
    color: #00bfff;
    animation: playIcon 1s infinite;
}

@keyframes playIcon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.nav-item-custom.user-custom {
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.25), rgba(0, 191, 255, 0.15));
    border: 2px solid #00bfff;
    border-radius: 8px;
    margin: 4px 4px 4px 8px;
    padding: 12px 20px;
    box-shadow: 
        0 0 15px rgba(0, 191, 255, 0.5),
        inset 0 0 10px rgba(0, 191, 255, 0.2);
}

.nav-item-custom.user-custom:hover {
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.35), rgba(0, 191, 255, 0.25));
    transform: translateY(-2px);
    box-shadow: 
        0 0 25px rgba(0, 191, 255, 0.7),
        inset 0 0 15px rgba(0, 191, 255, 0.3);
}

.nav-item-custom.user-custom i {
    color: #00bfff;
    filter: drop-shadow(0 0 8px #00bfff);
}

.crown-custom {
    font-size: 18px;
    margin-left: 8px;
    display: inline-block;
    animation: crownFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #ffd700);
}

@keyframes crownFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 10px #ffd700);
    }
    50% { 
        transform: translateY(-3px) scale(1.1);
        filter: drop-shadow(0 0 15px #ffd700) drop-shadow(0 0 20px #ffd700);
    }
}

.scan-line-custom {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00bfff, transparent);
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-custom {
        flex-direction: column;
    }

    .nav-left-custom,
    .nav-right-custom {
        width: 100%;
    }

    .nav-item-custom {
        border-right: none;
        border-bottom: 1px solid rgba(0, 191, 255, 0.2);
        justify-content: center;
    }

    .nav-item-custom.user-custom {
        margin: 8px;
    }
}
