@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=MedievalSharp&family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
    background-color: #000;
    overflow-x: hidden;
}

body {
    background: #0a0000;
    background: radial-gradient(circle at center, #0d0000 0%, #000000 100%) no-repeat fixed;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    position: relative;
    cursor: crosshair;
    overflow-x: hidden;
}

/* glitch overlay */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 0, 0, 0.03),
        rgba(255, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 9999;
    animation: glitch-scan 8s linear infinite;
}

@keyframes glitch-scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom: 2px solid #ff0000;
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
    letter-spacing: 8px;
    font-family: 'MedievalSharp', cursive;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.discord-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(88, 101, 242, 0.2);
    padding: 0.5rem 1rem !important;
    border: 2px solid #5865f2;
    border-radius: 5px;
    transition: all 0.3s;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.4);
    color: #fff !important;
    text-shadow: 0 0 10px #5865f2 !important;
    border-color: #7289da;
    transform: translateY(-2px);
}

.discord-link svg {
    filter: drop-shadow(0 0 5px #5865f2);
}

/* hero */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.warning-banner {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    padding: 0.5rem 2rem;
    margin-bottom: 2rem;
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.8); }
}

/* lycoris branding */
.lycoris-logo {
    font-family: 'Creepster', 'Cinzel', cursive;
    font-size: 10rem;
    color: #8b0000;
    letter-spacing: 25px;
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 3px #000;
    text-stroke: 3px #000;
    text-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(139, 0, 0, 0.6),
        5px 5px 10px rgba(0, 0, 0, 0.9);
    animation: bloodDrip 3s ease-in-out infinite;
}

.collective-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: #666;
    letter-spacing: 10px;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

@keyframes bloodDrip {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 0, 0, 0.5),
            0 0 20px rgba(139, 0, 0, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 0, 0, 0.8),
            0 0 40px rgba(139, 0, 0, 0.6),
            2px 4px 8px rgba(0, 0, 0, 0.9);
    }
}

.main-title {
    font-family: 'MedievalSharp', cursive;
    font-size: 10rem;
    margin: 1rem 0;
    color: #fff;
    text-shadow: 
        5px 5px 0px #ff0000,
        0 0 50px rgba(255, 0, 0, 0.8),
        0 0 100px rgba(255, 0, 0, 0.5);
    letter-spacing: 20px;
}

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff0000;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00ffff;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 90px, 0); }
    20% { clip: rect(80px, 9999px, 20px, 0); }
    40% { clip: rect(50px, 9999px, 100px, 0); }
    60% { clip: rect(90px, 9999px, 60px, 0); }
    80% { clip: rect(20px, 9999px, 40px, 0); }
    100% { clip: rect(60px, 9999px, 80px, 0); }
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 12px;
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #ff0000;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* stats grid */
/* live instances section */
.instance-tracker {
    margin: 2rem 5%;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139,0,0,0.3), rgba(0,0,0,0.8));
    border: 2px solid #8B0000;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(139,0,0,0.5);
}

.instance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.instance-header h2 {
    font-size: 2.5rem;
    color: #8B0000;
    text-shadow: 0 0 20px rgba(139,0,0,0.8);
    letter-spacing: 4px;
    margin: 0;
}

.instance-stats {
    display: flex;
    gap: 3rem;
}

.instance-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.6);
    border: 2px solid #8B0000;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(139,0,0,0.4);
}

.instance-stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255,0,0,0.8);
    animation: pulse 2s infinite;
}

.instance-stat-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.instances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.instance-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(20,0,0,0.6));
    border: 2px solid #8B0000;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.instance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    animation: scan 2s infinite;
}

@keyframes scan {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.instance-card:hover {
    border-color: #ff0000;
    box-shadow: 0 0 25px rgba(255,0,0,0.6);
    transform: translateY(-5px);
}

.instance-name {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #00ff00;
    margin-bottom: 1rem;
    word-break: break-all;
    text-shadow: 0 0 8px rgba(0,255,0,0.5);
}

.instance-players {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.instance-players-icon {
    font-size: 2rem;
}

.instance-players-count {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255,0,0,0.8);
}

.instance-players-label {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.instance-time {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    text-align: right;
}

.loading-instances {
    text-align: center;
    color: #666;
    padding: 3rem;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.no-instances {
    text-align: center;
    color: #666;
    padding: 3rem;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #333;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-card:hover {
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.stat-card.danger {
    border-color: #ff6600;
}

.stat-card.critical {
    border-color: #ff0000;
}

.stat-card.warning {
    border-color: #ffaa00;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* content sections */
.content-section {
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.redacted {
    background: #ff0000;
    color: transparent;
    user-select: none;
}

/* bans container */
.bans-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.ban-card {
    background: rgba(0, 0, 0, 0.95);
    border-left: 4px solid #ff0000;
    padding: 1.5rem;
    transition: all 0.3s;
}

.ban-card:hover {
    background: rgba(20, 0, 0, 0.95);
    transform: translateX(5px);
    box-shadow: -5px 0 20px rgba(255, 0, 0, 0.3);
}

.ban-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ban-group {
    background: #ff0000;
    color: #000;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.ban-time {
    color: #666;
    font-size: 0.8rem;
}

.ban-target {
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.ban-id {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.ban-reason {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.ban-actor {
    color: #666;
    font-size: 0.8rem;
}

/* threats container */
.threats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.threat-card {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #ff0000;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.threat-card.critical {
    animation: pulse-threat 2s infinite;
}

@keyframes pulse-threat {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 0, 0.6); }
}

.threat-card:hover {
    transform: scale(1.02);
}

.threat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.threat-name {
    font-size: 1.3rem;
    color: #ff0000;
    font-weight: bold;
}

.threat-watchlist {
    background: #ff6600;
    color: #000;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: bold;
}

.threat-trust {
    font-size: 2.5rem;
    text-align: center;
    margin: 1rem 0;
    color: #fff;
}

.threat-trust.critical {
    color: #ff0000;
}

.threat-trust.warning {
    color: #ffaa00;
}

.threat-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.threat-stat {
    text-align: center;
}

.threat-stat-value {
    font-size: 1.5rem;
    color: #ff0000;
    font-weight: bold;
}

.threat-stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
}

.threat-world {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}

/* loading */
.loading {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: #ff0000;
    letter-spacing: 5px;
    animation: pulse-text 1.5s infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* footer */
.footer {
    margin-top: 5rem;
    padding: 3rem 5%;
    background: rgba(0, 0, 0, 0.98);
    border-top: 2px solid #ff0000;
    text-align: center;
}

.footer-warning {
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.footer-ids {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-ids span {
    font-size: 0.8rem;
    color: #666;
    font-family: 'Share Tech Mono', monospace;
}

.footer-status {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 2px;
}

/* leaderboard */
.leaderboard-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.leaderboard-card {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #333;
    padding: 2rem;
    display: grid;
    grid-template-areas:
        "rank name total"
        "rank stats stats";
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s;
}

.leaderboard-card:hover {
    transform: translateX(10px);
    border-color: #ff0000;
    box-shadow: -5px 0 30px rgba(255, 0, 0, 0.3);
}

.leaderboard-card.rank-1 {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.leaderboard-card.rank-2 {
    border-color: #c0c0c0;
    background: rgba(192, 192, 192, 0.05);
}

.leaderboard-card.rank-3 {
    border-color: #cd7f32;
    background: rgba(205, 127, 50, 0.05);
}

.leaderboard-rank {
    grid-area: rank;
    text-align: center;
}

.rank-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff0000;
    display: block;
}

.rank-icon {
    font-size: 2rem;
    display: block;
    margin-top: 0.5rem;
}

.leaderboard-name {
    grid-area: name;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.leaderboard-total {
    grid-area: total;
    text-align: right;
}

.total-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff0000;
    display: block;
}

.total-label {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 2px;
}

.leaderboard-stats {
    grid-area: stats;
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.lb-stat {
    text-align: center;
}

.lb-stat-value {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.lb-stat-value.ban {
    color: #ff0000;
}

.lb-stat-value.kick {
    color: #ffaa00;
}

.lb-stat-value.warn {
    color: #ffff00;
}

.lb-stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* watchlist */
.watchlist-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.watchlist-card {
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid #ff6600;
    padding: 2rem;
    position: relative;
    animation: pulse-watchlist 3s infinite;
}

@keyframes pulse-watchlist {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 102, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 102, 0, 0.6); }
}

.watchlist-card::before {
    content: '⚠';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.3;
}

.watchlist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.watchlist-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6600;
}

.watchlist-badge {
    background: #ff6600;
    color: #000;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
}

.watchlist-id {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Share Tech Mono', monospace;
}

.watchlist-reason {
    background: rgba(255, 102, 0, 0.1);
    border-left: 3px solid #ff6600;
    padding: 1rem;
    margin: 1rem 0;
    color: #ccc;
}

.watchlist-reason strong {
    color: #ff6600;
}

.watchlist-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: #666;
}

.watchlist-meta strong {
    color: #999;
}

.watchlist-warning {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #ff6600;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* staff page */
.staff-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.staff-group {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
    padding: 2rem;
}

.staff-group-header {
    font-size: 2rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 5px;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 1rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.staff-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #444;
    padding: 1.5rem;
    transition: all 0.3s;
}

.staff-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.staff-role {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.role-founder {
    background: #ff0000;
    color: #000;
}

.role-admin {
    background: #ff6600;
    color: #000;
}

.role-mod {
    background: #ffaa00;
    color: #000;
}

.staff-discord {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.staff-title {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    text-align: center;
    margin-bottom: 0.5rem;
}

.staff-vrchat {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
}

/* actions */
.actions-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: rgba(0, 0, 0, 0.95);
    border-left: 4px solid #00ff00;
    padding: 1.5rem;
    transition: all 0.3s;
}

.action-card:hover {
    background: rgba(0, 20, 0, 0.95);
    transform: translateX(5px);
}

.action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.action-group {
    background: #00ff00;
    color: #000;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: bold;
}

.action-time {
    color: #666;
    font-size: 0.8rem;
}

.action-type {
    font-size: 1.1rem;
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.action-details {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    min-height: 2rem;
}

.action-actor {
    color: #666;
    font-size: 0.8rem;
}

/* blood and cursor effects */
.blood-drop {
    position: fixed;
    background: radial-gradient(circle, #ff0000 0%, #8b0000 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: bloodFall 2s ease-in forwards;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
}

@keyframes bloodFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(150px) rotate(360deg);
        opacity: 0;
    }
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: trailFade 0.8s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

@keyframes trailFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.blood-drip {
    position: fixed;
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #ff0000 0%, #8b0000 100%);
    border-radius: 0 0 50% 50%;
    pointer-events: none;
    z-index: 9997;
    animation: drip 4s linear forwards;
    box-shadow: 0 0 3px rgba(255, 0, 0, 0.6);
}

@keyframes drip {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.blood-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
    background: radial-gradient(circle at center, transparent 30%, rgba(139, 0, 0, 0.3) 100%);
    animation: pulsateVignette 2s ease-in-out infinite;
}

@keyframes pulsateVignette {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* red lightning */
.red-lightning {
    position: fixed;
    top: 0;
    width: 3px;
    height: 100vh;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #ff0000 10%, 
        #ff0000 50%, 
        transparent 100%);
    box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
    pointer-events: none;
    z-index: 10000;
    animation: lightning 0.5s ease-out;
}

@keyframes lightning {
    0% { opacity: 0; transform: scaleY(0); }
    10% { opacity: 1; transform: scaleY(1); }
    20% { opacity: 0; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* red splash */
.red-splash {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 0, 0, 0.8) 0%, 
        rgba(139, 0, 0, 0.6) 40%, 
        transparent 70%);
    pointer-events: none;
    z-index: 9999;
    animation: splash 2s ease-out forwards;
    filter: blur(2px);
}

@keyframes splash {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* screen shake */
.screen-shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translate(0, 0); }
    10%, 30%, 50%, 70%, 90% { transform: translate(-5px, 5px); }
    20%, 40%, 60%, 80% { transform: translate(5px, -5px); }
}

/* full red flash */
.full-red-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.3);
    pointer-events: none;
    z-index: 10001;
    animation: flash 0.2s;
}

@keyframes flash {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* threat messages */
.threat-message {
    position: fixed;
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000;
    pointer-events: none;
    z-index: 10002;
    animation: threatAppear 2s ease-out;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 5px;
}

@keyframes threatAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-10deg);
    }
    20% {
        opacity: 1;
        transform: scale(1.2) rotate(5deg);
    }
    80% {
        opacity: 1;
        transform: scale(1) rotate(-2deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
}

/* blood veins */
.blood-vein {
    position: fixed;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 0, 0, 0.6) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 9995;
    animation: veinGrow 5s ease-out forwards;
    width: 2px;
    height: 200px;
}

@keyframes veinGrow {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* watching eye - phobilocas inspired */
.watching-eye {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #2a0000 20%, #ff0000 40%, #000 65%);
    border-radius: 50%;
    border: 2px solid #ff0000;
    box-shadow: 
        0 0 15px rgba(255, 0, 0, 0.6),
        inset 0 0 15px rgba(0, 0, 0, 0.9);
    z-index: 10003;
    animation: eyePulse 4s ease-in-out infinite;
}

.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    transition: transform 0.1s ease;
}

@keyframes eyePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
    }
}

/* stats page */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-big-card {
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid #ff0000;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.stat-big-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.stat-big-value {
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 1rem;
    font-family: 'Share Tech Mono', monospace;
}

.stat-big-label {
    font-size: 1rem;
    color: #999;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.stats-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.breakdown-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #333;
    padding: 2rem;
}

.breakdown-card h3 {
    color: #ff0000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.breakdown-stat {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #222;
    font-size: 1.1rem;
}

.breakdown-stat span:last-child {
    color: #ff0000;
    font-weight: bold;
}

/* bot status */
.bot-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bot-status-card {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #333;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.bot-status-card.online {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.bot-status-card.offline {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.bot-status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bot-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bot-status {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.bot-status-card.online .bot-status {
    color: #00ff00;
}

.bot-status-card.offline .bot-status {
    color: #ff0000;
}

/* activity feed */
.activity-feed {
    margin-top: 2rem;
}

.activity-feed h2 {
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 4px;
}

#activity-container {
    max-height: 600px;
    overflow-y: auto;
}

.activity-item {
    background: rgba(0, 0, 0, 0.9);
    border-left: 4px solid #333;
    padding: 1rem;
    margin-bottom: 0.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    font-family: 'Share Tech Mono', monospace;
}

.activity-item.type-ban {
    border-left-color: #ff0000;
    background: rgba(50, 0, 0, 0.3);
}

.activity-item.type-kick {
    border-left-color: #ff8800;
}

.activity-item.type-warn {
    border-left-color: #ffaa00;
}

.activity-item.type-join {
    border-left-color: #00aaff;
}

.activity-group {
    color: #888;
    font-size: 0.9rem;
}

.activity-type {
    color: #ff0000;
    font-weight: bold;
}

.activity-target {
    color: #fff;
}

.activity-actor {
    color: #aaa;
    font-size: 0.9rem;
}

.activity-time {
    color: #666;
    font-size: 0.85rem;
}

/* surveillance */
.surv-section {
    margin-bottom: 3rem;
}

.surv-section h2 {
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.trust-score-card {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #ff0000;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.trust-score-value {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Share Tech Mono', monospace;
}

.trust-user-name {
    color: #fff;
    font-size: 1.2rem;
}

.trust-user-id {
    color: #666;
    font-size: 0.9rem;
}

.trust-last-seen {
    color: #888;
    font-size: 0.85rem;
    grid-column: 2 / 3;
}

.alt-account-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff8800;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.alt-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.alt-main, .alt-alt {
    font-family: 'Share Tech Mono', monospace;
    color: #fff;
}

.alt-arrow {
    font-size: 1.5rem;
}

.alt-confidence {
    color: #ffaa00;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.alt-detected {
    color: #666;
    font-size: 0.85rem;
}

.instance-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #0088ff;
    padding: 1rem;
    margin-bottom: 0.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.instance-user {
    color: #fff;
    font-weight: bold;
}

.instance-id {
    color: #666;
    font-size: 0.85rem;
}

.instance-location {
    color: #00aaff;
    font-family: 'Share Tech Mono', monospace;
    grid-column: 1 / 2;
}

.instance-time {
    color: #888;
    font-size: 0.85rem;
    text-align: right;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.no-data {
    text-align: center;
    color: #666;
    padding: 3rem;
    font-size: 1.1rem;
    border: 2px dashed #333;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .bans-container,
    .threats-container {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-card {
        grid-template-areas:
            "rank name"
            "rank total"
            "stats stats";
        grid-template-columns: 80px 1fr;
    }
    
    .leaderboard-stats {
        gap: 1.5rem;
    }
}
