Magic world
Здесь вы можете ознакомиться
с населением магической Британии
Серым цветом обозначены свободные роли, которые вы можете занять
Черным цветом обозначены персонажи в игре
mb - маглорожденный
pb - чистокровный
hb - полукровкаde - пожиратели смерти
op - орден феника
ne - нейтралитетMM - Министерство магии
St M - Больница Св. Мунго
DA - Косой переулок
KA - Лютный переулок
Media - СМИ
Q - Квиддич
H - Хогвартс
Hogs - Хогсмид
Az - Азкабан
MBr - Магическая Британия
[html]
<style>
.tabs {
margin-bottom: 20px;
display: flex;
justify-content: center;
}
.tab-button {
background-color: #999;
color: white;
padding: 10px 20px;
margin: 5px;
border: none;
border-radius: 20px;
cursor: pointer;
}
.tab-button.active {
background-color: #5a3870;
}
#filter-block {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 5px;
margin-bottom: 20px;
}
}
.filters select, .filters button {
margin: 1px;
padding: 5px 5px;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.character-list {
display: flex;
justify-content: space-around;
margin-top: 20px;
text-align: left;
}
.group {
max-width: 300px;
}
.letter-block {
margin: 15px 0;
}
.char-card {
margin-bottom: 10px;
}
.tags {
font-size: 0.8em;
color: grey;
}
table {
margin: 0 auto;
border-collapse: collapse;
width: 60%;
}
table, th, td {
border: 1px solid #ccc;
}
th, td {
padding: 8px 12px;
}
.centered-text {
text-align: center;
margin: 20px auto;
line-height: 1.6;
font-size: 16px;
max-width: 600px;
}
@media (max-width: 768px) {
.tabs {
flex-direction: column;
align-items: center;
overflow-y: auto;
}
.tab-button {
width: 90%;
font-size: 12px;
}
#filter-block {
flex-direction: column;
align-items: center;
}
.filters select, .filters button {
width: 100%;
}
.character-list {
flex-direction: column;
align-items: center;
}
.tab-content {
max-height: 100vh;
overflow-y: auto;
padding-bottom: 600px; /* Чтобы не обрезался нижний контент */
}
.group {
max-width: 100%;
height: auto !important;
max-height: none !important;
overflow: visible !important;
}
.letter-block h3 {
font-size: 12px;
}
.char-card {
font-size: 12px;
}
table {
width: 100%;
font-size: 12px;
}
.tags {
font-size: 12px;
}}
</style>
<div class="tabs">
<button class="tab-button active" onclick="switchTab('characters', this)">Список персонажей</button>
<button class="tab-button" onclick="switchTab('faces', this)">Занятые внешности</button>
<button class="tab-button" onclick="switchTab('names', this)">Занятые имена</button>
</div>
<!-- Фильтры только в первой вкладке -->
<div id="filter-block" class="filters">
<button onclick="resetFilters()">Все</button>
<select id="statusFilter">
<option value="">Статус</option>
<option value="active">В игре</option>
<option value="free">Свободный персонаж</option>
</select>
<select id="ageFilter">
<option value="">Фракция</option>
<option value="op">Орден феникса</option>
<option value="de">Пожиратели смерти</option>
<option value="ne">Нейтралитет</option>
<option value="mm">Министерство Магии</option>
</select>
<select id="jobFilter">
<option value="">Работа</option>
<option value="MM">Министерство магии</option>
<option value="St M">Больница Св. Мунго</option>
<option value="DA">Косой переулок</option>
<option value="KA">Лютный переулок</option>
<option value="Media">СМИ</option>
<option value="Q">Квиддич</option>
<option value="H">Хогвартс</option>
<option value="Hogs">Хогсмид</option>
<option value="Az">Азкабан</option>
<option value="MBr">Магическая Британия</option>
</select>
<select id="gradYearFilter">
<option value="">Год окончания</option>
<option value="38">38</option>
<option value="39">39</option>
<option value="40">40</option>
<option value="41">41</option>
<option value="42">42</option>
<option value="43">43</option>
<option value="44">44</option>
<option value="45">45</option>
<option value="46">46</option>
<option value="47">47</option>
<option value="48">48</option>
<option value="49">49</option>
<option value="50">50</option>
<option value="51">51</option>
<option value="52">52</option>
<option value="53">53</option>
<option value="54">54</option>
<option value="55">55</option>
<option value="56">56</option>
<option value="57">57</option>
<option value="58">58</option>
<option value="59">59</option>
<option value="60">60</option>
<option value="61">61</option>
<option value="62">62</option>
<option value="63">63</option>
<option value="64">64</option>
<option value="65">65</option>
<option value="66">66</option>
<option value="67">67</option>
<option value="68">68</option>
<option value="69">69</option>
<option value="70">70</option>
<option value="71">71</option>
<option value="72">72</option>
<option value="73">73</option>
<option value="74">74</option>
<option value="75">75</option>
<option value="76">76</option>
<option value="77">77</option>
<option value="78">78</option>
<option value="79">79</option>
<option value="80">80</option>
</select>
<select id="bloodFilter">
<option value="">Чистота крови</option>
<option value="pb">Чистокровный</option>
<option value="mb">Магглорождённый</option>
<option value="hb">Полукровка</option>
</select>
</div>
<!-- Вкладка 1 -->
<!-- Вкладка 1: полностью переписанный и исправленный контент -->
<div id="characters" class="tab-content active">
<div class="character-list">
<!-- Женские персонажи -->
<div class="group">
<h3>Female</h3>
<div class="letter-block">
<h3><b><span style="color:gray">А - I</span></b></h3><br>
<div class="char-card" data-age="ne" data-job=" " data-grad="58" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=75" target="_blank"><strong>Avery, Alexandrite</strong></a> — 39, pb, ne, Hogwarts, H'58
<div class="tags">Попечительница благотворительного фонда</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="80" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=99" target="_blank"><strong>Avery, Neftida</strong></a> — 17, pb, ne, Hogwarts, S'80
<div class="tags">Студентка, Слизерин, 7 курс</div>
</div>
<div class="char-card" data-age="mm" data-job="MM" data-grad="47" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=72" target="_blank"><strong>Black, Druella</strong></a> — 50, pb, mm, Hogwarts, S'47
<div class="tags">MM, глава департамента международного магического сотрудничества</div>
</div>
<div class="char-card" data-age="ne" data-job="MM" data-grad="43" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=89" target="_blank"><strong>Black, Walburga</strong></a> — 54, pb, ne, Hogwarts, S'43
<div class="tags">MM, зам.главы Отдела Тайн</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=67" target="_blank"><strong>Edgecombe, Enid</strong></a> — 19, hb, op, Hogwarts, G'78
<div class="tags">Стажер в отделе обеспечения магического правопорядка</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad=" " data-blood=" " data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=53" target="_blank"><strong>Evans, Petunia</strong></a> — 21, muggle
<div class="tags">Секретарь-машинистка в компании Граннингс</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="58" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/viewtopic.php?id=107#p25110" target="_blank"><strong>Fawley, Orla</strong></a> — 40, pb, Hogwarts, H'58
<div class="tags">Работает в заповеднике. <br><span style="color:teal">#маска</span></div>
</div>
<div class="char-card" data-age="de" data-job="KA" data-grad="76" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=30" target="_blank"><strong>Fay, Artemis</strong></a> — 21, hb, de, Hogwarts, R'76
<div class="tags">Барменша в «Белой виверне»</div>
</div>
<div class="char-card" data-age="ne" data-job="MM" data-grad="77" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?section=view&id=83" target="_blank"><strong>Gore, Erida</strong></a> — 20, pb, ne, Hogwarts, R'77
<div class="tags">MM, стжер отдела магического правопорядка</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=15" target="_blank"><strong>Green, Olivia</strong></a> — 23, hb, op, Hogwarts, G'78
<div class="tags">MM, аврор</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="72" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=47" target="_blank"><strong>Greengrass, Cassia</strong></a> — 25, pb, MBr, Hogwarts, S'72
<div class="tags">Герболог</div>
</div>
<div class="char-card" data-age="mm" data-job="St M" data-grad="79" data-blood="mb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=4" target="_blank"><strong>Harland, Rose</strong></a> — 18, mb, mm, Hogwarts, H'79
<div class="tags">St M, этаж «Недуги от заклятий», колдомедик-стажёр<br><span style="color:teal">#маска</span></div>
</div>
</div>
<div class="letter-block">
<h3><b><span style="color:gray">J - Q</span></b></h3><br>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=39" target="_blank"><strong>Macdonald, Mary</strong></a> — 19, hb, op, Hogwarts, G'78
<div class="tags">MM, стажер в министерстве магии</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad=" " data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=87" target="_blank"><strong>Macnair, Tessa</strong></a> — 27, pb, ne, Beauxbatons
<div class="tags">Охотница на опасных магических тварей, драконоборец</div>
</div>
<div class="char-card" data-age="op" data-job="Hogs" data-grad="77" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=35" target="_blank"><strong>Macnair, Virsavia</strong></a> — 20, pb, op, G'77
<div class="tags">Официантка в кафе мадам Паддифут<br><span style="color:teal">#маска</span></div>
</div>
<div class="char-card" data-age="ne" data-job="" data-grad="73" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=74" target="_blank"><strong>Malfoy, Narcissa</strong></a> — 24, pb, ne, Hogwarts, S'73
<div class="tags">Светская леди</div>
</div>
<div class="char-card" data-age="op" data-job="H" data-grad="54" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=77" target="_blank"><strong>McGonagall, Minerva</strong></a> — 43, hb, op, Hogwarts, G'54
<div class="tags">H, Хогвартс, заместитель директора, декан Гриффиндора, преподаватель трансфигурации</div>
</div>
<div class="char-card" data-age="de" data-job=" " data-grad="47" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=113" target="_blank"><strong>Meliflua, Araminta</strong></a> — 50, pb, de, Hogwarts, S'47
<div class="tags">ММ, Руководитель Международного бюро магического законодательства</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=73" target="_blank"><strong>Milligan, Judith</strong></a> — 19, hb, op, Hogwarts, R'78
<div class="tags">MM, стажер в Отделе тайн</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="76" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=69" target="_blank"><strong>Mulciber, Aurora</strong></a> — 21, pb, ne, Hogwarts, S'76
<div class="tags">художница</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="74" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=85" target="_blank"><strong>Mulciber, Lavinia</strong></a> — 23, pb, ne, Hogwarts, S'74
<div class="tags">ММ, сотрудница бюро магического законодательства</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="51" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=76" target="_blank"><strong>Mulciber, Olivin Eleanor</strong></a> — 28 (dead), pb, Hogwarts, H'51
<div class="tags">Домохозяйка, умерла в 61 году <br><span style="color:teal">#маска #dead</span></div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="59" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=117" target="_blank"><strong>Nott, Teodora</strong></a> — 38, pb, ne, Hogwarts, S'59
<div class="tags">балерина на пенсии</div>
</div>
<div class="char-card" data-age="ne" data-job=" " data-grad="80" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=105" target="_blank"><strong>Padgett, Cassandra</strong></a> — 19, pb, ne, Hogwarts, H'80
<div class="tags">вассал дома Гринграсс</div>
</div>
<div class="char-card" data-age="de" data-job="St M" data-grad="77" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=56" target="_blank"><strong>Parkinson, Priscilla</strong></a> — 20, pb, de, Hogwarts, S'77
<div class="tags">St M, стажерка в Мунго</div>
</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="mb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=54" target="_blank"><strong>Potter, Lily</strong></a> — 19, mb, op, Hogwarts, G'78
<div class="tags">MM, стажерка в аврорате</div>
</div>
<div class="letter-block">
<h3><b><span style="color:gray">R - Z</span></b></h3><br>
<div class="char-card" data-age="ne" data-job="MBr" data-grad="55" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=64" target="_blank"><strong>Rosier, Beatrice</strong></a> — 42, pb, ne, Beauxbatons'55
<div class="tags">художница, коллекционер<br></div>
</div>
<div class="char-card" data-age="ne" data-job="MBr" data-grad="47" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=135" target="_blank"><strong>Rosier, Yvette</strong></a> — 49, pb, ne, Beauxbatons'47
<div class="tags">Частный журналист<br></div>
</div>
<div class="char-card" data-age="ne" data-job="H" data-grad="54" data-blood="mb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=115" target="_blank"><strong>Sprout, Pomona</strong></a> — 42, mb, ne, Hogwarts H'54
<div class="tags">H, Профессор травологии в школе Хогвартс, декан факультета Хаффлпаф</div>
</div>
<div class="char-card" data-age="ne" data-job="St M" data-grad="72" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=33" target="_blank"><strong>Tonks, Andromeda</strong></a> — 26, pb, ne, Hogwarts, S'72
<div class="tags">St M, Привет-Ведьма</div>
</div>
<div class="char-card" data-age="ne" data-job="DA" data-grad="47" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=107" target="_blank"><strong>Travers, Adelinde</strong></a> — 50, pb, ne, Hogwarts, S'47
<div class="tags">Ликвидатор заклятий банка Гринготтс</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="79" data-blood="mb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=6" target="_blank"><strong>White, Julie</strong></a> — 18, mb, op, Hogwarts, G'79
<div class="tags">MM, стажерка в аврорате</div>
</div>
</div>
</div>
<!-- Мужские персонажи -->
<div class="group">
<h3>Male</h3>
<div class="letter-block">
<h3><b><span style="color:gray">А - I</span></b></h3><br>
<div class="char-card" data-age="ne" data-job="MM" data-grad="69" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=71" target="_blank"><strong>Avery, Darklian Kellay</strong></a> — 28, hb, ne, Hogwarts, S'69
<div class="tags">Cудмедэксперт ДОМП <span style="color:teal">#маска</span></div>
</div>
<div class="char-card" data-age="de" data-job="KA" data-grad="45" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=10" target="_blank"><strong>Avery, Morvran</strong></a> — 52, pb, de, Hogwarts, S'45
<div class="tags">KA, владелец погребального бюро</div>
</div>
<div class="char-card" data-age="ne" data-job="St M" data-grad="60" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=78" target="_blank"><strong>Belby, Damocles</strong></a> — 37, pb, ne, Hogwarts, R'60
<div class="tags">St M, заведующий отделением волшебных вирусов в больнице Святого Мунго</div>
</div>
<div class="char-card" data-age="ne" data-job="MBr" data-grad="45" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=92" target="_blank"><strong>Black, Cygnus</strong></a> — 52, pb, ne, Hogwarts, S'45
<div class="tags"> Специалист по рунам и символам, знаток древних ритуалов, ученый-археолог </div>
</div>
<div class="char-card" data-age="de" data-job="MM" data-grad="79" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=127" target="_blank"><strong>Black, Regulus</strong></a> — 18, pb, de, Hogwarts, S'79
<div class="tags">MM, стажер отдела тайн, комната времени</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=5" target="_blank"><strong>Black, Sirius</strong></a> — 19, pb, op, Hogwarts, G'78
<div class="tags">MM, стажер в аврорате</div>
</div>
<div class="char-card" data-age="de" data-job="MM" data-grad="78" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=35" target="_blank"><strong>Crouch, Barty Jr</strong></a> — 19, pb, de, Hogwarts, S'78
<div class="tags">MM, стажер отдела стирателей памяти</div>
</div>
<div class="char-card" data-age="mm" data-job="MM" data-grad="59" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=65" target="_blank"><strong>Dawlish, John</strong></a> — 38, pb, mm, Hogwarts, G'59
<div class="tags">MM, старший аврор</div>
</div>
<div class="char-card" data-age="de" data-job=" " data-grad="56" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=43" target="_blank"><strong>Dolokhov, Antonin</strong></a> — 42, pb, de, Durmstrang, 56
<div class="tags">Частный черный артефактор</div>
</div>
<div class="char-card" data-age="ne" data-job="MrB" data-grad="52" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=118" target="_blank"><strong>Fawley, Tibbot</strong></a> — 46, pb, ne, Hogwarts, S'52
<div class="tags">Содержит заповедник магических зверей</div>
</div>
<div class="char-card" data-age="ne" data-job="MrB" data-grad="76" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=134" target="_blank"><strong>Fawley, Valdes</strong></a> — 21, hb, ne, Hogwarts, G'76
<div class="tags">Работает в заповеднике магических зверей</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="77" data-blood="mb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=122" target="_blank"><strong>Fenwick, Benjy</strong></a> — 20, mb, op, Hogwarts, H'77
<div class="tags">Стажёр в отделе магических происшествий и катастроф</div>
</div>
<div class="char-card" data-age="ne" data-job="MBr" data-grad="73" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=48" target="_blank"><strong>Greengrass, Tristian</strong></a> — 24, pb, MBr, Hogwarts, S'72
<div class="tags">Герболог, наследник семейного бизнеса</div>
</div>
<div class="char-card" data-age="de" data-job=" " data-grad="" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=103" target="_blank"><strong>Greyback, Fenrir</strong></a> — 36, pb, de, Hogwarts, S'--
<div class="tags">Вожак стаи</div>
</div>
<div class="char-card" data-age="mm" data-job="MM" data-grad="47" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=71" target="_blank"><strong>Greywood, Silos</strong></a> — 51, hb, mm, Hogwarts, S'47
<div class="tags">Высокопоставленный следователь Департамента магического правопорядка Сектора борьбы с неправомерным использованием магии <span style="color:teal">#маска</span></div>
</div>
</div>
<div class="char-card" data-age="de" data-job="MBr" data-grad="66" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=114" target="_blank"><strong>Howling, Phoebus</strong></a> — 31, hb, de, Hogwarts, R'66 (недоучился последние полгода)
<div class="tags">Наёмник, играет в карты на деньги</div>
</div>
<div class="letter-block">
<h3><b><span style="color:gray">J - Q</span></b></h3><br>
<div class="char-card" data-age="op" data-job="DA" data-grad="67" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=110" target="_blank"><strong>Jigger, Arsenius</strong></a> — 30, pb, op, Hogwarts, R'67
<div class="tags">DA, владелец аптеки "Slug & Jiggers"<br><span style="color:teal"></span></div>
</div>
<div class="char-card" data-age="ne" data-job="" data-grad="" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=119" target="_blank"><strong>Kelly, Fergus</strong></a> — 31, hb, ne
<div class="tags"></div>
</div>
<div class="char-card" data-age="ne" data-job="H" data-grad="61" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=124" target="_blank"><strong>Kragssen, Erwin</strong></a> — 36, hb, ne, Durmstrang'61
<div class="tags">H, профессор защиты от тёмных искусств</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=26" target="_blank"><strong>Lupin, Remus</strong></a> — 19, hb, op, Hogwarts, G'78
<div class="tags">MM, стажер в аврорате</div>
</div>
<div class="char-card" data-age="de" data-job="MBr" data-grad="72" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=88" target="_blank"><strong>Malfoy, Lucius</strong></a> — 25, pb, de, Hogwarts, S'72
<div class="tags">Занимается благотворительностью, недвижимостью и бизнес-инвестициями</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="66" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=31" target="_blank"><strong>Moody, Alastor</strong></a> — 31, pb, op, Hogwarts, G'66
<div class="tags">MM, Аврорат, куратор стажёров</div>
</div>
<div class="char-card" data-age="de" data-job="MM" data-grad="71" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=76" target="_blank"><strong>Mulciber, Anthony</strong></a> — 26, pb, de, Hogwarts, S'71
<div class="tags">ММ, Невыразимец, со-владелец букмекерской конторы «Мальсибер и сыновья»</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="72" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=138" target="_blank"><strong>Ollivander, Lucian</strong></a> — 25, pb, op, Hogwarts, R'72
<div class="tags"><span>MM, младший нексусолог (артефактолог), Отдел Тайн</span></div>
</div>
<div class="char-card" data-age="op" data-job="MBr" data-grad="70" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=104" target="_blank"><strong>Padgett, Gram</strong></a> — 27, pb, op, Hogwarts, R'70
<div class="tags"><span>MBr, герболог</span></div>
</div>
<div class="char-card" data-age="de" data-job="StM" data-grad="77" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=111" target="_blank"><strong>Parkinson, Perseus</strong></a> — 20, pb, de, Hogwarts, S'77
<div class="tags"><span>StM, стажёр в отделении "недуги от заклятий"</span></div>
</div>
<div class="char-card" data-age="ne" data-job="H" data-grad="" data-blood="" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=17" target="_blank"><strong>Peeves</strong></a>
<div class="tags">H, полтергейст</div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=68" target="_blank"><strong>Pettigrew, Peter</strong></a> — 19, pb, op, Hogwarts, G'78
<div class="tags"><span>ММ, стажёр в департаменте магических происшествий и катастроф</span></div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="78" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=16" target="_blank"><strong>Potter, James</strong></a> — 19, pb, op, Hogwarts, G'78
<div class="tags">MM, стажёр в аврорате</div>
</div>
<div class="char-card" data-age="op" data-job="StM" data-grad="72" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=128" target="_blank"><strong>Prewett, Fabian</strong></a> — 25, pb, op, Hogwarts, G'72
<div class="tags">Cтарший целитель отделения волшебных вирусов в больнице Святого Мунго<br> </div>
</div>
<div class="char-card" data-age="op" data-job="MM" data-grad="58" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=131" target="_blank"><strong>Prewett, Gideon</strong></a> — 31, pb, op, Hogwarts, G'66
<div class="tags">Старший аврор<br> </div>
</div>
<div class="letter-block">
<h3><b><span style="color:gray">R - Z</span></b></h3><br>
<div class="char-card" data-age="mm" data-job="MM" data-grad="58" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=121" target="_blank"><strong>Robards, Gawain</strong></a> — 39, hb, mm, Hogwarts, G'58
<div class="tags">Заместитель главы Аврората<br> </div>
</div>
<div class="char-card" data-age="de" data-job="MM" data-grad="38" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=70" target="_blank"><strong>Rosier, Duran</strong></a> — 59, pb, de, Hogwarts, S'38
<div class="tags">MM, судья Визенгамота, претендент на должность Верховного мага<br> </div>
</div>
<div class="char-card" data-age="de" data-job="MM" data-grad="77" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=4" target="_blank"><strong>Rosier, Evan</strong></a> — 20, pb, de, Hogwarts, S'77
<div class="tags">MM, стажер отдела международного магического сотрудничества </div></div>
<div class="char-card" data-age="ne" data-job="Media" data-grad="45" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=125" target="_blank"><strong>Rosier, Felix</strong></a> — 52, pb, ne, Hogwarts, S'45
<div class="tags">Media, главный редактор «Ежедневного пророка»<br> </div>
</div>
<div class="char-card" data-age="ne" data-job="KA" data-grad="70" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=3" target="_blank"><strong>Scarr, Markus</strong></a> — 27, hb, ne, Hogwarts, R'70
<div class="tags">KA, Владелец тату-салон Маркуса Скарра</div>
</div>
<div class="char-card" data-age="ne" data-job="DA" data-grad="79" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=14" target="_blank"><strong>Shiratori, Masahiro</strong></a> — 18, hb, ne, Hogwarts, H'79
<div class="tags">DA, официант и помощник в чайных Розы Ли</div>
</div>
<div class="char-card" data-age="ne" data-job="St M" data-grad="XX" data-blood="pb" data-status="free">
<a href="https://safespace.rusff.me/viewtopic.php?id=18#p36" target="_blank"><strong style="color:gray">Smethwyck, Hippocrates</strong></a> — 40+, pb, ne, Hogwarts, H'X
<div class="tags">St M, заведующий отделением «Ранения от живых существ»<br><span style="color:teal">#акция</span></div>
</div>
<div class="char-card" data-age="de" data-job="DA" data-grad="78" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=20" target="_blank"><strong>Snape, Severus</strong></a> — 19, hb, de, Hogwarts, S'78
<div class="tags">DA, продавец в аптеке «Слизень и Джиггер», частный зельевар</div>
</div>
<div class="char-card" data-age="ne" data-job="St M" data-grad="70" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=28" target="_blank"><strong>Spleen, Helbert</strong></a> — 27, hb, ne, Hogwarts, H'70
<div class="tags">St M, целитель в Мунго <span style="color:teal">#маска</span></div>
</div>
<div class="char-card" data-age="ne" data-job="St M" data-grad="70" data-blood="mb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=11" target="_blank"><strong>Thickey, Janus</strong></a> — 27, mb, ne, Hogwarts, R'70
<div class="tags">St M, целитель в отделении недугов от заклятий</div>
</div>
<div class="char-card" data-age="mm" data-job="Q" data-grad="75" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=130" target="_blank"><strong>Travers, Alexander</strong></a> — 22, pb, mm, Hogwarts, R'75
<div class="tags">Профессиональный игрок в квиддич, загонщик «Паддлмир Юнайтед»</div>
</div>
<div class="char-card" data-age="mm" data-job="MM" data-grad="45" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=109" target="_blank"><strong>Travers, Gregory</strong></a> — 52, pb, mm, Hogwarts, S'45
<div class="tags">Глава Департамента Игр и Спорта</div>
</div>
<div class="char-card" data-age="mm" data-job="MM" data-grad="70" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=126" target="_blank"><strong>Travers, Max</strong></a> — 27, pb, mm, Hogwarts, S'70
<div class="tags">Артефактолог, Невыразимец в Отделе Тайн</div>
</div>
<div class="char-card" data-age="mm" data-job="MM" data-grad="39" data-blood="pb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=96" target="_blank"><strong>Urquart, Elphinstone</strong></a> — 58, pb, mm, Hogwarts, G'39
<div class="tags">Заместитель главы Департамента магического правопорядка</div>
</div>
<div class="char-card" data-age="de" data-job="MM" data-grad="77" data-blood="hb" data-status="active">
<a href="https://safespace.rusff.me/profile.php?id=7" target="_blank"><strong>Whisp, Whisper</strong></a> — 20, hb, de, Hogwarts, S'77
<div class="tags">MM, стажер отдела тайн</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Вкладка 2 -->
<div id="faces" class="tab-content">
<div style="display: flex; justify-content: center; gap: 100px; margin-top: 50px;">
<ul style="list-style-type: disc; text-align: left;">
<li>Female</li><br>
<li>А - I</li><br>
<li>Allan, Freya — <a href=https://safespace.rusff.me/profile.php?id=73» target=«_blank»><strong>Judith Milligan</strong></a></li>
<li>Baysel, Cemre — <a href=https://safespace.rusff.me/profile.php?id=87» target=«_blank»><strong>Tessa Macnair</strong></a></li>
<li>Bergis-Frisbey, Аstrid — <a href="https://safespace.rusff.me/profile.php?id=4" target=«_blank»><strong>Rose Harland</strong></a> #маска</li>
<li>Blanchett, Cate - <a href="https://safespace.rusff.me/profile.php?id=64" target="_blank"><strong>Beatrice Rosier</strong></a></li>
<li>Boyd, Jenny — <a href="https://safespace.rusff.me/profile.php?id=53" target=«_blank»><strong>Petunia Evans</strong></a></li>
<li>Cameron, Dove - <a href=https://safespace.rusff.me/profile.php?id=69><strong>Aurora Mulciber</strong></a></li>
<li>Cassel, Deva - <a href=https://safespace.rusff.me/profile.php?id=56><strong>Priscilla Parkinson</strong></a></li>
<li>Collins, Lily - <a href=https://safespace.rusff.me/profile.php?id=105><strong>Cassandra Padgett</strong></a></li>
<li>Cotillard, Marion - <a href=https://safespace.rusff.me/profile.php?id=107><strong>Adelinde Travers</strong></a></li>
<li>Coughlan, Nicola — <a href="https://safespace.rusff.me/profile.php?id=53" target=«_blank»><strong>Orla Fawley</strong></a> #маска</li>
<li>Delevingne, Cara - <a href=https://safespace.rusff.me/profile.php?id=83><strong>Erida Gore</strong></a></li>
<li>Deschanel, Zooey - <a href=https://safespace.rusff.me/profile.php?id=39><strong>Mary Macdonald</strong></a></li>
<li>Daddario, Alexandra — <a href=https://safespace.rusff.me/profile.php?id=33» target=«_blank»><strong>Andromeda Tonks</strong></a></li>
<li>Fanning, Elle — <a href=https://safespace.rusff.me/profile.php?id=6» target=«_blank»><strong>Julia White</strong></a></li>
<li>Fisher, Isla Lang — <a href=https://safespace.rusff.me/profile.php?id=47» target=«_blank»><strong>Cassia Greengrass</strong></a></li>
<br><li>J - Q</li><br>
<li>Grainger, Holliday — <a href=https://safespace.rusff.me/profile.php?id=75» target=«_blank»><strong>Alexandrite Avery</strong></a></li>
<li>Kidman, Nicole — <a href=https://safespace.rusff.me/profile.php?id=115» target=«_blank»><strong>Pomona Sprout</strong></a></li>
<li>Klum, Leni — <a href=https://safespace.rusff.me/profile.php?id=15» target=«_blank»><strong>Olivia Green</strong></a></li>
<li>Korikova, Elena — <a href=https://safespace.rusff.me/profile.php?id=117» target=«_blank»><strong>Teodora Nott</strong></a></li>
<li>Ortega, Jenna — <a href=https://safespace.rusff.me/profile.php?id=99» target=«_blank»><strong>Neftida Avery</strong></a></li>
<li>Ory, Meghan — <a href=https://safespace.rusff.me/profile.php?id=35» target=«_blank»><strong>Virsavia Macnair</strong></a> #маска</li>
<li>Palmer, Teresa — <a href=https://safespace.rusff.me/profile.php?id=74» target=«_blank»><strong>Narcissa Malfoy</strong></a></li>
<li>Parilla, Lana — <a href=https://safespace.rusff.me/profile.php?id=113» target=«_blank»><strong>Araminta Meliflua</strong></a></li>
<li>Pike, Rosamund — <a href=https://safespace.rusff.me/profile.php?id=72» target=«_blank»><strong>Druella Black</strong></a></li>
<li>Poots, Imogen — <a href=https://safespace.rusff.me/profile.php?id=67» target=«_blank»><strong>Enid Edgecombe</strong></a></li>
<li>Princess, King — <a href=https://safespace.rusff.me/profile.php?id=30» target=«_blank»><strong>Artemis Fay</strong></a></li>
<li>Puccini, Vittoria — <a href=https://safespace.rusff.me/profile.php?id=75» target=«_blank»><strong>Alexandrite Avery</strong></a></li>
<br><li>R - Z</li><br>
<li>Rattigan, Ella - <a href="https://safespace.rusff.me/profile.php?id=85" target="_blank"><strong>Lavinia Mulciber</strong></a></li>
<li>Theron, Charlize — <a href="https://safespace.rusff.me/profile.php?id=76" target=«_blank»><strong>Olivin Eleanor Mulciber</strong></a> #маска</li>
<li>Skelton, Sophie — <a href=https://safespace.rusff.me/profile.php?id=54» target=«_blank»><strong>Lily Potter</strong></a></li>
<li>Smith, Maggie — <a href=https://safespace.rusff.me/profile.php?id=77» target=«_blank»><strong>Minerva McGonagall</strong></a></li>
<li>Weisz, Rachel — <a href=https://safespace.rusff.me/profile.php?id=135» target=«_blank»><strong>Yvette Rosier</strong></a></li>
<li>Zeta-Jones, Catherine — <a href=https://safespace.rusff.me/profile.php?id=89» target=«_blank»><strong>Walburga Black</strong></a></li>
</ul>
<ul style="list-style-type: disc; text-align: left;">
<li>Male</li>
<br>
<li>А - I</li><br>
<li>Ackles, Jensen - <a href="https://safespace.rusff.me/profile.php?id=130" target="_blank"><strong>Alex Travers</strong></a></li>
<li>Armitage, Richard - <a href="https://safespace.rusff.me/profile.php?id=71" target="_blank"><strong>Morvran Avery</strong></a></li>
<li>Bajraktaraj, Arben - <a href="https://safespace.rusff.me/profile.php?id=43" target="_blank"><strong>Antonin Dolokhov</strong></a></li>
<li>Bracey, Luke - <a href="https://safespace.rusff.me/profile.php?id=48" target="_blank"><strong>Tristian Greengrass</strong></a></li>
<li>Clooney, George - <a href="https://safespace.rusff.me/profile.php?id=92" target="_blank"><strong>Cygnus Black</strong></a></li>
<li>Coster-Waldau, Nikolaj - <a href="https://safespace.rusff.me/profile.php?id=125" target="_blank"><strong>Felix Rosier</strong></a></li>
<li>Csokas, Marton - <a href="https://safespace.rusff.me/profile.php?id=3" target="_blank"><strong>Silos Greywood</strong></a><span style="color:teal">#маска</span></li>
<li>Daddario, Matthew - <a href="https://safespace.rusff.me/profile.php?id=126" target="_blank"><strong>Max Travers</strong></a></li>
<li>Dancy, Hugh - <a href="https://safespace.rusff.me/profile.php?id=78" target="_blank"><strong>Damocles Belby</strong></a></li>
<li>Danet-Fauvel, Maxence - <a href="https://safespace.rusff.me/profile.php?id=104" target="_blank"><strong>Gram Padgett</strong></a></li>
<li>Daniels, Ben - <a href="https://safespace.rusff.me/profile.php?id=96" target="_blank"><strong>Elphinstone Urquart</strong></a></li>
<li>Delon, Alain - <a href="https://safespace.rusff.me/profile.php?id=70" target="_blank"><strong>Duran Rosier</strong></a></li>
<li>Fimmel, Travis - <a href="https://safespace.rusff.me/profile.php?id=119" target="_blank"><strong>Fergus Kelly</strong></a></li>
<li>Gilby, Harry - <a href="https://safespace.rusff.me/profile.php?id=127" target="_blank"><strong>Regulus Black</strong></a></li>
<li>Goode, Matthew - <a href="https://safespace.rusff.me/profile.php?id=110" target="_blank"><strong>Arsenius Jigger</strong></a></li>
<li>Hardy, Tom - <a href="https://safespace.rusff.me/profile.php?id=121" target="_blank"><strong>Gawain Robards</strong></a></li>
<li>Hiddleston, Tom - <a href="https://safespace.rusff.me/profile.php?id=114" target="_blank"><strong>Phoebus Howling</strong></a></li>
<li>Holland, Tom - <a href="https://safespace.rusff.me/profile.php?id=26" target="_blank"><strong>Remus Lupin</strong></a></li>
<li>Huisman, Michiel - <a href="https://safespace.rusff.me/profile.php?id=118" target="_blank"><strong>Tibbot Fawley</strong></a></li>
<br><li>J - Q</li><br>
<li>James, Stephen - <a href="https://safespace.rusff.me/profile.php?id=3" target="_blank"><strong>Markus Scarr</strong></a></li>
<li>McConaughey, Matthew - <a href="https://safespace.rusff.me/profile.php?id=65" target="_blank"><strong>John Dawlish</strong></a></li>
<li>McGowan, Zach - <a href="https://safespace.rusff.me/profile.php?id=103" target="_blank"><strong>Fenrir Greyback</strong></a></li>
<li>McMillan, Miles - <a href="https://safespace.rusff.me/profile.php?id=7" target="_blank"><strong>Whisper Whisp</strong></a></li>
<li>Murakami, Nijiro - <a href="https://safespace.rusff.me/profile.php?id=14"><strong>Masahiro Shiratori</strong></a></li>
<li>Nanni, Saul - <a href="https://safespace.rusff.me/profile.php?id=111"><strong>Perseus Parkinson</strong></a></li>
<li>O'Donoghue, Colin - <a href="https://safespace.rusff.me/profile.php?id=71" target="_blank"><strong>Kellay Avery</strong></a><span style="color:teal">#маска</span></li>
<li>Peters, Evan - <a href="https://safespace.rusff.me/profile.php?id=68"><strong>Peter Pettigrew</strong></a></li>
<li>Pine, Chris - <a href="https://safespace.rusff.me/profile.php?id=131" target="_blank"><strong>Gideon Prewett</strong></a></li>
<li>Pitt, Brad - <a href="https://safespace.rusff.me/profile.php?id=109" target="_blank"><strong>Gregory Travers</strong></a></li>
<br><li>R - Z</li><br>
<li>Roth, Tim - <a href="https://safespace.rusff.me/profile.php?id=20" target="_blank"><strong>Severus Snape</strong></a></li>
<li>Samberg, Andy - <a href="https://safespace.rusff.me/profile.php?id=28" target="_blank"><strong>Helbert Spleen</strong></a><span style="color:teal">#маска</span></li>
<li>Seagal, Steven - <a href="https://safespace.rusff.me/profile.php?id=31" target="_blank"><strong>Alastor Moody</strong></a></li>
<li>Seppalainen, Otto - <a href="https://safespace.rusff.me/profile.php?id=11" target="_blank"><strong>Janus Thickey</strong></a></li>
<li>Shwartz, Evgeny - <a href="https://safespace.rusff.me/profile.php?id=138" target="_blank"><strong>Lucien Ollivander</strong></a></li>
<li>Sheehan, Robert - <a href="https://safespace.rusff.me/profile.php?id=122" target="_blank"><strong>Benjy Fenwick</strong></a></li>
<li>Skarsgard, Alexander - <a href="https://safespace.rusff.me/profile.php?id=124" target="_blank"><strong>Erwin Kragssen</strong></a></li>
<li>Skarsgard, Bill - <a href="https://safespace.rusff.me/profile.php?id=76" target="_blank"><strong>Anthony Mulciber</strong></a></li>
<li>Taylor-Johnson, Aaron - <a href="https://safespace.rusff.me/profile.php?id=88" target="_blank"><strong>Lucius Malfoy</strong></a></li>
<li>Tennant, David - <a href="https://safespace.rusff.me/profile.php?id=35" target="_blank"><strong>Barty Crouch Jr</strong></a></li>
<li>Tommeraas, Herman - <a href="https://safespace.rusff.me/profile.php?id=16" target="_blank"><strong>James Potter</strong></a></li>
<li>Turner, Aidan - <a href="https://safespace.rusff.me/profile.php?id=134" target="_blank"><strong>Valdes Fawley</strong></a></li>
<li>Ulliel, Gaspard - <a href="https://safespace.rusff.me/profile.php?id=4" target="_blank"><strong>Evan Rosier</strong></a></li>
<li>Williams, Loic - <a href="https://safespace.rusff.me/profile.php?id=5" target="_blank"><strong>Sirius Black</strong></a></li>
<li>Whishaw, Ben - <a href="https://safespace.rusff.me/profile.php?id=128" target="_blank"><strong>Fabian Prewett</strong></a></li>
<br><li>А - Я</li><br>
<li>Стоун, Шура - <a href=https://safespace.rusff.me/profile.php?id=17><strong>Peeves</strong></a></li>
</ul>
</div>
</div>
<!-- Вкладка 3 -->
<div id="names" class="tab-content">
<div style="display: flex; justify-content: center; gap: 100px; margin-top: 20px;">
<ul style="list-style-type: disc; text-align: left;">
<li>Female</li><br>
<li>А - I</li><br>
<li>Adelinde — <a href=https://safespace.rusff.me/profile.php?id=107><strong>Adelinde Travers</strong></a></li>
<li>Alexandrite — <a href=https://safespace.rusff.me/profile.php?id=75><strong>Alexandrite Avery</strong></a></li>
<li>Andromeda — <a href=https://safespace.rusff.me/profile.php?id=33><strong>Andromeda Tonks</strong></a></li>
<li>Araminta — <a href=https://safespace.rusff.me/profile.php?id=113><strong>Araminta Meliflua</strong></a></li>
<li>Artemis — <a href=https://safespace.rusff.me/profile.php?id=30><strong>Artemis Fay</strong></a></li>
<li>Aurora — <a href=https://safespace.rusff.me/profile.php?id=69><strong>Aurora Mulciber</strong></a></li>
<li>Beatrice - <a href="https://safespace.rusff.me/profile.php?id=64" target="_blank"><strong>Beatrice Rosier</strong></a></li>
<li>Cassandra, Lily - <a href=https://safespace.rusff.me/profile.php?id=105><strong>Cassandra Padgett</strong></a></li>
<li>Cassia — <a href=https://safespace.rusff.me/profile.php?id=47><strong>Cassia Greengrass</strong></a></li>
<li>Druella — <a href=https://safespace.rusff.me/profile.php?id=72><strong>Druella Black</strong></a></li>
<li>Eleanor — <a href=https://safespace.rusff.me/profile.php?id=76><strong>Olivin Eleanor Mulciber</strong></a> #маска</li>
<li>Enid — <a href=https://safespace.rusff.me/profile.php?id=67><strong>Enid Edgecombe</strong></a></li>
<li>Erida - <a href=https://safespace.rusff.me/profile.php?id=83><strong>Erida Gore</strong></a></li>
<br><li>J - Q</li><br>
<li>Judith — <a href=https://safespace.rusff.me/profile.php?id=73» target=«_blank»><strong>Judith Milligan</strong></a></li>
<li>Julia — <a href=https://safespace.rusff.me/profile.php?id=6><strong>Julia White</strong></a></li>
<li>Lavinia — <a href=https://safespace.rusff.me/profile.php?id=85><strong>Lavinia Mulciber</strong></a></li>
<li>Lily — <a href=https://safespace.rusff.me/profile.php?id=54><strong>Lily Potter</strong></a></li>
<li>Mary - <a href="https://safespace.rusff.me/profile.php?id=39" target="_blank"><strong>Mary Macdonald</strong></a></li>
<li>Minerva — <a href=https://safespace.rusff.me/profile.php?id=77» target=«_blank»><strong>Minerva McGonagall</strong></a></li>
<li>Narcissa — <a href=https://safespace.rusff.me/profile.php?id=74» target=«_blank»><strong>Narcissa Malfoy</strong></a></li>
<li>Neftida — <a href=https://safespace.rusff.me/profile.php?id=99» target=«_blank»><strong>Neftida Avery</strong></a></li>
<li>Olivia — <a href=https://safespace.rusff.me/profile.php?id=15» target=«_blank»><strong>Olivia Green</strong></a></li>
<li>Olivin — <a href=https://safespace.rusff.me/profile.php?id=76><strong>Olivin Eleanor Mulciber</strong></a> #маска</li>
<li>Orla — <a href=https://safespace.rusff.me/profile.php?id=53><strong>Orla Fawley</strong></a> #маска</li>
<li>Petunia - <a href=https://safespace.rusff.me/profile.php?id=53><strong>Petunia Evans</strong></a></li>
<li>Pomona — <a href=https://safespace.rusff.me/profile.php?id=115» target=«_blank»><strong>Pomona Sprout</strong></a></li>
<li>Priscilla - <a href=https://safespace.rusff.me/profile.php?id=56><strong>Priscilla Parkinson</strong></a></li>
<br><li>R - Z</li><br>
<li>Rose — <a href=https://safespace.rusff.me/viewtopic.php?id=86#p3156><strong>Rose Harland</strong></a> #маска</li>
<li>Teodora — <a href=https://safespace.rusff.me/profile.php?id=117><strong>Teodora Nott</strong></a></li>
<li>Tessa — <a href=https://safespace.rusff.me/profile.php?id=87><strong>Tessa Macnair</strong></a></li>
<li>Virsavia — <a href=https://safespace.rusff.me/profile.php?id=35><strong>Virsavia Macnair</strong></a> #маска</li>
<li>Walburga — <a href=https://safespace.rusff.me/profile.php?id=89><strong>Walburga Black</strong></a></li>
<li>Yvette — <a href=https://safespace.rusff.me/profile.php?id=135» target=«_blank»><strong>Yvette Rosier</strong></a></li>
</ul>
<ul style="list-style-type: disc; text-align: left;">
<li>Male</li>
<br>
<li>А - I</li><br>
<li>Alastor — <a href="https://safespace.rusff.me/profile.php?id=31" target="_blank"><strong>Alastor Moody</strong></a></li>
<li>Alexander — <a href="https://safespace.rusff.me/profile.php?id=130" target="_blank"><strong>Alex Travers</strong></a></li>
<li>Anthony — <a href="https://safespace.rusff.me/profile.php?id=76" target="_blank"><strong>Anthony Mulciber</strong></a></li>
<li>Antonin — <a href="https://safespace.rusff.me/profile.php?id=43" target="_blank"><strong>Antonin Dolokhov</strong></a></li>
<li>Barty — <a href="https://safespace.rusff.me/profile.php?id=35" target="_blank"><strong>Barty Crouch Jr</strong></a></li>
<li>Benjy — <a href="https://safespace.rusff.me/profile.php?id=122" target="_blank"><strong>Benjy Fenwick</strong></a></li>
<li>Cygnus — <a href="https://safespace.rusff.me/profile.php?id=92" target="_blank"><strong>Cygnus Black</strong></a></li>
<li>Damocles — <a href="https://safespace.rusff.me/profile.php?id=78" target="_blank"><strong>Damocles Belby</strong></a></li>
<li>Duran — <a href="https://safespace.rusff.me/profile.php?id=70" target="_blank"><strong>Duran Rosier</strong></a></li>
<li>Elphinstone — <a href="https://safespace.rusff.me/profile.php?id=96" target="_blank"><strong>Elphinstone Urquart</strong></a></li>
<li>Erwin — <a href="https://safespace.rusff.me/profile.php?id=124" target="_blank"><strong>Erwin Kragssen</strong></a></li>
<li>Evan — <a href="https://safespace.rusff.me/profile.php?id=4" target="_blank"><strong>Evan Rosier</strong></a></li>
<li>Fabian - <a href="https://safespace.rusff.me/profile.php?id=128" target="_blank"><strong>Fabian Prewett</strong></a></li>
<li>Felix — <a href="https://safespace.rusff.me/profile.php?id=125" target="_blank"><strong>Felix Rosier</strong></a></li>
<li>Fenrir — <a href="https://safespace.rusff.me/profile.php?id=103" target="_blank"><strong>Fenrir Greyback</strong></a></li>
<li>Fergus — <a href="https://safespace.rusff.me/profile.php?id=119" target="_blank"><strong>Fergus Kelly</strong></a></li>
<li>Gawain — <a href="https://safespace.rusff.me/profile.php?id=121" target="_blank"><strong>Gawain Robards</strong></a></li>
<li>Gideon — <a href="https://safespace.rusff.me/profile.php?id=131" target="_blank"><strong>Gideon Prewett</strong></a></li>
<li>Gram — <a href="https://safespace.rusff.me/profile.php?id=104" target="_blank"><strong>Gram Padgett</strong></a></li>
<li>Gregory — <a href="https://safespace.rusff.me/profile.php?id=109" target="_blank"><strong>Gregory Travers</strong></a></li>
<li>Helbert — <a href="https://safespace.rusff.me/profile.php?id=28" target="_blank"><strong>Helbert Spleen</strong></a></li>
<br><li>J - Q</li><br>
<li>James — <a href="https://safespace.rusff.me/profile.php?id=16" target="_blank"><strong>James Potter</strong></a></li>
<li>Janus — <a href="https://safespace.rusff.me/profile.php?id=11" target="_blank"><strong>Janus Thickey</strong></a></li>
<li>John — <a href="https://safespace.rusff.me/profile.php?id=65" target="_blank"><strong>John Dawlish</strong></a></li>
<li>Kellay — <a href=https://safespace.rusff.me/profile.php?id=71><strong>Kellay Avery</strong></a> #маска</li>
<li>Lucian — <a href="https://safespace.rusff.me/profile.php?id=138" target="_blank"><strong>Lucian Ollivander</strong></a></li>
<li>Lucius — <a href="https://safespace.rusff.me/profile.php?id=88" target="_blank"><strong>Lucius Malfoy</strong></a></li>
<li>Markus — <a href="https://safespace.rusff.me/profile.php?id=3" target="_blank"><strong>Markus Scarr</strong></a></li>
<li>Masahiro — <a href="https://safespace.rusff.me/profile.php?id=14" target="_blank"><strong>Masahiro Shiratori</strong></a></li>
<li>Max — <a href="https://safespace.rusff.me/profile.php?id=126" target="_blank"><strong>Max Travers</strong></a></li>
<li>Morvran — <a href="https://safespace.rusff.me/profile.php?id=71" target="_blank"><strong>Morvran Avery</strong></a></li>
<li>Peeves — <a href="https://safespace.rusff.me/profile.php?id=17" target="_blank"><strong>Peeves</strong></a></li>
<li>Perseus — <a href="https://safespace.rusff.me/profile.php?id=111"><strong>Perseus Parkinson</strong></a></li>
<li>Peter — <a href="https://safespace.rusff.me/profile.php?id=68" target="_blank"><strong>Peter Pettigrew</strong></a></li>
<li>Phoebus — <a href="https://safespace.rusff.me/profile.php?id=114" target="_blank"><strong>Phoebus Howling</strong></a></li>
<br><li>R - Z</li><br>
<li>Regulus — <a href="https://safespace.rusff.me/profile.php?id=127" target="_blank"><strong>Regulus Black</strong></a></li>
<li>Severus — <a href="https://safespace.rusff.me/profile.php?id=20" target="_blank"><strong>Severus Snape</strong></a></li>
<li>Silos — <a href=https://safespace.rusff.me/profile.php?id=3><strong>Silos Greywood</strong></a> #маска</li>
<li>Sirius — <a href= Sirius Black><strong>Sirius Black</strong></a></li>
<li>Tibbot - <a href="https://safespace.rusff.me/profile.php?id=118" target="_blank"><strong>Tibbot Fawley</strong></a></li>
<li>Tristian — <a href= Tristian Greengrass><strong>Tristian Greengrass</strong></a></li>
<li>Valdes — <a href= Valdes Fawley><strong>Valdes Fawley</strong></a></li>
<li>Whisper — <a href= Whisper Whisp><strong>Whisper Whisp</strong></a></li>
</ul>
</div>
</div>
<script>
const filters = ['ageFilter', 'jobFilter', 'gradYearFilter', 'bloodFilter', 'statusFilter'];
filters.forEach(id => {
document.getElementById(id).addEventListener('change', applyFilters);
});
function applyFilters() {
const age = document.getElementById('ageFilter').value;
const job = document.getElementById('jobFilter').value;
const grad = document.getElementById('gradYearFilter').value;
const blood = document.getElementById('bloodFilter').value;
const status = document.getElementById('statusFilter').value;
document.querySelectorAll('.char-card').forEach(card => {
const matchesAge = !age || card.dataset.age === age;
const matchesJob = !job || card.dataset.job.includes(job);
const matchesGrad = !grad || card.dataset.grad === grad;
const matchesBlood = !blood || card.dataset.blood === blood;
const matchesStatus = !status || card.dataset.status === status;
card.style.display = (matchesAge && matchesJob && matchesGrad && matchesBlood && matchesStatus) ? '' : 'none';
});
}
function resetFilters() {
filters.forEach(id => document.getElementById(id).value = '');
applyFilters();
}
function switchTab(tabId, btn) {
document.querySelectorAll('.tab-content').forEach(tab => {
tab.classList.remove('active');
});
document.getElementById(tabId).classList.add('active');
document.querySelectorAll('.tab-button').forEach(b => b.classList.remove('active'));
btn.classList.add('active');
// Показывать фильтры только во вкладке персонажей
document.getElementById('filter-block').style.display = (tabId === 'characters') ? 'block' : 'none';
}
</script>
</body>
</html>
[/html]
[hideprofile]