.mentions-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.mentions-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.mentions-wrapper {
    padding: 140px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-white);
}

.mentions-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.mentions-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mentions-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mentions-block:hover {
    border-color: rgba(192, 192, 192, 0.3);
}

.mentions-block h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.mentions-block h2 svg {
    flex-shrink: 0;
    color: var(--silver);
}

.mentions-block p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.mentions-block p:last-child {
    margin-bottom: 0;
}

.mentions-block strong {
    color: var(--text-white);
}

.mentions-block a {
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mentions-block a:hover {
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.mentions-update {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 60px;
    font-style: italic;
}

/* BOUTON DOCUMENTATION */
.mentions-doc-btn {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.btn-doc {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: transparent;
    border: 2px solid var(--silver);
    border-radius: 50px;
    color: var(--silver);
    font-family: var(--font-title);
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-doc:hover {
    background: var(--silver);
    color: var(--bg-black);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.4);
    transform: translateY(-3px);
}

.btn-doc svg {
    transition: transform 0.3s ease;
}

.btn-doc:hover svg {
    transform: rotate(360deg);
}

.footer-portfolio {
    background: var(--bg-black);
    padding: 80px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.footer-col {
    text-align: center;
}

.footer-logo-col {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    padding-left: 40px;
}

.footer-logo {
    width: 170px;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.4));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.07);
    filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.6));
}

.footer-heading {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links .active {
    color: var(--silver);
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-legal a {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover,
.footer-legal a.active {
    color: var(--silver);
}

@media (max-width: 768px) {
    .mentions-wrapper {
        padding: 120px 20px 60px;
    }

    .mentions-title {
        font-size: 1.8rem;
    }

    .mentions-block {
        padding: 25px 20px;
    }

    .mentions-block h2 {
        font-size: 1.1rem;
    }

    .mentions-block p {
        font-size: 1rem;
    }

    .btn-doc {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-logo-col {
        justify-content: center;
        padding-left: 0;
    }
}

/* EMAIL PROTÉGÉ INLINE */
.email-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.email-blur {
    filter: blur(4px);
    user-select: none;
    transition: all 0.3s ease;
}

.email-blur.revealed {
    filter: blur(0);
    color: var(--silver);
    user-select: text;
}

.btn-reveal-email-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: transparent;
    border: 1px solid var(--silver);
    border-radius: 15px;
    color: var(--silver);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reveal-email-inline:hover {
    background: var(--silver);
    color: var(--bg-black);
}

.btn-reveal-email-inline.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* MODAL CAPTCHA */
.captcha-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.captcha-modal.active {
    opacity: 1;
    visibility: visible;
}

.captcha-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--silver);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.captcha-modal.active .captcha-content {
    transform: scale(1);
}

.captcha-content h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--silver);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.captcha-content > p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.captcha-question {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.captcha-content input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    outline: none;
    transition: all 0.3s ease;
}

.captcha-content input:focus {
    border-color: var(--silver);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.captcha-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-captcha-cancel,
.btn-captcha-submit {
    padding: 12px 25px;
    border-radius: 25px;
    font-family: var(--font-title);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-captcha-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-gray);
}

.btn-captcha-cancel:hover {
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-captcha-submit {
    background: var(--silver);
    border: none;
    color: var(--bg-black);
}

.btn-captcha-submit:hover {
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    transform: translateY(-2px);
}

.captcha-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 15px;
}

.captcha-attempts {
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
}

/* MODAL BLOQUÉ */
.blocked-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.blocked-modal.active {
    opacity: 1;
    visibility: visible;
}

.blocked-content {
    background: rgba(30, 0, 0, 0.95);
    border: 2px solid #ff6b6b;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.blocked-content svg {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.blocked-content h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blocked-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-blocked-close {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #ff6b6b;
    border-radius: 25px;
    color: #ff6b6b;
    font-family: var(--font-title);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-blocked-close:hover {
    background: #ff6b6b;
    color: var(--bg-black);
}