.aliases-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 0 2rem;
        }

        .aliases-hero {
            background: linear-gradient(140deg, rgba(223, 213, 235, 0.8), rgba(255, 255, 255, 0.95));
            border: 1px solid rgba(110, 48, 113, 0.3);
            border-radius: 16px;
            padding: 1.2rem;
            box-shadow: var(--ombre-legere);
            margin-bottom: 1rem;
        }

        .aliases-hero h1 {
            border: none;
            text-align: left;
            margin: 0.2rem 0 0.4rem;
            padding: 0;
        }

        .aliases-hero p {
            margin: 0;
        }

        .aliases-table-wrapper {
            background: #fff;
            border: 1px solid rgba(137, 134, 147, 0.45);
            border-radius: 14px;
            box-shadow: var(--ombre-legere);
            overflow: auto;
        }

        .aliases-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }

        .aliases-table th,
        .aliases-table td {
            border-bottom: 1px solid rgba(137, 134, 147, 0.28);
            padding: 0.72rem 0.8rem;
            text-align: left;
            vertical-align: top;
            font-size: 0.93rem;
        }

        .aliases-table th {
            background: rgba(110, 48, 113, 0.1);
            color: var(--couleur-coeur-mystique);
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .aliases-table tbody tr:hover {
            background: rgba(223, 213, 235, 0.28);
        }

        .aliases-table td:first-child,
        .aliases-table th:first-child {
            width: 19%;
        }

        .aliases-table td:nth-child(2),
        .aliases-table th:nth-child(2) {
            width: 16%;
            font-weight: 600;
            color: var(--couleur-coeur-mystique);
        }

        .aliases-table td:nth-child(3),
        .aliases-table th:nth-child(3) {
            width: 19%;
        }

        .aliases-table td:nth-child(4),
        .aliases-table th:nth-child(4) {
            width: 16%;
        }

        .aliases-table td:nth-child(5),
        .aliases-table th:nth-child(5) {
            width: 30%;
        }

        .aliases-note {
            margin-top: 0.7rem;
            font-size: 0.88rem;
            color: rgba(47, 48, 49, 0.76);
        }

        .aliases-tag {
            display: inline-block;
            border-radius: 999px;
            border: 1px solid rgba(110, 48, 113, 0.3);
            background: rgba(223, 213, 235, 0.46);
            color: var(--couleur-coeur-mystique);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            padding: 0.2rem 0.55rem;
            margin-bottom: 0.45rem;
        }

        @media (max-width: 700px) {
            .aliases-main {
                padding-top: 0.2rem;
            }

            .aliases-hero {
                padding: 1rem;
            }
        }