@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&family=Playfair+Display:wght@700&display=swap");body {
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    color: #e3e3e3;
    font-family: "Crimson Text", serif;
}#header {
    background: rgba(0,0,0,0.5);
    border-bottom: 2px solid #8b0000;
    text-shadow: 2px 2px 4px rgba(139,0,0,0.5);
}h1 {
    font-family: "Playfair Display", serif;
    color: #8b0000;
    letter-spacing: 3px;
}.subtitle {
    color: #b22222;
    font-style: italic;
}.friend-table {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(139,0,0,0.3);
}.friend-table tbody tr:nth-child(odd) {
    background: rgba(50,50,70,0.4);
}.friend-table tbody tr:nth-child(even) {
    background: rgba(30,30,50,0.4);
}.friend-table tbody tr:hover {
    background: rgba(139,0,0,0.2);
    transition: background 0.3s ease;
}.name {
    color: #b22222;
    font-weight: bold;
}.bio {
    color: #d3d3d3;
}.check-cell input {
    transform: scale(1.3);
    transition: transform 0.2s ease;
}.check-cell input:hover {
    transform: scale(1.5) rotate(5deg);
}.checkbox-them-checked {
    accent-color: #8b0000;
    border: 2px solid #8b0000;
    box-shadow: 0 0 10px rgba(139,0,0,0.5);
}.checkbox-server-checked {
    accent-color: #4b0082;
    border: 2px solid #4b0082;
    box-shadow: 0 0 10px rgba(75,0,130,0.5);
}.checkbox-default {
    accent-color: #2f4f4f;
    border: 2px solid #2f4f4f;
    box-shadow: 0 0 10px rgba(47,79,79,0.5);
}button {
    background: #8b0000;
    color: white;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}button:hover {
    background: #b22222;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(139,0,0,0.5);
}a {
    color: #b22222;
    text-decoration: none;
    transition: color 0.3s ease;
}a:hover {
    color: #8b0000;
    text-decoration: underline;
}a:visited {
    color: #4b0082;
}#footer {
    background: rgba(0,0,0,0.5);
    border-top: 2px solid #8b0000;
}.accordion-summary {
    color: #b22222;
    border-color: rgba(139,0,0,0.3);
}.private-contact-info {
    background: rgba(139,0,0,0.1);
    border-left: 3px solid #8b0000;
}@keyframes blood-drip {
    0% { text-shadow: 0 0 10px rgba(139,0,0,0.3); }
    50% { text-shadow: 0 0 20px rgba(139,0,0,0.7); }
    100% { text-shadow: 0 0 10px rgba(139,0,0,0.3); }
}