/* --- CUSTOM STYLES FÜR NYROX (ID 1) --- */

/* 1. Name & Leuchten */
.u1, .user1, [data-id="1"] {
    color: #ff00ea !important; /* Pinker Admin-Look */
    font-weight: bold !important;
    text-shadow: 0 0 10px rgba(255, 0, 234, 0.6) !important;
    position: relative;
    animation: adminGlow 2s ease-in-out infinite alternate;
}

/* 2. Verifizierter blauer Haken */
.u1::after, .user1::after {
    content: ' \f058'; /* FontAwesome Haken */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #1DA1F2;
    margin-left: 5px;
    font-size: 0.9em;
    display: inline-block;
    vertical-align: middle;
    text-shadow: none !important;
}

/* 3. Animierter Avatar (Glow-Ring) */
.u1 img, .user1 img {
    border: 2px solid #ff00ea !important;
    box-shadow: 0 0 8px #ff00ea !important;
    transition: transform 0.3s ease;
}

.u1 img:hover, .user1 img:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Animation für das Namens-Glühen */
@keyframes adminGlow {
    from { text-shadow: 0 0 5px #ff00ea; }
    to { text-shadow: 0 0 15px #ff00ea, 0 0 25px #ff00ea; }
}