/* ===== mentions-modern.css ===== */

/* Page Background */
body#mentions {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* Page Title */
.page-title {
    max-width: 1200px;
    margin: 3rem auto 1rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Container */
.container-modern {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Card Modern */
.card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

/* Mentions Content */
.mentions-content {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
}

.mentions-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #3b82f6;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    padding-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.mentions-content h2:first-child {
    margin-top: 0;
}

.mentions-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: #06b6d4;
    font-size: 1.1rem;
    font-weight: 700;
}

.mentions-content p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.mentions-content strong {
    color: #e2e8f0;
    font-weight: 700;
}

.mentions-content a {
    color: #06b6d4;
    text-decoration: none;
    transition: all 0.2s;
}

.mentions-content a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.mentions-content ul {
    margin: 1rem 0 1rem 2rem;
    padding: 0;
}

.mentions-content li {
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

/* Credit Section */
.credit-mentions {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.credit-mentions a {
    color: #06b6d4;
}

/* Contact Info */
.contact-info {
    font-style: italic;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem 1rem;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    display: inline-block;
    margin: 1rem 0;
    color: #d1fae5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2rem;
    }

    .card-modern {
        padding: 1.5rem;
    }

    .mentions-content h2 {
        font-size: 1.25rem;
    }

    .mentions-content h3 {
        font-size: 1rem;
    }

    .mentions-content {
        font-size: 0.95rem;
    }

    .mentions-content ul {
        margin-left: 1.5rem;
    }
}