        /* Styles pour les albums */
        .albums-container { display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0; }
        .album-item { width: 200px; text-align: center; }
        .album-thumbnail { width: 100%; height: 200px; object-fit: contain; background: #f8f9fa; margin-bottom: 8px; display: block; }
        .album-thumbnail.no-photo { display: flex; align-items: center; justify-content: center; }
        .album-thumbnail.no-photo i { color: #ccc; font-size: 48px; }
        .album-title { font-size: 12px; color: #007bff; margin: 0 0 10px 0; }
        .album-link { text-decoration: none; color: inherit; display: block; }
        .btn-view-album { display: block; background: #007bff; color: white; padding: 8px 16px; border-radius: 4px; font-size: 12px; margin-top: 5px; text-decoration: none; border: none; cursor: pointer; transition: background-color 0.3s; }
        .btn-view-album:hover { background: #0056b3; }
        .erotique-badge { display: inline-block; background-color: #ffc107; color: #856404; padding: 2px 6px; border-radius: 3px; font-size: 0.7em; margin-left: 5px; cursor: default; opacity: 0.7; }
        .protected-badge { display: inline-block; background-color: #dc3545; color: white; padding: 2px 6px; border-radius: 3px; font-size: 0.7em; margin-left: 5px; }

        /* Bouton Retour au profil */
        .back-link {
            display: inline-flex;
            align-items: center;
            background-color: #f8f9fa;
            color: #007bff;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .back-link:hover {
            background-color: #e9ecef;
            color: #0056b3;
            text-decoration: none;
        }
        .back-link i {
            margin-right: 8px;
        }

        /* Modal pour la demande de code */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 20px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            animation: modalopen 0.3s;
        }

        @keyframes modalopen {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }

        .modal-header {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
            text-align: center;
        }

        .modal-header h3 {
            color: #721c24;
            margin: 0;
        }

        .modal-body {
            padding: 10px 0;
            text-align: center;
            color: #333;
        }

        .modal-footer {
            padding: 15px 0 0 0;
            text-align: center;
        }

        .password-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .password-input {
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 16px;
            width: 100%;
            box-sizing: border-box;
        }

        .password-submit {
            background-color: #28a745;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }

        .password-submit:hover {
            background-color: #218838;
        }

        .password-error {
            color: #dc3545;
            margin-top: 10px;
            font-weight: bold;
            text-align: center;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #000;
        }

        /* Footer */
        .footer {
            padding: 15px 0;
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
            margin-top: 10px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer p {
            margin: 5px 0;
            color: #666;
            font-size: 0.85rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin: 10px 0;
        }

        .social-links a {
            color: #666;
            font-size: 1.2rem;
            transition: color 0.2s;
        }

        .social-links a:hover {
            color: #3498db;
        }
