Cyanoide's CSS templates

While I likely won't ever do actual commissions, I do quite enjoy making profile themes. All themes I make that I don't plan on using myself will be posted here, for free, for others to enjoy.
I call it templates but it's more kind of just pre-made themes where you can of course adjust the HEX codes to change the colours if you want to.

Some questions I can foresee potentially getting:
If I get multiple people asking the same questions, those and their answers will be added here as well!

What will be included?

All of the code and background image. The profiles are fully styled, meaning all menus have styling and they even have media queries to ensure mobile works perfectly fine as well. I will always include code for dropdowns in the profile bio. All of the code is labelled, this is how I keep track of code myself while doing CSS. If there's anything I feel may need an extra note in a template I add that as well.

Will these themes be updated if any codes gets changed?

Yes, currently my goal will be to update them within a week of CSS changes happening. If a lot of code breaks at once or I eventually have more themes available, this may change. In the code section, underneath the title, I will put the date of when it was last updated in the DD/MM/YYYY format.

Can I change things on this template?

Of course! Just make sure that if you plan on changing any colours, to keep proper contrast between text and backgrounds. This is important as to keep your profile accessible and easy to read. For a contrast checker you can click here. If you want to change the font, just make sure your chosen font works for where you put it. For example, a lot of cursive fonts aren't the easiest to read on smaller text like your profile bio or bot bios.

Do you plan on making more templates?

Yes. I have times where I quite enjoy doing CSS but I am also not always jumping at the opportunity to change my own profile. Themes I make like that will likely be put on here.

How optimised is the code?

I try my best. My code probably could be more optimised, but it works and I haven't experienced any lag or long loading times with it myself. If something I make causes my laptop to lag a lot, I likely wouldn't post it on here either in the future.

Credit

If this template is used, please do not remove the credit div. If you only use parts of the template (example: only using profile bio / only using the bot cards / only using the header, etc.) please still include the credit. If you use this template and customise it, please do still include the credit.
If you are found to be using this template without crediting me, you will be reported. If you then don’t add the credit/remove the code, there will be consequences. Yes, stealing CSS is reportable.

List of contents to make navigation easier

Before going to the code, this is a short section that has some important info as the code will require a completely transparent profile bio background to look like how it's supposed to.

Currently available themes:

All theme previews

Theme 1: "Starlit Moments"
Theme1

Theme 2: "Witches 'n Whispers"
Theme2

Before we get started

If you have questions, you can find me in the official JanitorAI Discord, which you can find here. My Discord username is "cyanoide" and my nickname in the JanitorAI Discord is set to ".cyanoide{ display: none; }" My DMs are open, so feel free to send a message if you need help!

Profile bio preperation

Before we get started, We must make the profile bio transparent. This can be done easily through the profile editor on the page.
Step 1: Click on "Edit profile"
Step 1
Step 2: Click on the palette icon.
Step 2
Step 3: After clicking on this icon, the CSS editor and other customisation icons will appear, press the one below the palette icon you just clicked
Step 3
Step 4: While the hex code does not necessarily matter, it must be at 0% opacity, this means the hex code has 6 figures and then an extra 00 added after that. For ease, set it to #ffffff00
Step 4
Step 5: Press on "Save changes"
Step 5
Now, we are good to go!

Where to put the code

Personally, I recommend using the About Me section, which you can find here: https://janitorai.com/profile-settings
Underneath your bio text, you can paste the code. I do not recommend using the CSS editor on the profile page itself as this can be buggy.

How to use background images

All themes I will post on here will come with a background image for the page that has either been drawn by me or generated by AI.
If you want to use a background image, just follow these steps:
Step 1: Click on "Edit profile"
Step 1
Step 2: Click on the palette icon.
Step 2
Step 3: Click on the bottom icon that says "Change Background Image".
Step 3
Step 4: Click on the box outlined in purple and select your background image.
Step 4
Step 5: Make sure the opacity is set to 100% and blur is set to 0%
Step 5
Step 6: Press on "Save changes"
Step 6

IMPORTANT: If you did not click on "Edit profile" before clicking on the palette icon, "Save changes" won't show up. In this case you can still press "Edit Profile" and then immediately press "Save changes" in order to save the background image changes.

I will always include styling for details/summary dropdowns in my code. I love using them myself to tuck away most of my text into neat boxes. How does one create them? it's simple!
Just put this inside your "About Me" with all your other bio text.

1
2
3
4
5
<details>
<summary>Title Text</summary>
<p>Text inside the box, styled as per usual.</p>
<p>TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT</p>
</details>

When not styled, it'll look like this:
Details/summary
Then when you click on it, it'll open!
Details/summary open

Starlit Moments

Preview 1
Preview 2

Background image and important notes

Background image:
This background has been drawn by me, @Cyanoide, using Clip Studio Paint and my drawing tablet. You can find the background image here.
It looks like this:
Starlit Moments Background

Text symbol divider:
By using copy pasted text symbols, I have made a text divider. the <span style="color: #dae9eb;"> turns it into the light colour also used for example in the borders and bot card summary text
<p style="text-align: center"><span style="color: #dae9eb;">── ⋅ ⋅ ─ ⋅ ⋅ ── ✩ ── ⋅ ⋅ ─ ⋅ ⋅ ──</span></p>

If you want to use it, just paste it into your profile bio through the "About Me" section in settings at whatever points you want it.

Important notes:
On this theme, there is something that may need adjustment based on how long your bio is. To make the difference easily visible, I opened a few dropdowns on my alt account:
Example
Because of this, it may be necessary to adjust the angles.
At some point in the code you will see the following:

1
2
3
4
5
6
7
/* ADJUST THE ANGLE BASED ON BIO LENGTH! */
.pp-uc-background::before {
   transform: rotate(0.5deg);
}
.pp-uc-background::after {
   transform: rotate(-0.5deg);
}

If your code looks like the bottom half of the example image, you will need to make the angle smaller. For example (0.4deg) and (-0.4deg), or perhaps even smaller. As long as one value is a positive number and the other is negative, it will work fine. the number doesn't need to only have one number after the ., Numbers like (0.45deg) will also work.
If you feel like the lines are too close together on your bio and not giving much of an effect at all, you can make the angle larger. Again, as long as the values have the same number, just one positive value and one negative value, it'll work fine.

There is also this for the "Member since" code:

1
2
3
4
5
6
7
8
/* Profile Bio - Member Since - Text Replacement - Replace <DATE> with your "member since" date */
.pp-uc-member-since:after{
   color: #dae9eb;
   content: "Orbiting since <DATE>";
   font-size: 23px;
   font-weight: 100;
   text-align: center;
}

Make sure to replace <DATE> with your join date!

Code

Last Updated: 26/09/2025

REMEMBER: If you are someone who struggles with CSS or is not too familiar with how it works, all code must be encased with <style> and </style>. I only put <style> at the start and </style> at the end. If you only take certain elements from this, make sure everything is within <style></style> or else it won't work!

There will be notes with the code to mark what each part is. Hopefully these are clear enough.

MAKE SURE TO ONLY USE "SETTINGS" -> "ABOUT ME" TO EDIT YOUR CSS

Editing your profile the normal way after adding CSS may also delete your code.

MAKE SURE TO SAVE ANY EXISTING CSS YOU HAVE DONE

If you have any CSS on your page save it on something like a notepad or Google Docs so you don't lose it.

Copy paste ALL of this and paste it into your "About Me" here
Yes, it's a lot, but you do need to copy and paste all of it for the full theme!

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
<style>
/* .CSS-0 */
.css-0{
   background: transparent !important;
}
/* PROFILE LAYOUT */
/* Elements that I couldn't necessarily categorise anywhere else */
/* Main page font - Changes font of the profile bio, bot summaries and tags*/
body{
   color: #dae9eb; /* OPTIONAL - Changes the profile bio text color, except text manually styled to be a specific color */
   font-family: "Cardo", serif;
   font-weight: 100;
}
/* Remove the filter from page background to give better image quality */
.pp-page-background{
   filter: none;
}
/* SVG - Announcement/Notification/Tags/etc. Icon Hover */
svg{
   fill: #dae9eb;
   transition: 0.2s;
}
svg:hover{
   fill: #e1cb9f;
}
/* SVG - Search bar - full opacity */
.css-bar9lc div:has(svg){
   opacity: 1;
}
/* PROFILE LAYOUT - Bottom Page Arrows - Container */
.pp-cc-list-container + div{
   align-items: center;
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #e1cb9f;
   border-radius: 0px;
   justify-content: center;
   position: relative;
   width: 100%;
}
/* Profile Layout - Bottom Page Arrow Container - extra borders */
.pp-cc-list-container + div::before, .pp-cc-list-container + div::after{
   border: 1px solid #dae9eb;
   content: "";
   inset: 0;
   pointer-events: none;
   position: absolute;
}
.pp-cc-list-container + div::before{
  transform: rotate(0.5deg);
}
.pp-cc-list-container + div::after{
  transform: rotate(-0.5deg);
}
/* PROFILE LAYOUT - Bottom Page Arrows - Arrows */
._navButton_5a6y6_84:disabled{
   opacity: 0.8;
}
._navButton_5a6y6_84:hover{
   background: none;
}
._navButton_5a6y6_84:hover svg{
   fill: #e1cb9f;
}
/* PROFILE LAYOUT - Bottom Page Arrows - Current Page */
._pageButtonActive_5a6y6_130{
   background: none !important;
   border: none !important;
   color: #e1cb9f !important;
   transition: 0.2s;
}
._pageButtonActive_5a6y6_130:hover {
   background: none !important;
   color: #efefef !important
}
/* PROFILE LAYOUT - Bottom Page Arrows - Page Numbers */
._pageButton_5a6y6_112{
   background: none;
   color: #dae9eb;
   transition: 0.2s;
}
._pageButton_5a6y6_112:hover{
   background: none;
   color: #e1cb9f;
}
/* TOOLTIPS */
/* The things that pop up like when hovering the bot card summary, message ribbon, tags, etc. with a text box */
/* The diamond on bot card summaries */
.css-1ugx2pr{
   background: #dae9eb !important;
}
.chakra-tooltip__arrow-wrapper.css-0{
   background: transparent !important;
}
/* Tooltip box styling */
.css-sdza1q, .css-ataym9, .css-1xt7epy, .css-1z0vr2k, .css-yl8rnf, .css-b19ce0, .css-1ltpmnj, .css-1mdyyu3{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #dae9eb;
   border-radius: 0px;
   color: #dae9eb;
   font-family: "Cardo", serif;
   font-size: 14px;
   font-weight: 100;
}
html:not(:has([class="StarlitMomentsCredit"])) .css-0::after{
   background: #dae9eb;
   content: "";
   inset: 0;
   pointer-events: none;
   position: fixed;
   z-index: 20000;
}
/* PROFILE BIO */
/* Profile Bio - background */
.pp-uc-background{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #e1cb9f;
   border-radius: 0px;
   position: relative;
}
.pp-uc-background::before, .pp-uc-background::after{
   border: 1px solid #dae9eb;
   content: "";
   inset: 0;
   pointer-events: none;
   position: absolute;
}
/* ADJUST THE ANGLE BASED ON BIO LENGTH! */
.pp-uc-background::before {
   transform: rotate(0.5deg);
}
.pp-uc-background::after {
   transform: rotate(-0.5deg);
}
/* Profile Bio - No shadow while hovering the bio */
.pp-uc-background:hover{
   box-shadow: none;
}
/* Profile Bio - PFP size + border and glow*/
.pp-uc-avatar{
   border: 1px solid #dae9eb;
   border-radius: 0px;
   box-shadow: 0 0 3px #ffffdc, 0 0 8px #dae9eb, 0 0 8px #293b5b, 0 0 15px #293b5b, 0 0 15px #0c0a13, 0 0 15px #0c0a13, 0 0 15px #0c0a13;
   height: 550px;
   width: auto;
}
/* Profile Bio - Moving the pfp away from the top border */
.pp-uc-avatar-container{
   padding-top: 5px;
}
/* Profile Bio - Swapping PFP and Text */
.css-1uodvt1{
   flex-direction: column;
}
/* Profile Bio - Centering Profile Text */
.css-70qvj9{
   justify-content: center;
}
/* Profile Bio - @ styling */
.pp-uc-title{
   -webkit-text-stroke: 1px #dae9eb;
   color: #0c0a13;
   font-family: "Orbitron", sans-serif;
   font-size: 40px;
   margin-top: -33px;
   text-shadow: 0 0 3px #ffffdc, 0 0 8px #dae9eb, 0 0 8px #293b5b, 0 0 15px #293b5b, 0 0 15px #0c0a13, 0 0 15px #0c0a13, 0 0 15px #0c0a13;
   z-index: 1;
}
/* Profile Bio - Followers */
/* Profile Bio - Followers - General Styling */
.pp-uc-followers-count {
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 23px;
   font-weight: 100;
   text-align: center;
}
/* Profile Bio - Followers - Hiding "Followers" Text */
.pp-uc-followers-count > span + span{
   font-size: 0;
}
/* Profile Bio - Followers - Follower Text Replacement */
.pp-uc-followers-count > span + span::after{
   content: "Stars orbiting the galaxy";
   font-size: 23px;
}
/* Profile Bio - Badges Centered + Filter */
.css-hjkukh{
   filter: sepia(1) saturate(1) brightness(1.4); /* You can just remove this if you don't like it */
   justify-content: center;
}
/* Profile Bio - Members Since - Positioning, Colour, Font */
.pp-uc-member-since{
   font-family: "Orbitron", sans-serif;
   font-size: 0px;
   text-align: center;
}
/* Profile Bio - Members Since - Text Replacement - Replace <DATE> with your "member since" date */
.pp-uc-member-since:after{
   color: #dae9eb;
   content: "Orbiting since <DATE>";
   font-size: 23px;
   font-weight: 100;
   text-align: center;
}
/* PROFILE BIO - DETAILS/SUMMARY */
/* Profile Bio - Details/Summary - Removing the arrow */
details>summary::marker{
   content: "";
}
details summary::-webkit-details-marker{
   display: none;
}
/* Profile Bio - Details/Summary - Title Colour, Font and Styling */
details > summary{
   border-radius: 0px;
   color: #dae9eb !important;
   font-family: "Orbitron", sans-serif;
   font-size: 23px;
   font-weight: 100;
   list-style-type: none;
   text-align: center;
   transition: 0.2s;
}
details > summary:hover{
   background: #0c0a13;
   color: #e1cb9f !important;
}
/* Profile Bio - Details/Summary - Summary Box Styling */
details>summary{
   border-radius: 0px;
   font-size: 23px;
   list-style: none;
   text-align: center;
}
/* Profile Bio - Details/Summary - Details Box styling general */
details{
   border: 1px solid #e1cb9f;
   border-radius: 0px;
   overflow: hidden;
   margin: auto;
   max-width: 550px;
   position: relative;
   transition: 0.2s;
}
/* Profile Bio - Details/Summary - Details Box styling even/odd gradient switch */
details:nth-of-type(odd){
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
}
details:nth-of-type(even){
   background: linear-gradient(310deg, #0c0a13, #0c0a13d9, #293b5bb3); 
}
/* Profile Bio - Details/Summary - Extra borders */
details::before, details::after{
   border: 1px solid #dae9eb;
   content: "";
   inset: 0;
   pointer-events: none;
   position: absolute;
   z-index: 1;
}
details::before{
   transform: rotate(1deg);
}
details::after{
   transform: rotate(-1deg);
}
/* Summary background while details is opened */
details[open] > summary{
   background: #0c0a13;
   border-bottom: 1px solid #e1cb9f;
   border-radius: 0px;
   color: #e1cb9f !important;
   transition: 0.2s;
}
/* Profile Bio - Details/Summary - Summary Box Spacing between the boxes - Increase number for a larger gap, use a lower number to put them closer together */
details:not(:last-of-type){
   margin-bottom: 30px;
}
/* PROFILE BIO - Follow Button - Centred */
.css-y9k5u7 { 
   flex-direction: column;
   justify-content: center;
   padding-bottom: 15px;
}
/* PROFILE BIO - Follow Button - General Styling */
.pp-uc-follow-button {
   align-items: center;
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3);
   background-position: left;
   background-size: 250%;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   display: flex;
   font-family: "Orbitron", sans-serif;
   font-size: 20px;
   font-weight: 100;
   height: 40px;
   justify-content: center;
   overflow: hidden;
   position: relative;
   transition: 0.2s !important;
   width: 240px;
}
.pp-uc-follow-button:hover {
   border: 1px solid #e1cb9f;
}
/* PROFILE BIO - Follow Button - Pushing Old Text Away */
.pp-uc-follow-button > span {
   font-size: 0px;
}
/* PROFILE BIO - Follow Button - "Follow" Text Replacement */
.pp-uc-follow-button:before {
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3);
   border-radius: 0px;
   color: #dae9eb;
   content: "Fly into orbit";
   transition: 0.2s;
   height: 40px;
   width: 240px;
}
/* PROFILE BIO - Follow Button - "Following" Text Replacement */
.pp-uc-follow-button[data-following=true]:before {
   color: #dae9eb;
   content: "Leave orbit";
}
/* PROFILE BIO - Follow Button - Hover */
.pp-uc-follow-button:hover:before {
   border-radius: 0px;
   color: #e1cb9f;
   transition: 0.2s;
}
.pp-uc-follow-button:active {
   transform: none;
}
/* PROFILE BIO - Options - Base styling */
.pp-uc-options-menu {
   align-items: center;
   background: linear-gradient(310deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #dae9eb;
   color: #dae9eb;
   border-radius: 0px;
   display: flex;
   flex-direction: row-reverse;
   font-family: "Orbitron", sans-serif;
   font-size: 20px;
   font-weight: 100;
   height: 40px;
   justify-content: center;
   overflow: hidden;
   position: relative;
   transition: 0.2s;
   width: 240px;
}
/* PROFILE BIO - Options - Background When Opened */
.pp-uc-options-menu:active, .pp-uc-options-menu[data-active] {
   background: linear-gradient(310deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #e1cb9f;
   color: #e1cb9f;
}
.pp-uc-options-menu:hover {
   background: linear-gradient(310deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #e1cb9f;
   color: #e1cb9f;
}
.pp-uc-options-menu:hover svg, .pp-uc-options-menu[data-active] svg {
   fill: #e1cb9f;
}
/* PROFILE BIO - Options - Block Text */
.pp-uc-options-menu-item {
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   padding-top: 7px;
   padding-bottom: 5px;
   text-align: center;
   transition: 0.2s;
   width: 240px;
}
/* PROFILE BIO - Options - Block Text - Hover */
.pp-uc-options-menu-item:hover {
   background: #0c0a13;
   border: 1px solid #e1cb9f;
   color: #e1cb9f;
}
.pp-uc-options-menu-item:hover svg {
   fill: #e1cb9f;
}
/* PROFILE BIO - Options - Block Text - Background */
.css-1f9crt2 {
   background: none;
   box-shadow: none;
}
/* PROFILE BIO - Options - Block Text - Icon */
.css-7halv9 {
   font-size: 1rem;
   padding-bottom: 3px;
}
/* Profile Bio - Options - Block Text - Bottom Padding*/
.css-fdshcw{
   padding-bottom: 10px;
}
/* BOT CARDS - TRANSPARENT LAYERS */
div:is(:has(> .css-1s5evre, ~ .css-1s5evre)):not(.pp-cc-wrapper){
   background: none;
}
.css-12lnk4a:hover, .css-v57joh:hover, .css-1n07wna:hover, .css-1n07wna[data-hover], .css-1sxhvxh:hover{
   box-shadow: none;
}
/* BOT CARDS - GENERAL STYLING */
/* Bot Cards - General - Bot Card Spacing to make them not overlap */
.pp-cc-list-container{
   gap: 35px 15px;
}
/* Bot cards - Background + borders */
.css-1s5evre{
   border-radius: 0px;
   transform: rotateZ(0deg);
}
.pp-cc-wrapper{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #e1cb9f;
   border-radius: 0px;
   position: relative;
   transition: 0.2s;
}
.pp-cc-wrapper::before, .pp-cc-wrapper::after{
   border: 1px solid #dae9eb;
   content: "";
   inset: 0;
   pointer-events: none;
   position: absolute;
   z-index: 1;
}
.pp-cc-wrapper::before{
   transform: rotate(1deg);
}
.pp-cc-wrapper::after{
   transform: rotate(-1deg);
}
.pp-cc-wrapper:hover{
   box-shadow: 0 0 3px #ffffdc, 0 0 8px #dae9eb, 0 0 8px #293b5b, 0 0 15px #293b5b, 0 0 15px #0c0a13, 0 0 15px #0c0a13, 0 0 15px #0c0a13;
}
/* MESSAGE COUNT RIBBON */
/* Bot Cards - Message Ribbon - Positioning */
.css-10cv7r2{
   right: 0px;
   top: -10px;
   transform: translate(50%, -50%) rotate(8deg);
   z-index: 1000;
}
/* Bot Cards - Message Ribbon - Remove Inset, Hide Overflow and Drop Shadow */
.pp-cc-ribbon{
   filter: none;
   overflow: visible;
   padding: 0;
}
/* Bot Cards - Message Ribbon - Remove shape, weird shadow and hide overflow */
.pp-cc-ribbon-wrap{
   background: transparent;
   border-radius: 0;
   box-shadow: none;
   clip-path: unset;
   inset: unset;
   overflow: visible;
   padding: 0;
}
/* Removing original icon */
.pp-cc-chats svg{
   display:none;
}
/* Text, background and new icon */
.pp-cc-chats{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   color: #e1cb9f;
  font-family: "Orbitron", sans-serif;
   justify-content: center;
   width: 100px;
}
.pp-cc-chats::before{
   content: "🚀";
   filter: sepia(1) saturate(1) brightness(1.4);
   font-size: 13px;
}
/* Bot Cards - Message Ribbon - Width */
 css-10cv7r2 * {
  width: 95%;
}
/* Bot Cards - Bot Names */
.css-nlxhw4 > div{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-weight: 100;
   font-size: 15px;
   font-weight: 100;
   letter-spacing: inherit;
   opacity: 1;
   text-shadow: none;
   text-transform: none;
   transition: 0.2s;
}
.css-nlxhw4:hover > div{
   color: #e1cb9f;
}
/* Bot Cards - Image size + top border + bottom fade*/
.css-1q7rmf0{
   border-top: 2px solid #e1cb9f;
   border-radius: 100px 100px 0px 0px;
   height: 270px;
   mask-image: linear-gradient(#000000, #00000080, #00000000);
   z-index: -1000;
}
/* Bot Cards - removing @ */
.css-1m151rf{
   display: none;
}
/* Bot Cards - Summary - General styling */
/* May require adjustment based on how you do your summaries. For more lines of text to show, adjust the "line-clamp:" property. Higher number = more lines, lower number = less lines of text. */
.css-96l1id{
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 5;
   color: #dae9eb;
   display: -webkit-box;
   font-family: "Cardo", serif;
   font-size: 13px;
   line-clamp: 5;
   overflow: hidden;
}
/* Bot Cards - Summary - Min Length to Align Lines */
/* If you adjusted "line-clamp:" it may be necessary to adjust the "<NUMBER>px;" here as well to ensure all bot bios show the same length. */
.css-199gcrh{
   min-height: 158px;
}
/* Bot Cards - Star and Line */
.pp-cc-star{
   filter: sepia(1) saturate(1) brightness(1.4);
   right: 50%;
   top: 50%;
   transform: translate(50%, -50%);
   margin-top: -0.5px;
}
.pp-cc-star-line{
   border-top: 1px solid #e1cb9f;
   width: 100%;
}
/* BOT CARDS - TAGS */
/* Bot Cards - Tag Styling - Limitless Text Replacement + Styling */
.pp-tag-limitless{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   font-size: 0px;
}
.pp-tag-limitless:after{
   content: "Planet info:";
   text-align: center;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   padding-bottom: 1px;
   padding-top: 2px;
}
/* Bot Cards - Tag Styling - Normal Tags */
.pp-cc-tags-regular{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 11px;
   font-weight: 100;
   height: 21px;
   padding-top: 1px;
   transition: 0.2s;
}
.pp-cc-tags-regular:hover{
   background: #293b5b;
   border: 1px solid #dae9eb;
   color: #dae9eb;
}
/* Bot Cards - Tag Styling - Custom Tags */
.pp-cc-tags-custom{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 11px;
   font-weight: 100;
   height: 21px;
   padding-top: 2px;
   transition: 0.2s;
}
.pp-cc-tags-custom:hover{
   background: #293b5b;
   border: 1px solid #dae9eb;
   color: #dae9eb;
}
/* Bot Cards - Custom Tags - Capitalising first letter */
.pp-cc-tags-custom::first-letter{
   text-transform: capitalize;
}
/* Bot Cards - Tag Styling - Removing Emotes */
.pp-cc-tags-regular{
   display: inline-block;
   line-height: unset;
   padding-left: 1px;
}
.pp-cc-tags-regular::first-letter{
   font-size: 0;
}
/* Bot Cards - Tag Styling - Dead Dove Text Replacement */
a[href*="/search?mode=all&sort=popular&tag_id=49&page=1"] .pp-cc-tags-regular{
   font-size: 0;
   padding-left: 9px;
}
a[href*="/search?mode=all&sort=popular&tag_id=49&page=1"] .pp-cc-tags-regular::after{
   color: #dae9eb;
   content: 'Dead Dove';
  font-family: "Orbitron", sans-serif;
   font-size: 11px;
   font-weight: 100;
   transition: 0.2s;
}
a[href*="/search?mode=all&sort=popular&tag_id=49&page=1"] .pp-cc-tags-regular:hover::after{
   color: #dae9eb;
}
/* Bot Cards - Tag Styling - Positioning */
.css-k1urot{
   display: grid;
   grid-template-columns: 48% 48%;
   justify-content: center;
   padding-bottom: 8px;
}
.css-123m5uu{
   grid-column: 1 / 3;
}
.pp-tag-limitless, .css-4a6x12, .pp-cc-tags-regular, .css-k1urot > li > a > span:not(.pp-cc-tags-regular){
   width: 100%;
}
.pp-cc-tags-regular, .css-k1urot > li > a > span:not(.pp-cc-tags-regular){
   display: inline-block;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}
.css-k1urot > li > a > span:not(.pp-cc-tags-regular){
   min-width: 81px;
}
/* Bot Cards - Removing Event Decorations */
.css-nip9dx, .css-1wqmh16, .css-xrg4vd, .css-5v5qgx, .css-1awld45, .css-1cui3us{
   display: none;
}
/* Bot Cards - Tokens */
.pp-cc-tokens-count{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 13px;
   font-weight: 100;
   letter-spacing: inherit;
   opacity: 1;
   padding-bottom: 4px;
   text-shadow: none;
}
/* BOT SEARCH + FILTERS */
/* Bot search + filters - General - Spacing everything out */
.css-zdpt2t, .css-mcoi9a, .css-1cdqd3a, .css-1pfxi6a, .css-6su6fj{
   display: contents;
}
.css-mcoi9a{
   z-index: 5;
}
/* Bot search + filters - General - Search Bar Widening */
.css-1jy826p{
   flex: 1 1 100%;
   order: -1;
}
.css-1n2in4t, .css-8l42c1{
   flex-shrink: 0;
}
.css-3rot3{
   max-width: 100%;
   width: 100%;
}
/* Bot search + filters - General - Search bar above rest */
.css-m8ywhg{
   align-content: center;
   align-items: center;
   flex-flow: row wrap;
   gap: 8px;
   justify-content: center;
   position: relative;
   width: 100%;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Latest Text + Hover */
.transparent .react-select__single-value{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   transition: 0.2s;
}
.react-select__control.css-13cymwt-control:hover, .react-select__control--is-focused:hover, .default .react-select__control:hover{
   border: 1px solid #dae9eb;
}
.transparent .react-select__control:focus{
   border-color: #dae9eb !important;
}
.default .react-select__control{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   padding-right: 5px;
   text-align: center;
   width: 150px;
}
.default .react-select__control:hover{
   background: #293b5b;
   color: #e1cb9f;
}
.css-13cymwt-control:hover .react-select__single-value{
   color: #e1cb9f;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Seperator Line */
.react-select__indicator-separator.css-1u9des2-indicatorSeparator{
   display: none;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Menu Open Button Styling */
.transparent .react-select__control--is-focused .react-select__single-value, .transparent .react-select__control--menu-is-open .react-select__single-value{
   color: #e1cb9f;
}
.default .react-select__control--is-focused, .default .react-select__control--menu-is-open {
   background: #293b5b;
   border: 1px solid #dae9eb;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Indicator arrow */
.css-b62m3t-container svg{
   color: #dae9eb !important;
   transition: 0.2s;
}
.css-b62m3t-container:hover svg{
   color: #e1cb9f !important;
}
.css-b62m3t-container:has(.react-select__control--is-focused) svg, .css-b62m3t-container:has(.react-select__control--menu-is-open) svg {
   color: #e1cb9f !important;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Dropdown Menu - General Styling */
.dark .react-select__menu, .transparent .react-select__menu, .react-select__menu-portal .react-select__menu{
   backdrop-filter: none;
   background: none;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   box-shadow: none;
   overflow: hidden;
   width: 150px;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - General Styling - Blur */
.css-b62m3t-container .react-select__menu{
   background: #0c0a13;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - General Styling - Seperator Lines */
.dark .react-select__option, .transparent .react-select__option, .react-select__menu-portal .react-select__option{
   border-bottom: 1px solid #dae9eb;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Dropdown - Top and Bottom Line of Menu */
.css-qr46ko{
   background-color: #0000;
   padding: 0;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Dropdown - List */
.react-select__menu-list{
   background-color: #0000;
   border: 1px solid #0000;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Options */
.react-select__option{
   background: none !important;
   color: #dae9eb !important;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   transition: 0.2s;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Options - Hover */
.react-select__option:hover{
   background: #293b5b !important;
   color: #dae9eb !important;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Options - When Clicked */
.react-select__option--is-selected{
   background: #293b5b !important;
   color: #dae9eb !important;
}
/* BOT SEARCH + FILTERS - TAG MENU */
/* Bot search + filters - Tag Menu - Icon - General Styling */
.pp-fl-filter-button{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
}
.pp-fl-filter-button:hover{
   background: #293b5b;
}
.pp-fl-filter-button:hover svg{
   fill: #e1cb9f;
}
/* Bot search + filters - Tag Menu - Menu - General Styling */
.chakra-ui-dark .css-1dljitb:not([data-theme]), [data-theme="dark"] .css-1dljitb:not([data-theme]), .css-1dljitb[data-theme="dark"]{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #e1cb9f;
   border-radius: 0px;
   box-shadow: none;
   position: relative;
}
/* Bot search + filters - Tag Menu - Menu - Extra Borders */
.css-1dljitb::before, .css-1dljitb::after{
   border: 1px solid #dae9eb;
   content: "";
   inset: 0;
   pointer-events: none;
   position: absolute;
   z-index: 1;
}
.css-1dljitb::before{
   transform: rotate(1deg);
}
.css-1dljitb::after{
   transform: rotate(-1deg);
}
/* Bot search + filters - Tag Menu - Menu - Tag Styling */
.css-1w58nos{
   background: #0c0a13;
   border: 1px solid #dae9eb !important;
   border-radius: 0px;
   box-shadow: none !important;
   color: #dae9eb;
   display: inline;
   font-family: "Orbitron", sans-serif;
   font-size: 12px;
   font-weight: 100;
   overflow: hidden;
   text-align: center;
   transition: 0.2s;
   width: 150px;
}
.css-1w58nos:hover{
   background: #293b5b;
   border: 1px solid #dae9eb !important;
   color: #dae9eb;
}
/* Tag Menu - Tags - Selected */
.css-oqdsp6{
   background: #293b5b;
   border: 1px solid #dae9eb !important;
   border-radius: 0px;
   color: #dae9eb;
   display: inline;
   font-family: "Orbitron", sans-serif;
   font-size: 12px;
   font-weight: 100;
   text-align: center;
   width: 150px;
}
/* Bot search + filters - Tag Menu - Stopping Tags from changing size */
.css-oqdsp6:active, .css-oqdsp6[data-active], .css-1w58nos:active, .css-1w58nos[data-active]{
   transform: none;
}
/* Bot search + filters - Tag Menu - Tags - No Emote */
.css-1w58nos::first-letter, .css-oqdsp6::first-letter{
   font-size: 0;
}
/* Bot search + filters - Tag Menu - Menu - Filters Text */
.css-dcyl1x{
   color: #dae9eb;
   display: flex;
   font-family: "Orbitron", sans-serif;
   font-size: 30px;
   font-weight: 100;
   justify-content: center;
}
/* Bot search + filters - Tag Menu - Menu - Tags Text */
.css-178jenf{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 23px;
   font-weight: 100;
   display: flex;
   justify-content: center;
}
/* Bot search + filters - Tag Menu - Menu - Show/Hide All Tags */
.css-11dtrcq{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   transition: 0.2s;
   width: 100%;
}
.css-11dtrcq:hover{
   color: #dae9eb;
   background: #293b5b;
   border: 1px solid #dae9eb;
}
/* Bot search + filters - Tag Menu - Menu - X Styling + Hover */
.css-onkibi{
   color: #dae9eb;
   transition: 0.2s;
}
.css-onkibi:hover{
   color: #e1cb9f;
}
.css-lyo4r5:hover{
   background: none;
}
.css-lyo4r5:hover .css-onkibi{
   color: #e1cb9f;
}
/* Bot search + filters - Tag Menu - Spinny Loading Thing */
.css-1q78gs5{
   border-right: 1px solid #dae9eb;
   border-top: 1px solid #dae9eb;
}
/* BOT SEARCH + FILTERS - SEARCH BAR */
/* Bot search + filters - Search Bar - Not Active No Hover Border + Background */
.pp-fl-search-input{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #dae9eb;
   border-radius: 0px;
}
/* Bot search + filters - Search Bar - Not Active Hover Border + Background */
.pp-fl-search-input:hover{
   border: 1px solid #e1cb9f;
   box-shadow: none;
}
/* Bot search + filters - Search Bar - Text Colour + Hover */
.pp-fl-search-input::placeholder{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   transition: 0.2s;
}
.pp-fl-search-input:hover::placeholder{
   color: #e1cb9f;
}
/* Bot search + filters - Search Bar - Active No Hover Border */
.pp-fl-search-input:hover, .pp-fl-search-input:focus{
   border: 1px solid #e1cb9f;
   border-radius: 0px;
   box-shadow: none;
}
/* Bot search + filters - Search Bar - Active Text click off */
.pp-fl-search-input{
   color: #dae9eb;
   outline: none !important;
}
.css-19akvax:hover{
   border: 1px solid #e1cb9f;
   color: #e1cb9f;
}
/* BUTTONS, FILTERS AND SEARCH - Search Bar - SVG Visibility */
.pp-fl-search-input:hover::placeholder, .pp-fl-search-input:focus::placeholder{
   color: #e1cb9f;
}
.profile-character-search-input-group:hover svg, .profile-character-search-input-group:has(.pp-fl-search-input:focus) svg{
   fill: #e1cb9f;
}
/* BOT SEARCH + FILTERS - TOTAL CHARACTERS */
/* Bot search + filters - Total Characters - General Styling */
.pp-pg-total{
   background: #0c0a13;
   background-image: none;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   height: 40px;
   box-shadow: none;
}
.pp-pg-total:before{
   background: none;
}
.pp-pg-total:hover{
   border: 1px solid #dae9eb;
   text-shadow: none;
}
.css-1fghc3k > .css-wd8hou{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100 !important;
   overflow: hidden;
   text-wrap: nowrap;
   width: 150px;
}
.css-1fghc3k > .css-wd8hou strong:after{
   color: #dae9eb;
   content: "Destinations";
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   margin-right: 200px;
   padding-left: 10px;
}
/* Number not bold */
.pp-pg-total-count{
   font-weight: 100;
}
/* Making it not move on clicks */
.Btn2-purple:active{
   transform: none;
}
/* Bot search + filters - CHARACTERS */
/* Bot search + filters - Characters - General */
.pp-tabs-wrapper{
   align-items: center;
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   height: 40px;
   justify-content: center;
   width: 220px;
}
/* Bot search + filters - Characters - Text */
.css-1jj3srb[aria-selected=true], .css-1jj3srb[data-selected]{
   color: #dae9eb;
}
.css-1jj3srb{
   display: flex;
   font-family: "Orbitron", sans-serif;
   font-size: 0px;
   font-weight: 100;
   letter-spacing: unset;
   text-transform: none;
   text-wrap: nowrap;
}
.css-1jj3srb::after{
   content: "Galaxies";
   font-size: 23px;
}
/* Bot search + filters - Characters - Blue Line */
.css-1y3jyt3{
   display: none;
}
/* HEADER */
/* HEADER - PROFILE MENU */
/* Header - Profile Menu - Icon - No Background When Clicked */
.css-128hf7l:active, .css-128hf7l[data-active]{
   background: none;
   border-radius: 0px;
}
/* Header - Profile Menu - Icon - No moving when hovered */
.pp-top-bar-app-menu:hover>span>*{
   transform: none;
}
/* Header - Profile Menu - Main Styling */
.pp-top-bar-app-menu-list{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #dae9eb;
   border-radius: 0px;
   box-shadow: none;
   overflow: hidden;
}
/* Header - Profile Menu - Centering Text */
.pp-top-bar-app-menu-list-item{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   text-align: center;
   transition: 0.2s;
}
/* Header - Profile Menu - Hover */
.pp-top-bar-app-menu-list-item:hover{
   background: #293b5b;
   color: #dae9eb;
}
/* Header - Profile Menu - Divider Lines */
.css-1hmyng0{
   background: #dae9eb;
   opacity: 1;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icon Styling */
._notificationsContainer_16xfi_2, ._notificationsContainer_1p8j9_2{
   background: none;
}
._notificationsContainer_16xfi_2:hover, ._notificationsContainer_1p8j9_2:hover{
   background: #none !important;
}
._notificationsContainer_16xfi_2:has(._notificationsPopover_16xfi_72) [type="button"] svg + :is(div, span){
   background: #e1cb9f;
}
._notificationsContainer_16xfi_2:has(._notificationsPopover_16xfi_72), ._notificationsContainer_1p8j9_2:has(._notificationsPopover_1p8j9_72){
   background: #none;
}
._notificationsButton_16xfi_7:hover, ._notificationsButton_1p8j9_7:hover{
   background: none;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Unread Notification Dot */
[type="button"] svg + :is(div, span){
   animation: unset !important;
   background: #dae9eb;
   border-radius: 50%;
   box-shadow: none;
   color: #0000;
   height: 0.5rem !important;
   min-width: unset;
   padding: unset;
   right: 10px;
   text-align: center;
   top: 0.5rem;
   transition: 0.2s;
   width: 0.5rem !important;
}
[type="button"]:hover svg + :is(div, span){
   background: #e1cb9f;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icon Transitions */
._notificationIcon_16xfi_31, ._notificationIcon_1p8j9_31{
   transition: 0.3s;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icons Changing on Hover / Sticking When Open */
._notificationsButton_16xfi_7:hover ._notificationIcon_16xfi_31, ._notificationsButton_1p8j9_7:hover ._notificationIcon_1p8j9_31, ._notificationsContainer_16xfi_2:has(._notificationsPopover_16xfi_72) ._notificationIcon_16xfi_31, ._notificationsContainer_1p8j9_2:has(._notificationsPopover_1p8j9_72) ._notificationIcon_1p8j9_31{
   fill: #e1cb9f;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icons Not Moving */
._notificationsButton_16xfi_7:active, ._notificationsButton_1p8j9_7:active{
   background: none;
   transform: none;
}
/* HEADER - Menus - Loading spinny thing */
[class*="_loadingSpinner_"]{
   border: 3px solid #e1cb9f1a !important;
   border-top: 3px solid #e1cb9f !important;
}
/* HEADER - Menus - Background for notifications and menus */
[class*="Popover_"]{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border: 1px solid #dae9eb;
   border-radius: 0px;
}
/* HEADER - Menus - Loading section text */
[class*="_loadingMessage_"]{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
}
/* HEADER - Menus - Headers */
[class*="popoverHeader_"]{
   background: none;
   border-bottom: 1px solid #dae9eb;
   justify-content: center;
}
/* HEADER - Menus - Top bar titles text */ 
[class*="popoverTitle_"]{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 23px;
   font-weight: 100;
   letter-spacing: unset;
   text-transform: uppercase;
}
/* HEADER - Menus - Top bar close button + hover */
[class*="popoverHeader_"] button{
   background: none;
   position: relative;
   right: -70px;
   transition: 0.2s;
}
[class*="popoverHeader_"] button:hover{
   background: none;
}
/* HEADER - Menus - Top bar close + mark all read hovers */
._markAllReadButton_16xfi_123:hover svg, ._closeButton_16xfi_124:hover svg, ._closeButton_1p8j9_118:hover svg{
   fill: #e1cb9f;
}
/* HEADER - Menus - Scrollbar */
[class*="notificationsList_"]::-webkit-scrollbar-thumb{
   background: #dae9eb80;
}
[class*="notificationsList_"]::-webkit-scrollbar-track{
   background: #0000;
}
/* HEADER - Menus - Seperator Lines + Min Height */
[class*="_notificationItem_"]{
   border-bottom: 1px solid #dae9eb;
}
/* HEADER - Menus - Notification hovers */
[class*="_notificationItem_"]:hover{
   background: #293b5b;
}
[class*="_contentWrapperUnread_"]:hover{
   background: #0000 !important;
}
._contentWrapper_18k4v_76, ._contentWrapper_18k4v_76:hover{
   background: none;
}
/* HEADER - Menus - Notification text titles */
._subject_18k4v_107, ._notificationTitle_1p8j9_222, ._subjectUnread_18k4v_116{
   font-family: "Orbitron", sans-serif;
   font-weight: 100;
}
[class*="_notificationTitle_"], [class*="_subject_"]{
   color: #dae9eb;
}
/* HEADER - Menus - Unread Notif title */
[class*="_subjectUnread_"]{
   -webkit-background-clip: unset;
   -webkit-text-fill-color: unset;
   background: unset;
   background-clip: unset;
   color: #dae9eb;
}
/* HEADER - Menus - Notification text body */
[class*="_notificationMessage_"], [class*="_body_"]{
   color: #dae9eb;
   font-family: "Cardo", serif;
   font-weight: 100;
}
/* HEADER - Menus - Notification text time */
[class*="_notificationTime_"], [class*="_timestamp_"]{
   color: #dae9eb;
}
/* HEADER - Menus - Announcement link colour */
[class*="_notificationLink_"]{
   color: #e1cb9f;
   transition: 0.2s;
}
[class*="_notificationLink_"]:hover{
   color: #dae9eb;
}
/* HEADER - Menus - New Notif Indicator */
[class*="Indicator_"]{
   background: #e1cb9f;
   width: 3px;
}
/* HEADER - Menus - Trash icon */
[class*="_archiveButton"]{
   backdrop-filter: unset;
   background: none;
}
[class*="_archiveButton"]:hover{
   background: none;
}
[class*="_archiveButton"]:hover svg{
   fill: #e1cb9f;
}
/* HEADER - Menus - Notification Char + User image */
[class*="_userAvatar_"]{
   box-shadow: unset;
   height: 50px;
   width: 50px;
}
._userAvatar_18k4v_56{
   bottom: -40px;
   right: -15px;
}
[class*="_characterAvatar_"]{
   border-radius: 0px;
   height: 100px;
   width: 75px;
}
/* HEADER - Menus - Notifications Load More */
._loadMoreButton_16xfi_382{
   background: none;
   border-top: 1px solid #dae9eb;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   font-weight: 100;
   transition: 0.2s;
}
._loadMoreButton_16xfi_382:hover{
   background: #293b5b;
   border-top: 1px solid #dae9eb;
   color: #e1cb9f;
}
/* HEADER - Menus - No Announcements/Notifications + Extra Text Colour */
._emptyStateMessage_1p8j9_306, ._emptyStateTitle_1p8j9_299, ._emptyState_16xfi_298{
   color: #dae9eb;
   font-weight: 100;
}
/* HEADER - Menus - No Announcements Icon */
._emptyStateIcon_1p8j9_293, ._emptyStateIcon_1p8j9_293:hover{
   opacity: 1;
   fill: #dae9eb;
}
/* HEADER - CREATE CHARACTER */
/* Header - Create Character - Removing Text and Sizing*/
.css-1yhasuw{
   color: #0c0a13;
   -webkit-text-stroke: 1px #dae9eb;
   background: #0000;
   border: none;
   font-family: "Orbitron", sans-serif;
   font-size: 0px;
   height: 40px;
   text-shadow: 0 0 3px #ffffdc, 0 0 8px #dae9eb, 0 0 8px #293b5b, 0 0 15px #293b5b, 0 0 15px #0c0a13, 0 0 15px #0c0a13, 0 0 15px #0c0a13;
   transition: 0.2s;
   width: 300px;
}
/* Header - Create Character - Replacement Text */
.css-1yhasuw:after{
   content: "Build a space ship";
   font-size: 23px;
   font-weight: 100;
}
.css-1yhasuw:hover{
   color: #dae9eb;
}
.glow-on-hover:before{
   background: none;
}
.glow-on-hover::after{
   background: none;
   margin-top: 3px;
   opacity: 1;
   transition: 0s;
}
.glow-on-hover:active{
   background: #293b5b;
   border-radius: 0px;
   color: #dae9eb;
}
/* HEADER - SEARCH BAR */
/* Header - Search Bar - Shape + Background */
.pp-top-bar-search{
   background: #0c0a13;
   border: 1px solid #dae9eb;
   border-radius: 0px;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   transition: 0.2s;
}
.pp-top-bar-search:hover, .pp-top-bar-search[data-hover]{
   background: #293b5b;
   box-shadow: none;
}
/* Header - Search Bar - Text */
#search-input::placeholder{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 15px;
   position: relative;
   transition: 0.2s;
}
._mentions--singleLine_gae3o_1 ._mentions__input_gae3o_11::placeholder{
   font-family: "Orbitron", sans-serif;
}
/* Header - Search Bar - X + Other Icon */
.css-18v3gqg, .css-j1p8gu{
   opacity: 1;
}
/* HEADER - JANITOR LOGO */
/* Header - Janitor Logo - JanitorAI */
.pp-top-bar-logo-name{
   font-size: 0px !important;
}
/* Header - Janitor Logo - JanitorAI Text Replacement */
.pp-top-bar-logo-name::after{
   color: #0c0a13;
   -webkit-text-stroke: 1px #dae9eb;
   content: "Andromeda";
   font-family: "Orbitron", sans-serif;
   font-size: 27px;
   font-weight: 100;
   text-shadow: 0 0 3px #ffffdc, 0 0 8px #dae9eb, 0 0 8px #293b5b, 0 0 15px #293b5b, 0 0 15px #0c0a13, 0 0 15px #0c0a13, 0 0 15px #0c0a13;
   transition: 0.2s;
}
 .pp-top-bar-logo-name:hover::after{
   color: #dae9eb;
}
/* Header - Janitor Logo - beta */
.pp-top-bar-logo-sub-name{
   display: none;
}
/* Header - Janitor Logo - New Border, Background and Box-Shadow Removed */
 .pp-top-bar-logo{
   border: 1px solid #00000000;
   border-radius: 0px;
   height: 40px;
   transition: 0.2s;
   width: 300px;
}
/* Header - Janitor Logo - Backdrop-Filter Removed */
.glow-logo{
   backdrop-filter: none;
}
.glow-logo:is(:hover, :focus){
   color: color;
   text-shadow: none;
}
/* MEDIA QUERY STUFF - PC */
/* Code that will only affect users who look at your page using PC */
@media(min-width: 767px){
/* HEADER */
/* Header - General styling */
.pp-top-bar{
   border-radius: 0px;
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   transition: 0.2s;
   border-bottom: 1px solid #e1cb9f;
   border-left: 1px solid #e1cb9f;
   border-right: 1px solid #e1cb9f;
}
.pp-top-bar::before, .pp-top-bar::after {
  content: "";
  position: absolute;
  inset: 0;
   border-bottom: 1px solid #dae9eb;
   border-left: 1px solid #dae9eb;
   border-right: 1px solid #dae9eb;
   pointer-events: none;
   z-index: 1;
}
.pp-top-bar::before {
  transform: rotate(0.5deg);
}
.pp-top-bar::after {
  transform: rotate(-0.5deg);
} }
/* MOBILE FIXES */
/* Code that will only affect users who look at your page using mobile */
@media(max-width: 767px){
/* Mobile Header - Top */
.pp-top-bar{
   background: linear-gradient(130deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border-radius: 0px;
   border-bottom: 1px solid #dae9eb;
   box-shadow: 0 0 3px #ffffdc, 0 0 8px #dae9eb, 0 0 8px #293b5b, 0 0 15px #293b5b, 0 0 15px #0c0a13, 0 0 15px #0c0a13, 0 0 15px #0c0a13;
}
/* Mobile Header - Bottom */
.pp-mnb-container{
   background: linear-gradient(310deg, #0c0a13, #0c0a13d9, #293b5bb3); 
   border-radius: 0px;
   border-top: 1px solid #dae9eb;
   box-shadow: 0 0 3px #ffffdc, 0 0 8px #dae9eb, 0 0 8px #293b5b, 0 0 15px #293b5b, 0 0 15px #0c0a13, 0 0 15px #0c0a13, 0 0 15px #0c0a13;
}
/* Mobile Header - Text */
/* Font size may need to be adjusted based on @ length, if the text is too large it'll disappear */
.css-16g2f4q, .css-1rokoft{
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 13px;
   font-weight: 100;
}
/* Profile Bio - PFP size */
.pp-uc-avatar{
   height: 450px;
   width: auto;
}
/* Profile Bio - Follower Button - Placing Options below Follow to ensure it's easy for people to block you */
.css-y9k5u7{
   flex-direction: column;
}
/* FIlters and Bot search + filters - Space between it and bot cards */
.css-m8ywhg{
   padding-bottom: 30px;
}
/* Tag width */
.css-k1urot > li > a > span:not(.pp-cc-tags-regular){
   min-width: 73px;
}
/* Tag Menu Tags Width */
.css-1w58nos{
   width: 140px !important;
   font-size: 11px;
}
/* Header - Profile Menu - Mobile - Removing icon background */
.css-1u2nttd:active, .css-1u2nttd[data-active]{
   background: none;
   border-radius: 0px;
} }
.credit{
   bottom: 0px;
   color: #dae9eb;
   font-family: "Orbitron", sans-serif;
   font-size: 10px;
   opacity: 0.8;
   position: absolute;
}
</style>
<div class="StarlitMomentsCredit">
<p>CSS done by <a href="https://janitorai.com/profiles/715f6db3-9ea6-4ef6-8caa-1521f85a7d00_profile-of-cyanoide">@Cyanoide</a>.</p>
</div>

Witches 'n Whispers

Preview 1
Preview 2

Background image and important notes

If you haven't yet, I do recommend taking a peek at the "Before we get started" section here.

Background image:
This background has been generated by me using AI, @Cyanoide, a mosaic filter was used to reduce the mess from the Ai gen. You can find the background image here.
It looks like this:
Witches 'n Whispers Background

Important notes:
The code uses an image with an aspect ratio of 2:3. If your profile picture is a different size, you may want to adjust this until it looks the way you want it to. .pp-uc-avatar is also mentioned a second time in the code within the media query.

1
2
3
4
5
6
7
8
9
/* Profile Bio - PFP size + border */
.pp-uc-avatar{
   box-shadow: none;
   border: 2px solid #dec89d;
   border-radius: 0px;
   height: 550px;
   margin-top: 10px;
   width: auto;
}

Then there's the "Member since" code that may require an adjustment, which looks like this in the code:

1
2
3
4
5
6
7
8
/* Profile Bio - Members Since - Text Replacement - Replace <DATE> with your "member since" date */
.pp-uc-member-since:after{
   color: #fff;
   content: "Last saved: <date>";
   font-size: 35px;
   font-weight: 100;
   text-align: center;
}

Make sure to replace <DATE> with your join date!

If you decide to change FONTS, please be aware you will likely need to resize all the font sizes

The fonts I used all are very small compared to a lot of the other available fonts. This will mean resizing them all could be required if you decide to use a different font with this theme.

Lastly, the background placed behind the follow and options buttons will show even though those two buttons themselves aren't visible on your own account. It will look weird on your own page, but this is intentional.
Example

Code

Last Updated: 26/09/2025

REMEMBER: If you are someone who struggles with CSS or is not too familiar with how it works, all code must be encased with <style> and </style>. I only put <style> at the start and </style> at the end. If you only take certain elements from this, make sure everything is within <style></style> or else it won't work!

There will be notes with the code to mark what each part is. Hopefully these are clear enough.

MAKE SURE TO ONLY USE "SETTINGS" -> "ABOUT ME" TO EDIT YOUR CSS

Editing your profile the normal way after adding CSS may also delete your code.

MAKE SURE TO SAVE ANY EXISTING CSS YOU HAVE DONE

If you have any CSS on your page save it on something like a notepad or Google Docs so you don't lose it.

Copy paste ALL of this and paste it into your "About Me" here
Yes, it's a lot, but you do need to copy and paste all of it for the full theme!

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
<style>
/* Remove the filter from page background to give better image quality */
.pp-page-background{
   filter: none;
}
/* .CSS-0 */
.css-0{
   background: transparent !important;
}
/* PROFILE LAYOUT */
/* Elements that I couldn't necessarily categorise anywhere else */
/* Main page font - Changes font of the profile bio, bot summaries and tags */
body{
   color: #fff;
   font-family: "VT323", monospace;
   font-weight: 400;
}
/* PROFILE LAYOUT - Bottom Page Arrows - Container */
.pp-cc-list-container + div{
   align-items: center;
   background: #271a2f; 
   border: 3px solid #dec89d;
   border-radius: 0px;
   justify-content: center;
   position: relative;
   width: 100%;
}
/* PROFILE LAYOUT - Bottom Page Arrows - Arrows */
._navButton_5a6y6_84:disabled{
   opacity: 0.8;
}
._navButton_5a6y6_84{
   bbackground: none;
}
._navButton_5a6y6_84:hover{
   background: none;
}
._navButton_5a6y6_84:hover svg{
   fill: #bfeb91;
}
/* PROFILE LAYOUT - Bottom Page Arrows - Current Page */
._pageButtonActive_5a6y6_130{
   background: none !important;
   color: #bfeb91 !important;
   transition: 0.2s;
}
._pageButtonActive_5a6y6_130:hover {
   background: none !important;
   color: #fff !important
}
/* PROFILE LAYOUT - Bottom Page Arrows - Page Numbers */
._pageButton_5a6y6_112{
   background: none;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
   transition: 0.2s;
}
._pageButton_5a6y6_112:hover{
   background: none;
   color: #bfeb91;
}
/* SVGs - Icons like the announcement/notification button and tag menu icon on the page */
svg{
   fill: #fff;
   transition: 0.2s;
}
svg:hover{
   fill: #bfeb91;
}
html:not(:has([class="WitchesNWhispersCredit"])) .css-0::after{
   background: #fff;
   content: "";
   inset: 0;
   pointer-events: none;
   position: fixed;
   z-index: 20000;
}
/* TOOLTIPS */
/* The things that pop up like when hovering the bot card summary, message ribbon, tags, etc. with a text box */
/* The diamond on bot card summaries */
.css-1ugx2pr{
   display: none !important;
}
.chakra-tooltip__arrow-wrapper.css-0{
   background: transparent !important;
}
/* Tooltip box styling */
.css-sdza1q, .css-ataym9, .css-1xt7epy, .css-1z0vr2k, .css-yl8rnf, .css-b19ce0, .css-1ltpmnj, .css-1mdyyu3{
   background: #271a2f; 
   border: 3px solid #dec89d;
   border-radius: 0px;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
}
/* PROFILE BIO */
/* Profile bio - no box shadow hover and width */
.pp-uc-background{
   max-width: 580px;
}
.pp-uc-background:hover{
   box-shadow: none;
}
/* Profile Bio - Centering Profile Text */
.css-70qvj9{
   justify-content: center;
}
/* Profile Bio - PFP size + border */
.pp-uc-avatar{
   box-shadow: none;
   border: 2px solid #dec89d;
   border-radius: 0px;
   height: 550px;
   margin-top: 10px;
   width: auto;
}
/* Profile Bio - PFP above other stuff + background profile info */
.css-1uodvt1{
   background: #271a2f;
   flex-direction: column;
   mask: conic-gradient(at 40px 40px,#000 75%,#0000 0) -20px -20px;
   position: relative;
}
.css-1uodvt1:before{
   background: #dec89d;
   clip-path: polygon(0 20px,20px 20px,20px 0,calc(100% - 20px) 0,calc(100% - 20px) 20px,100% 20px,100% calc(100% - 20px),calc(100% - 20px) calc(100% - 20px),calc(100% - 20px) 100%,20px 100%,20px calc(100% - 20px),0 calc(100% - 20px),0 20px,3px  calc(20px + 3px),3px calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(20px + 3px),calc(100% - 20px - 3px) calc(20px + 3px),calc(100% - 20px - 3px) 3px,calc(20px + 3px) 3px,calc(20px + 3px) calc(20px + 3px),3px calc(20px + 3px));
   content: "";
   inset: 0px;
   position: absolute;
}
/* Profile Bio - About Me background & font size */
.pp-uc-about-me{
   background: #271a2f;
   flex-direction: column;
   font-size: 17px;
   mask: conic-gradient(at 40px 40px,#000 75%,#0000 0) -20px -20px;
   padding: 25px 15px 25px 15px;
   position: relative;
}
.pp-uc-about-me:before{
   background: #dec89d;
   clip-path: polygon(0 20px,20px 20px,20px 0,calc(100% - 20px) 0,calc(100% - 20px) 20px,100% 20px,100% calc(100% - 20px),calc(100% - 20px) calc(100% - 20px),calc(100% - 20px) 100%,20px 100%,20px calc(100% - 20px),0 calc(100% - 20px),0 20px,3px  calc(20px + 3px),3px calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(20px + 3px),calc(100% - 20px - 3px) calc(20px + 3px),calc(100% - 20px - 3px) 3px,calc(20px + 3px) 3px,calc(20px + 3px) calc(20px + 3px),3px calc(20px + 3px));
   content: "";
   inset: 0px;
   position: absolute;
}
/* Profile Bio - @ */
.pp-uc-title{
   background: #271a2f;
   color: #fff;
   font-family: "Jacquard 12", system-ui;
   font-size: 60px;
   font-weight: 100;
   margin-top: -45px;
   mask: conic-gradient(at 20px 20px,#000 75%,#0000 0) -10px -10px;
   padding-left: 15px;
   padding-right: 15px;
   position: relative;
   z-index: 100;
}
.pp-uc-title:before{
   background: #dec89d;
   clip-path: polygon(0 10px,10px 10px,10px 0,calc(100% - 10px) 0,calc(100% - 10px) 10px,100% 10px,100% calc(100% - 10px),calc(100% - 10px) calc(100% - 10px),calc(100% - 10px) 100%,10px 100%,10px calc(100% - 10px),0 calc(100% - 10px),0 10px,3px  calc(10px + 3px),3px calc(100% - 10px - 3px),calc(10px + 3px) calc(100% - 10px - 3px),calc(10px + 3px) calc(100% - 3px),calc(100% - 10px - 3px) calc(100% - 3px),calc(100% - 10px - 3px) calc(100% - 10px - 3px),calc(100% - 3px) calc(100% - 10px - 3px),calc(100% - 3px) calc(10px + 3px),calc(100% - 10px - 3px) calc(10px + 3px),calc(100% - 10px - 3px) 3px,calc(10px + 3px) 3px,calc(10px + 3px) calc(10px + 3px),3px calc(10px + 3px));
   content: "";
   inset: 0px;
   position: absolute;
}
/* Profile Bio - Followers */
/* Profile Bio - Followers - General Styling */
.pp-uc-followers-count{
   color: #fff;
   font-family: "Jacquard 24", system-ui;
   font-size: 35px;
   font-weight: 100;
   margin-top: -10px;
   text-align: center;
}
/* Profile Bio - Followers - Hiding "Followers" Text */
.pp-uc-followers-count > span + span{
   font-size: 0;
}
/* Profile Bio - Followers - Follower Text Replacement */
.pp-uc-followers-count > span + span::after{
   content: "Members of the Coven";
   font-size: 35px;
}
/* Badges centered */
.css-hjkukh{
   justify-content: center;
}
/* Profile Bio - Members Since - Positioning, Colour, Font */
.pp-uc-member-since{
   font-family: "Jacquard 24", system-ui;
   font-size: 0px;
   text-align: center;
}
/* Profile Bio - Members Since - Text Replacement - Replace <DATE> with your "member since" date */
.pp-uc-member-since:after{
   color: #fff;
   content: "Last saved: <date>";
   font-size: 35px;
   font-weight: 100;
   text-align: center;
}
/* Profile Bio - Details/Summary - Title Colour, Font and Styling */
details > summary{
   border-radius: 0px;
   color: #fff !important;
   font-size: 20px;
   transition: 0.2s;
}
details > summary:hover{
   color: #bfeb91 !important;
}
/* Profile Bio - Details/Summary - Details Box styling general */
details{
   overflow: hidden;
   margin: auto;
   max-width: 550px;
   position: relative;
   transition: 0.2s;
}
/* Summary background while details is opened */
details[open] > summary{
   border-bottom: 1px solid #e1cb9f;
   border-radius: 0px;
   color: #bfeb91 !important;
   transition: 0.2s;
}
/* Profile Bio - Details/Summary - Summary Box Spacing between the boxes - Increase number for a larger gap, use a lower number to put them closer together */
details:not(:last-of-type){
   margin-bottom: 10px;
}
/* PROFILE BIO - Follow Button - Centred */
.css-y9k5u7 {
   flex-direction: column;
   justify-content: center;
   padding-bottom: 15px;
}
/* PROFILE BIO - Follow and Options - Background */
.css-fdshcw {
   background: #271a2f;
   mask: conic-gradient(at 40px 40px,#000 75%,#0000 0) -20px -20px;
   position: relative;
   top: 20px;
   padding-bottom: 50px;
}
.css-fdshcw:before {
   background: #dec89d;
   clip-path: polygon(0 20px,20px 20px,20px 0,calc(100% - 20px) 0,calc(100% - 20px) 20px,100% 20px,100% calc(100% - 20px),calc(100% - 20px) calc(100% - 20px),calc(100% - 20px) 100%,20px 100%,20px calc(100% - 20px),0 calc(100% - 20px),0 20px,3px calc(20px + 3px),3px calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(20px + 3px),calc(100% - 20px - 3px) calc(20px + 3px),calc(100% - 20px - 3px) 3px,calc(20px + 3px) 3px,calc(20px + 3px) calc(20px + 3px),3px calc(20px + 3px));
   content: "";
   inset: 0px;
   position: absolute;
}
/* PROFILE BIO - Follow Button - General Styling */
.pp-uc-follow-button{
   align-items: center;
   background: none; 
   background-position: left;
   background-size: 250%;
   border: none;
   display: flex;
   font-family: "VT323", monospace;
   font-size: 30px;
   font-weight: 400;
   height: 40px;
   justify-content: center;
   overflow: hidden;
   position: relative;
   transition: 0.2s !important;
   white-space: nowrap;
   width: 240px;
}
.pp-uc-follow-button:hover {
   background: none;
   color: #bfeb91;
}
/* PROFILE BIO - Follow Button - Removing Old Text */
.pp-uc-follow-button > span {
   font-size: 0px;
}
/* PROFILE BIO - Follow Button - "Follow" Text Replacement */
.pp-uc-follow-button:before {
   background: none;
   color: #fff;
   content: "Save Game";
   transition: 0.2s;
   height: 40px;
   width: 160px;
}
/* PROFILE BIO - Follow Button - "Following" Text Replacement */
.pp-uc-follow-button[data-following=true]:before {
   color: #fff;
   content: "Delete File";
}
/* PROFILE BIO - Follow Button - Hover */
.pp-uc-follow-button:hover:before {
   color: #bfeb91;
   transition: 0.2s;
}
.pp-uc-follow-button:active {
   transform: none;
}
/* PROFILE BIO - Options - Base styling */
.pp-uc-options-menu {
   align-items: center;
   background: none; 
   color: #fff;
   display: flex;
   flex-direction: row-reverse;
   font-family: "VT323", monospace;
   font-size: 30px;
   font-weight: 400;
   height: 40px;
   justify-content: center;
   overflow: hidden;
   position: relative;
   right: 14px;
   transition: 0.2s;
   width: 160px;
}
.pp-uc-options-menu:hover {
   background: none; 
   color: #bfeb91;
}
.pp-uc-options-menu:hover svg, .pp-uc-options-menu[data-active] svg {
   fill: #bfeb91;
}
/* PROFILE BIO - Options - Background When Opened */
.pp-uc-options-menu:active, .pp-uc-options-menu[data-active] {
   background: none; 
   color: #bfeb91;
}
/* PROFILE BIO - Options - Block Text */
.pp-uc-options-menu-item {
   background: #271a2f;
   border: 3px solid #dec89d;
   border-radius: 0px;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   padding-top: 7px;
   padding-bottom: 5px;
   text-align: center;
   transition: 0.2s;
   white-space: nowrap;
   width: 240px;
}
/* PROFILE BIO - Options - Block Text - Hover */
.pp-uc-options-menu-item:hover {
   background: #271a2f;
   color: #bfeb91;
}
.pp-uc-options-menu-item:hover svg {
   fill: #bfeb91;
}
/* PROFILE BIO - Options - Block Text - Background */
.css-1f9crt2 {
   background: none;
   box-shadow: none;
}
/* PROFILE BIO - Options - Block Text - Icon */
.css-7halv9 {
   font-size: 1rem;
   padding-bottom: 3px;
}
/* BOT CARDS */
/* BOT CARDS - TRANSPARENT LAYERS */
div:has(> .css-1s5evre), div:has(~ .css-1s5evre){
   background: none !important;
}
.css-12lnk4a:hover, .css-v57joh:hover, .css-1n07wna:hover, .css-1n07wna[data-hover], .css-1sxhvxh:hover{
   box-shadow: none;
}
/* Bot Cards - Grid */
div:has(> div > .css-1s5evre) {
   display: flex;
   flex-flow: row wrap;
   justify-content: center;
}
div:has(> .css-1s5evre){
   flex: 0 1 380px;
   max-height: 420px;
}
.css-1s5evre > a {
   display: contents;
}
/* Bot Cards - General styling */
.css-1s5evre{
   background: #271a2f;
   display: grid;
   gap: 20px 0px;
   grid-template-columns: auto auto;
   grid-template-rows: 20px auto auto 20px;
   mask: conic-gradient(at 40px 40px,#000 75%,#0000 0) -20px -20px;
   position: relative;
}
.css-1s5evre:before{
   background: #dec89d;
   clip-path: polygon(0 20px,20px 20px,20px 0,calc(100% - 20px) 0,calc(100% - 20px) 20px,100% 20px,100% calc(100% - 20px),calc(100% - 20px) calc(100% - 20px),calc(100% - 20px) 100%,20px 100%,20px calc(100% - 20px),0 calc(100% - 20px),0 20px,3px  calc(20px + 3px),3px calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(20px + 3px),calc(100% - 20px - 3px) calc(20px + 3px),calc(100% - 20px - 3px) 3px,calc(20px + 3px) 3px,calc(20px + 3px) calc(20px + 3px),3px calc(20px + 3px));
   content: "";
   inset: 0px;
   position: absolute;
}
/* Bot Cards - Bot Name */
.pp-cc-name{
   color: #fff;
   font-family: "Jacquard 24", system-ui;
   font-weight: 100;
   font-size: 23px;
   grid-area: 1 / 1 / 2 / 2;
   letter-spacing: inherit;
   margin-left: 20px;
   margin-top: -7px;
   opacity: 1;
   text-shadow: none;
   text-transform: none;
   transition: 0.2s;
   width: 170px;
}
.pp-cc-name:hover{
   color: #bfeb91;
}
/* MESSAGE COUNT RIBBON */
/* Bot Cards - Message Ribbon - Positioning */
.css-10cv7r2{
   bottom: 28px;
   display: grid;
   grid-area: 1 / 4 / 2 / 2;
   justify-content: left;
   left: 70%;
   right: auto;
   top: auto;
}
/* Bot Cards - Message Ribbon - Remove Inset, Hide Overflow and Drop Shadow */
.pp-cc-ribbon{
   filter: none;
   overflow: visible;
   padding: 0;
}
/* Bot Cards - Message Ribbon - Remove shape, weird shadow and hide overflow */
.pp-cc-ribbon-wrap{
   background: transparent;
   border-radius: 0;
   box-shadow: none;
   clip-path: unset;
   inset: unset;
   overflow: visible;
   padding: 0;
}
/* Removing original icon */
.pp-cc-chats svg{
   display:none;
}
/* Text, background and icon replacement */
.pp-cc-chats{
   color: #fff;
   font-family: "VT323", monospace;
   font-weight: 400;
   font-size: 23px;
   justify-content: center;
   width: 100px;
}
.pp-cc-chats::before{
   content: "LVL:";
   font-size: 23px;
}
/* Bot Cards - Summary - General styling */
/* May require adjustment based on how you do your summaries. For more lines of text to show, adjust the "line-clamp:" property. Higher number = more lines, lower number = less lines of text. */
.css-96l1id{
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 5;
   color: #fff;
   display: -webkit-box;
   font-size: 17px;
   line-clamp: 5;
   overflow: hidden;
}
/* Bot Cards - Summary - Min Length to Align Lines */
/* If you adjusted "line-clamp:" it may be necessary to adjust the "<NUMBER>px;" here as well to ensure all bot bios show the same length. */
.css-199gcrh{
   grid-area: 2 / 1 / 3 / 2;
   max-width: 170px;
   height: 170px;
}
/* Bot Cards - Bot Image */
.css-1q7rmf0{
   border: 2px solid #dec89d;
   border-radius: 0px;
   grid-area: 2 / 2 / 3 / 2;
   height: auto;
   right: 10px;
   width: 170px;
}
/* Bot Cards - Star + Line gone */
.pp-cc-star-line, .pp-cc-star{
   display: none;
}
/* BOT CARDS - TAGS */
/* Bot Cards - Tags - Grid */
.pp-cc-tags{
   border-radius: 0px;
   grid-area: 3 / 1 / 4 / 4;
   padding: 0px;
}
.css-k1urot{
   display: grid;
   grid-template-columns: 29% 29% 29%;
   justify-content: center;
   padding: 0px;
   margin-top: 10px;
   max-width: 380px;
}
.css-123m5uu{
   grid-column: 1 / 4;
}
.pp-tag-limitless, .css-4a6x12, .pp-cc-tags-regular, .css-k1urot > li > a > span:not(.pp-cc-tags-regular){
   width: 100%;
}
.pp-cc-tags-regular, .css-k1urot > li > a > span:not(.pp-cc-tags-regular){
   display: inline-block;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}
.css-k1urot > li > a > span:not(.pp-cc-tags-regular){
   min-width: 81px;
}
/* Bot Cards - Tag Styling - Limitless Text Replacement + Styling */
.pp-tag-limitless{
   background: none;
   border: none;
   border-bottom: 1px solid #dec89d;
   border-radius: 0px;
   font-size: 0px;
}
.pp-tag-limitless:after{
   color: #fff;
   content: "Stats :";
   text-align: center;
   font-family: "Jacquard 24", system-ui;
   font-weight: 100;
   font-size: 20px;
}
/* Bot Cards - Tag Styling - Normal Tags */
.pp-cc-tags-regular{
   background: none;
   border: none;
   color: #fff;
   font-size: 17px;
   height: 21px;
   padding-top: 1px;
   transition: 0.2s;
}
.pp-cc-tags-regular:hover{
   background: none;
   border: none;
   color: #bfeb91;
}
/* Bot Cards - Tag Styling - Custom Tags */
.pp-cc-tags-custom{
   background: none;
   border: none;
   color: #fff;
   font-size: 17px;
   height: 21px;
   padding-top: 2px;
   transition: 0.2s;
}
.pp-cc-tags-custom:hover{
   background: none;
   border: none;
   color: #bfeb91;
}
/* Bot Cards - Custom Tags - Capitalising first letter */
.pp-cc-tags-custom::first-letter{
   text-transform: capitalize;
}
/* Bot Cards - Tokens */
.pp-cc-tokens-count{
   color: #fff;
   font-family: "Jacquard 24", system-ui;
   font-weight: 100;
   font-size: 20px;
   grid-area: 4 / 1 / 4 / 4;
   letter-spacing: inherit;
   margin-top: -20px;
   opacity: 1;
   padding-bottom: 20px;
   text-align: center;
   text-shadow: none;
   transition: 0.2s;
}
.css-1c9wmts{
   display: contents;
}
/* Bot Cards - removing @ */
.css-1m151rf{
   display: none;
}
/* Bot Cards - Removing Event Decorations */
.css-nip9dx, .css-1wqmh16, .css-xrg4vd, .css-5v5qgx, .css-1awld45, .css-1cui3us{
   display: none;
}
/* BOT SEARCH + FILTERS */
/* Bot search + filters - background */
.css-m8ywhg{
   background: #271a2f;
   border: 3px solid #dec89d;
   border-radius: 0px;
}
/* BOT SEARCH + FILTERS - TOTAL CHARACTERS */
/* Bot search + filters - Total Characters - General Styling */
.pp-pg-total{
   background: none;
   background-image: none;
   border: none;
   height: 40px;
   box-shadow: none;
   left: 10px;
}
.pp-pg-total:before{
   background: none;
}
.pp-pg-total:hover{
   border: none;
   text-shadow: none;
}
.pp-pg-total-text, .pp-pg-total-count{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400 !important;
   overflow: hidden;
   text-wrap: nowrap;
}
/* Bot search + filters - Total Characters - Number not bold */
.pp-pg-total-count{
   font-weight: 400;
}
/* Bot search + filters - Total Characters - Making the box not move on clicks */
.Btn2-purple:active{
   transform: none;
}
/* Bot search + filters - Total Characters - Capitalising first letter */
.pp-pg-total-text::first-letter{
   text-transform: capitalize;
}
/* BOT SEARCH + FILTERS - SEARCH BAR */
/* Bot search + filters - Search Bar - Not Active No Hover Border + Background */
.pp-fl-search-input{
   background: none; 
   border: none;
}
/* Bot search + filters - Search Bar - Not Active Hover Border + Background */
.pp-fl-search-input:hover{
   border: none;
   box-shadow: none;
}
/* Bot search + filters - Search Bar - Text Colour + Hover */
.pp-fl-search-input::placeholder{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   transition: 0.2s;
}
.pp-fl-search-input:hover::placeholder{
   color: #bfeb91;
}
/* Bot search + filters - Search Bar - Active No Hover Border */
.pp-fl-search-input:hover, .pp-fl-search-input:focus{
   border: none;
   box-shadow: none;
}
/* Bot search + filters - Search Bar - Active Text click off */
.pp-fl-search-input{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   outline: none !important;
}
.css-19akvax:hover{
   border: none;
   color: #bfeb91;
}
.css-1d3jfmu:hover svg{
   fill: #bfeb91;
}
/* BOT SEARCH + FILTERS - TAG MENU */
/* Bot search + filters - Tag Menu - Icon - General Styling */
.pp-fl-filter-button{
   background: none;
   border: none;
}
.pp-fl-filter-button:hover{
   background: none;
}
/* Bot search + filters - Tag Menu - Menu - General Styling */
.chakra-ui-dark .css-1dljitb:not([data-theme]), [data-theme="dark"] .css-1dljitb:not([data-theme]), .css-1dljitb[data-theme="dark"]{
   background: #271a2f;
   border: none;
   border-radius: 0px;
   box-shadow: none;
   mask: conic-gradient(at 40px 40px,#000 75%,#0000 0) -20px -20px;
   position: relative;
}
.css-1dljitb::before{
   background: #dec89d;
   clip-path: polygon(0 20px,20px 20px,20px 0,calc(100% - 20px) 0,calc(100% - 20px) 20px,100% 20px,100% calc(100% - 20px),calc(100% - 20px) calc(100% - 20px),calc(100% - 20px) 100%,20px 100%,20px calc(100% - 20px),0 calc(100% - 20px),0 20px,3px  calc(20px + 3px),3px calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 20px - 3px),calc(20px + 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 3px),calc(100% - 20px - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(100% - 20px - 3px),calc(100% - 3px) calc(20px + 3px),calc(100% - 20px - 3px) calc(20px + 3px),calc(100% - 20px - 3px) 3px,calc(20px + 3px) 3px,calc(20px + 3px) calc(20px + 3px),3px calc(20px + 3px));
   content: "";
   inset: 0px;
   position: absolute;
}
/* Bot search + filters - Tag Menu - Menu - Tag Styling */
.css-1w58nos{
   background: none;
   border: none !important;
   box-shadow: none !important;
   color: #fff;
   display: inline;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   overflow: hidden;
   text-align: left;
   transition: 0.2s;
   width: 150px;
}
.css-1w58nos:hover{
   background: none;
   border: none !important;
   color: #bfeb91;
}
/* Tag Menu - Tags - Selected */
.css-oqdsp6{
   background: none;
   border: none !important;
   color: #bfeb91;
   display: inline;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   text-align: left;
   width: 150px;
}
/* Bot search + filters - Tag Menu - Stopping Tags from changing size */
.css-oqdsp6:active, .css-oqdsp6[data-active], .css-1w58nos:active, .css-1w58nos[data-active]{
   transform: none;
}
/* Bot search + filters - Tag Menu - Menu - Filters Text */
.css-dcyl1x{
   color: #fff;
   display: flex;
   font-family: "VT323", monospace;
   font-size: 35px;
   font-weight: 400;
   justify-content: center;
}
/* Bot search + filters - Tag Menu - Menu - Tags Text */
.css-178jenf{
   border-bottom: 1px solid #dec89d;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 30px;
   font-weight: 400;
   display: flex;
   justify-content: center;
}
/* Bot search + filters - Tag Menu - Menu - Show/Hide All Tags */
.css-11dtrcq{
   background: none;
   border: none;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 30px;
   font-weight: 400;
   transition: 0.2s;
   width: 100%;
}
.css-11dtrcq:hover{
   color: #bfeb91;
   background: none;
   border: none;
}
/* Bot search + filters - Tag Menu - Menu - padding above Show/Hide All Tags */
.css-tn23vd{
   padding-bottom: 20px;
}
/* Bot search + filters - Tag Menu - Menu - X Styling + Hover */
.css-onkibi{
   color: #fff;
   transition: 0.2s;
}
.css-onkibi:hover{
   color: #bfeb91;
}
.css-lyo4r5:hover{
   background: none;
}
.css-lyo4r5:hover svg{
   fill: #bfeb91;
}
/* Bot search + filters - Tag Menu - Spinny Loading Thing */
.css-1q78gs5{
   border-right: 1px solid #bfeb91;
   border-top: 1px solid #bfeb91;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Latest Text + Hover */
.transparent .react-select__single-value {
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   transition: 0.2s;
}
.react-select__control.css-13cymwt-control:hover, .react-select__control--is-focused:hover, .default .react-select__control:hover {
   border: none;
}
.transparent .react-select__control:focus {
   border-color: #fff !important;
}
.default .react-select__control {
   background: none;
   border: none;
   display: flex;
   padding-right: 10px;
   text-align: center;
   width: 8rem;
}
.default .react-select__control:hover {
   background: none;
   color: #bfeb91;
}
.css-13cymwt-control:hover .react-select__single-value {
   color: #bfeb91;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Seperator Line */
.react-select__indicator-separator.css-1u9des2-indicatorSeparator {
   display: none;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Menu Open Button Styling */
.transparent .react-select__control--is-focused .react-select__single-value, .transparent .react-select__control--menu-is-open .react-select__single-value {
   color: #bfeb91;
}
.default .react-select__control--is-focused, .default .react-select__control--menu-is-open {
   background: none;
   border: none;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Indicator arrow */
.css-b62m3t-container svg {
   color: #fff !important;
   transition: 0.2s;
}
.css-b62m3t-container:hover svg {
   color: #bfeb91 !important;
}
.css-b62m3t-container:has(.react-select__control--is-focused) svg, .css-b62m3t-container:has(.react-select__control--menu-is-open) svg {
   color: #bfeb91 !important;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Dropdown Menu - General Styling */
.dark .react-select__menu, .transparent .react-select__menu, .react-select__menu-portal .react-select__menu {
   backdrop-filter: none;
   background: #271a2f;
   border: 3px solid #dec89d;
   border-radius: 0px;
   box-shadow: none;
   overflow: hidden;
   width: 9.5rem;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - General Styling - Blur */
.css-b62m3t-container .react-select__menu {
   background: #271a2f;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - General Styling - Seperator Lines */
.dark .react-select__option, .transparent .react-select__option, .react-select__menu-portal .react-select__option {
   border-bottom: 1px solid #dec89d;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Dropdown - Top and Bottom Line of Menu */
.css-qr46ko {
   background-color: #0000;
   padding: 0;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Dropdown - List */
.react-select__menu-list {
   background-color: #0000;
   border: 1px solid #0000;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Options */
.react-select__option {
   background: none !important;
   color: #fff !important;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   text-align: center;
   transition: 0.2s;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Options - Hover */
.react-select__option:hover {
   background: none !important;
   color: #bfeb91 !important;
}
/* BUTTONS, FILTERS AND SEARCH - Latest menu - Options - When Clicked */
.react-select__option--is-selected {
   background: none !important;
   color: #bfeb91 !important;
}
/* Bot search + filters - CHARACTERS */
/* Bot search + filters - Characters - General */
.pp-tabs-wrapper{
   align-items: center;
   background: #271a2f;
   border-radius: 0px;
   height: 50px;
   justify-content: center;
   mask: conic-gradient(at 20px 20px,#000 75%,#0000 0) -10px -10px;
   width: 230px;
}
.pp-tabs-wrapper:before{
   background: #dec89d;
   clip-path: polygon(0 10px,10px 10px,10px 0,calc(100% - 10px) 0,calc(100% - 10px) 10px,100% 10px,100% calc(100% - 10px),calc(100% - 10px) calc(100% - 10px),calc(100% - 10px) 100%,10px 100%,10px calc(100% - 10px),0 calc(100% - 10px),0 10px,3px  calc(10px + 3px),3px calc(100% - 10px - 3px),calc(10px + 3px) calc(100% - 10px - 3px),calc(10px + 3px) calc(100% - 3px),calc(100% - 10px - 3px) calc(100% - 3px),calc(100% - 10px - 3px) calc(100% - 10px - 3px),calc(100% - 3px) calc(100% - 10px - 3px),calc(100% - 3px) calc(10px + 3px),calc(100% - 10px - 3px) calc(10px + 3px),calc(100% - 10px - 3px) 3px,calc(10px + 3px) 3px,calc(10px + 3px) calc(10px + 3px),3px calc(10px + 3px));
   content: "";
   inset: 0px;
   position: absolute;
}
/* Bot search + filters - Characters - Text */
.css-1jj3srb[aria-selected=true], .css-1jj3srb[data-selected]{
   color: #fff;
}
.css-1jj3srb{
   display: flex;
   font-family: "Jacquard 24", system-ui;
   font-size: 0px;
   font-weight: 100;
   letter-spacing: unset;
   text-transform: none;
   text-wrap: nowrap;
}
.css-1jj3srb::after{
   content: "Select your character :";
   font-size: 25px;
}
/* Bot search + filters - Characters - Blue Line */
.css-1y3jyt3{
   display: none;
}
.css-i3ef4m{
   border: none;
}
/* HEADER */
/* Header - Main Header + Bottom Mobile */
.pp-top-bar{
   background: #271a2f; 
   border-bottom: 3px solid #dec89d;
   box-shadow: none;
}
.pp-mnb-container{
   background: #271a2f; 
   border-top: 3px solid #dec89d;
   box-shadow: none;
}
/* HEADER - PROFILE MENU */
/* Header - Profile Menu - Icon - No Background When Clicked */
.css-128hf7l:active, .css-128hf7l[data-active]{
   background: none;
   border-radius: 0px;
}
/* Header - Profile Menu - Icon - No moving when hovered */
.pp-top-bar-app-menu:hover>span>*{
   transform: none;
}
/* Header - Profile Menu - Main Styling */
.pp-top-bar-app-menu-list{
   background: #271a2f; 
   border: 3px solid #dec89d;
   border-radius: 0px;
   box-shadow: none;
   overflow: hidden;
}
/* Header - Profile Menu - Text to the right */
.pp-top-bar-app-menu-list-item{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   text-align: right;
   transition: 0.2s;
}
/* Header - Profile Menu - Text to right and hiding icon */
.pp-top-bar-app-menu-list-item{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 20px;
   font-weight: 400;
   flex-direction: row-reverse;
   transition: 0.2s;
}
/* Header - Profile Menu - Hover */
.pp-top-bar-app-menu-list-item:hover{
   color: #bfeb91;
}
/* Header - Profile Menu - Divider Lines */
.css-1hmyng0{
   background: #dec89d;
   opacity: 1;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icon Styling */
._notificationsContainer_16xfi_2, ._notificationsContainer_1p8j9_2{
   background: none;
}
._notificationsContainer_16xfi_2:hover, ._notificationsContainer_1p8j9_2:hover{
   background: none !important;
}
._notificationsContainer_16xfi_2:has(._notificationsPopover_16xfi_72) [type="button"] svg + :is(div, span){
   background: #bfeb91;
}
._notificationsContainer_16xfi_2:has(._notificationsPopover_16xfi_72), ._notificationsContainer_1p8j9_2:has(._notificationsPopover_1p8j9_72){
   background: none;
}
._notificationsButton_16xfi_7:hover, ._notificationsButton_1p8j9_7:hover{
   background: none;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Unread Notification Dot */
[type="button"] svg + :is(div, span){
   animation: unset !important;
   background: #fff;
   border-radius: 50%;
   box-shadow: none;
   color: #0000;
   height: 0.5rem !important;
   min-width: unset;
   padding: unset;
   right: 10px;
   text-align: center;
   top: 0.5rem;
   transition: 0.3s;
   width: 0.5rem !important;
}
[type="button"]:hover svg + :is(div, span){
   background: #bfeb91;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icon Transitions */
._notificationIcon_16xfi_31, ._notificationIcon_1p8j9_31{
   transition: 0.2s;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icons Changing on Hover / Sticking When Open */
._notificationsButton_16xfi_7:hover ._notificationIcon_16xfi_31, ._notificationsButton_1p8j9_7:hover ._notificationIcon_1p8j9_31, ._notificationsContainer_16xfi_2:has(._notificationsPopover_16xfi_72) ._notificationIcon_16xfi_31, ._notificationsContainer_1p8j9_2:has(._notificationsPopover_1p8j9_72) ._notificationIcon_1p8j9_31{
   fill: #bfeb91;
}
/* HEADER - Menus - Notifications + Announcement Buttons - Icons Not Moving */
._notificationsButton_16xfi_7:active, ._notificationsButton_1p8j9_7:active{
   background: none;
   transform: none;
}
/* HEADER - Menus - Loading spinny thing */
[class*="_loadingSpinner_"]{
   border: 3px solid #bfeb911a !important;
   border-top: 3px solid #bfeb91 !important;
}
/* HEADER - Menus - Background for notifications and menus */
[class*="Popover_"]{
   background: #271a2f; 
   border: 3px solid #dec89d;
   border-radius: 0px;
   box-shadow: none;
}
/* HEADER - Menus - Loading section text */
[class*="_loadingMessage_"]{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
}
/* HEADER - Menus - Headers */
[class*="popoverHeader_"]{
   background: none;
   border-bottom: 3px solid #dec89d;
   justify-content: center;
}
/* HEADER - Menus - Top bar titles text */ 
[class*="popoverTitle_"]{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 30px;
   font-weight: 400;
   letter-spacing: unset;
   text-transform: uppercase;
}
/* HEADER - Menus - Top bar close button + hover */
[class*="popoverHeader_"] button{
   background: none;
   position: relative;
   right: -70px;
   transition: 0.2s;
}
[class*="popoverHeader_"] button:hover{
   background: none;
}
/* HEADER - Menus - Top bar close + mark all read hovers */
._markAllReadButton_16xfi_123:hover svg, ._closeButton_16xfi_124:hover svg, ._closeButton_1p8j9_118:hover svg{
   fill: #bfeb91;
}
/* HEADER - Menus - Scrollbar */
[class*="notificationsList_"]::-webkit-scrollbar-thumb{
   background: #dec89d80;
}
[class*="notificationsList_"]::-webkit-scrollbar-track{
   background: #0000;
}
/* HEADER - Menus - Seperator Lines + Min Height */
[class*="_notificationItem_"]{
   border-bottom: 3px solid #dec89d;
   min-height: 175px;
}
/* HEADER - Menus - Notification hovers */
[class*="_notificationItem_"]:hover{
   background: #00000033;
}
[class*="_contentWrapperUnread_"]:hover{
   background: #0000 !important;
}
._contentWrapper_18k4v_76, ._contentWrapper_18k4v_76:hover{
   background: none;
}
/* HEADER - Menus - Notification text titles */
._subject_18k4v_107, ._notificationTitle_1p8j9_222, ._subjectUnread_18k4v_116{
   font-family: "Jacquard 12", system-ui;
   font-size: 23px;
   font-weight: 100;
}
[class*="_notificationTitle_"], [class*="_subject_"]{
   color: #fff;
}
/* HEADER - Menus - Unread Notif title */
[class*="_subjectUnread_"]{
   -webkit-background-clip: unset;
   -webkit-text-fill-color: unset;
   background: unset;
   background-clip: unset;
   color: #fff;
}
/* HEADER - Menus - Notification text body */
[class*="_notificationMessage_"], [class*="_body_"]{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
}
/* HEADER - Menus - Notification text time */
[class*="_notificationTime_"], [class*="_timestamp_"]{
   color: #fff;
   font-size: 17px;
   font-weight: 400;
}
/* HEADER - Menus - Announcement link colour */
[class*="_notificationLink_"]{
   color: #bbbbbb;
   transition: 0.2s;
}
[class*="_notificationLink_"]:hover{
   color: #fff;
}
/* HEADER - Menus - New Notif Indicator */
[class*="Indicator_"]{
   background: #bfeb91;
   width: 3px;
}
/* HEADER - Menus - Trash icon */
[class*="_archiveButton"]{
   backdrop-filter: unset;
   background: none;
}
[class*="_archiveButton"]:hover{
   background: none;
}
[class*="_archiveButton"]:hover svg{
   fill: #bfeb91;
}
/* HEADER - Menus - Notification Char + User image */
[class*="_userAvatar_"]{
   box-shadow: unset;
   height: 50px;
   width: 50px;
}
._userAvatar_18k4v_56{
   bottom: -40px;
   right: -15px;
}
[class*="_characterAvatar_"]{
   border-radius: 0px;
   height: 100px;
   width: 75px;
}
/* HEADER - Menus - Notifications Load More */
._loadMoreButton_16xfi_382{
   background: none;
   border-top: 3px solid #dec89d;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
   transition: 0.2s;
}
._loadMoreButton_16xfi_382:hover{
   background: none;
   border-top: 3px solid #dec89d;
   color: #bfeb91;
}
/* HEADER - Menus - No Announcements/Notifications + Extra Text Colour */
._emptyStateMessage_1p8j9_306, ._emptyStateTitle_1p8j9_299, ._emptyState_16xfi_298{
   color: #fff;
   font-size: 17px;
   font-weight: 400;
}
/* HEADER - Menus - No Announcements Icon */
._emptyStateIcon_1p8j9_293, ._emptyStateIcon_1p8j9_293:hover{
   opacity: 1;
   fill: #bfeb91;
}
/* HEADER - CREATE CHARACTER */
/* Header - Create Character - Removing Text and Sizing*/
.css-1yhasuw{
   background: none;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 0px;
   font-weight: 400;
   height: 40px;
   transition: 0.2s;
   width: 200px;
}
/* Header - Create Character - Replacement Text */
.css-1yhasuw:after{
   content: "Cast a Spell";
   font-size: 30px;
   font-weight: 400;
}
.css-1yhasuw:hover{
   color: #bfeb91;
}
.glow-on-hover:before{
   background: none;
}
.glow-on-hover::after{
   background: none;
   margin-top: -5px;
   opacity: 1;
   transition: 0s;
}
.glow-on-hover:active{
   background: none;
   color: #bfeb91;
}
/* HEADER - SEARCH BAR */
/* Header - Search Bar - Shape + Background */
.pp-top-bar-search{
   background: none;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
   transition: 0.2s;
}
.pp-top-bar-search:hover, .pp-top-bar-search[data-hover]{
   box-shadow: none;
}
/* Header - Search Bar - Text */
#search-input::placeholder{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
}
#search-input:hover::placeholder{
   color: #bfeb91;
}
._mentions--singleLine_gae3o_1 ._mentions__input_gae3o_11::placeholder{
   font-family: "VT323", monospace;
}
/* Header - Search Bar - X + Other Icon */
.css-18v3gqg, .css-j1p8gu{
   opacity: 1;
}
/* HEADER - JANITOR LOGO */
/* Header - Janitor Logo - JanitorAI */
.pp-top-bar-logo-name{
   font-size: 0px !important;
}
/* Header - Janitor Logo - JanitorAI Text Replacement */
.pp-top-bar-logo-name::after{
   color: #fff;
   content: "Witches 'n Whispers";
   font-family: "Jacquard 24", system-ui;
   font-size: 35px;
   font-weight: 400;
   transition: 0.2s;
}
 .pp-top-bar-logo-name:hover::after{
   color: #bfeb91;
}
/* Header - Janitor Logo - beta */
.pp-top-bar-logo-sub-name{
   display: none;
}
/* Header - Janitor Logo - New Border, Background and Box-Shadow Removed */
 .pp-top-bar-logo{
   border: none;
   height: 40px;
   transition: 0.2s;
   width: 300px;
}
/* Header - Janitor Logo - Backdrop-Filter Removed */
.glow-logo{
   backdrop-filter: none;
}
.glow-logo:is(:hover, :focus){
   color: color;
   text-shadow: none;
}
/* MEDIA QUERY STUFF - PC */
/* Code that will only affect users who look at your page using PC */
@media screen and (min-width: 767px){
/* Bot search + filters - General - Spacing everything out */
.css-zdpt2t, .css-mcoi9a, .css-1cdqd3a, .css-1pfxi6a, .css-6su6fj{
   display: contents;
}
.css-mcoi9a{
   z-index: 5;
}
.css-1n2in4t, .css-8l42c1{
   flex-shrink: 0;
}
/* Bot search + filters - background */
.css-m8ywhg{
   height: 40px;
} }
/* MOBILE FIXES */
/* Code that will only affect users who look at your page using mobile */
@media screen and (max-width: 767px){
/* Profile Bio - PFP size */
.pp-uc-avatar{
   height: 450px;
   margin-top: 30px;
   width: auto;
}
/* Bot search + filters - Latest menu - Dropdown Menu - General Styling - Shifting it left to stay fully on screen */
.dark .react-select__menu, .transparent .react-select__menu, .react-select__menu-portal .react-select__menu{
right: 5px;
}
/* Bot Cards - Bot Image */
.css-1q7rmf0{
   right: 25px;
   width: 165px;
}
/* Tags width */
.css-k1urot{
   max-width: 355px;
}
/* Tag Menu Tags Width */
.css-1w58nos{
   width: 140px !important;
}
/* Mobile Header - Text */
/* Font size may need to be adjusted based on @ length, if the text is too large it'll disappear */
.css-16g2f4q, .css-1rokoft{
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 17px;
   font-weight: 400;
}
/* Header - Profile Menu - Mobile - Removing icon background */
.css-1u2nttd:active, .css-1u2nttd[data-active]{
   background: none;
   border-radius: 0px;
} }
.WitchesNWhispersCredit{
   bottom: 0px;
   color: #fff;
   font-family: "VT323", monospace;
   font-size: 15px;
   font-weight: 400;
   left: 25px;
   opacity: 0.8;
   position: absolute;
}
</style>
<div class="WitchesNWhispersCredit">
<p>CSS done by <a href="https://janitorai.com/profiles/715f6db3-9ea6-4ef6-8caa-1521f85a7d00_profile-of-cyanoide">@Cyanoide</a>.</p>
</div>
Edit

Pub: 07 Jul 2025 14:40 UTC

Edit: 26 Sep 2025 15:02 UTC

Views: 4475