  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: #ffffff;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 40px 0;
            background: rgba(0,0,0,0.3);
            margin-bottom: 30px;
            border-radius: 10px;
        }

        h1 {
            font-size: 2.5em;
            color: #ff6b6b;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 1.2em;
            color: #cccccc;
        }

        .nav-buttons {
            text-align: center;
            margin: 20px 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin: 0 10px;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #ff5252;
        }

        .help-section {
            background: rgba(76, 175, 80, 0.2);
            border: 2px solid #4caf50;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
        }

        .help-section h3 {
            color: #4caf50;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .help-section p {
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .help-section .highlight {
            color: #4caf50;
            font-weight: bold;
        }

        .download-section {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }

        .download-btn {
            background: #4ecdc4;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin: 5px;
        }

        .download-btn:hover {
            background: #45b7b8;
        }

        .statistics-full-width {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            margin: 30px 0;
        }

        .categories-full-width {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            margin: 30px 0;
        }

        .two-columns-remaining {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }

        .column {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
        }

        .column h3 {
            color: #ff6b6b;
            margin-bottom: 15px;
            font-size: 1.4em;
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #4ecdc4;
            text-align: center;
        }

        .stat-label {
            text-align: center;
            color: #cccccc;
            margin-top: 5px;
            margin-bottom: 15px;
        }

        .category-item, .ip-item {
            margin-bottom: 15px;
            padding: 10px;
            background: rgba(0,0,0,0.2);
            border-radius: 5px;
            border-left: 3px solid #4ecdc4;
        }

        .ip-item {
            border-left-color: #ff6b6b;
        }

        .filter-section {
            background: rgba(0,0,0,0.3);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .filter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .filter-select, .filter-input {
            padding: 8px;
            border-radius: 5px;
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid #444;
        }

        .filter-select option {
            background: #333;
            color: white;
        }

        .filter-btn {
            padding: 8px 15px;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .filter-btn:hover {
            background: #ff5252;
        }

        .reset-btn {
            padding: 8px 15px;
            background: #666;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .reset-btn:hover {
            background: #555;
        }

        .filter-info {
            margin-top: 10px;
            font-size: 0.9em;
            color: #cccccc;
        }

        .no-results {
            text-align: center;
            padding: 20px;
            color: #cccccc;
            background: rgba(0,0,0,0.2);
            border-radius: 8px;
        }

        .copy-template {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }

        .template-text {
            background: rgba(0,0,0,0.3);
            padding: 15px;
            border-radius: 5px;
            font-family: monospace;
            border-left: 4px solid #4ecdc4;
            white-space: pre-line;
            margin: 10px 0;
            font-size: 14px;
            line-height: 1.5;
            user-select: all;
        }

        .copy-btn {
            background: #4ecdc4;
            color: white;
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }

        .copy-btn:hover {
            background: #45b7b8;
        }

        .reports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .report-card {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 20px;
            border-left: 4px solid #ff6b6b;
        }

        .report-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .report-ip {
            font-size: 1.3em;
            font-weight: bold;
            color: #ff6b6b;
        }

        .report-date {
            color: #cccccc;
            font-size: 0.9em;
        }

        .attack-time {
            color: #ffa726;
            font-size: 0.9em;
            font-weight: bold;
        }

        .report-title {
            font-size: 1.1em;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .report-description {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .proof-links {
            margin-top: 15px;
        }

        .proof-links a {
            color: #4ecdc4;
            text-decoration: none;
            display: block;
            margin: 5px 0;
        }

        .proof-links a:hover {
            text-decoration: underline;
        }

        .category-badge {
            background: #4ecdc4;
            color: white;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 0.8em;
        }

        .warning-box {
            background: rgba(255, 107, 107, 0.2);
            border: 1px solid #ff6b6b;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        .teamspeak-name {
            color: #ffa726;
            font-style: italic;
        }

        .report-detail {
            margin-bottom: 8px;
            font-size: 0.9em;
        }

        .report-detail-label {
            font-weight: bold;
            color: #4ecdc4;
        }

        .client-version {
            color: #9c27b0;
            font-family: monospace;
            font-size: 0.85em;
        }

        .suspected-server {
            color: #ff9800;
        }

        .social-media {
            color: #2196f3;
        }

        .social-media a {
            color: #2196f3;
            text-decoration: none;
        }

        .social-media a:hover {
            text-decoration: underline;
        }

        .hoster-name {
            color: #9c27b0;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .two-columns-remaining {
                grid-template-columns: 1fr;
            }
            
            .filter-form {
                flex-direction: column;
                align-items: stretch;
            }
        }
		
		.filter-section {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-select, .filter-input {
    padding: 8px;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid #444;
}

.filter-btn {
    padding: 8px 15px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.reset-btn {
    padding: 8px 15px;
    background: #666;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.filter-info {
    margin-top: 10px;
    font-size: 0.9em;
    color: #cccccc;
}

.no-results {
    text-align: center;
    padding: 20px;
    color: #cccccc;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.hoster-name {
    color: #ffa726;
    font-style: italic;
}

.warning-box {
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.warning-box strong {
    color: #ffc107;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.warning-box p {
    margin: 0;
    color: #fff;
    line-height: 1.5;
}

.ip-item {
    background: rgba(0,0,0,0.3);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ip-item:hover {
    background: rgba(0,0,0,0.5);
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255,107,107,0.2);
}

.attack-time-highlight {
    background: linear-gradient(135deg, #ff3333, #ff6b6b);
    color: white;
    padding: 8px 15px;
    margin: -10px -10px 10px -10px;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.privacy-protected {
    color: #666;
    font-style: italic;
    font-size: 0.85em;
    opacity: 0.7;
}

.proof-link {
    color: #4caf50;
    text-decoration: none;
    padding: 2px 6px;
    background: rgba(76,175,80,0.1);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.proof-link:hover {
    background: rgba(76,175,80,0.2);
    text-decoration: none;
    color: #66bb6a;
}

.ip-item {
    background: rgba(0,0,0,0.3);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ip-item:hover {
    background: rgba(0,0,0,0.5);
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255,107,107,0.2);
}

.attack-time-highlight {
    background: linear-gradient(135deg, #ff3333, #ff6b6b);
    color: white;
    padding: 8px 15px;
    margin: -10px -10px 10px -10px;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.teamspeak-name {
    font-weight: bold;
    color: #4ecdc4;
    font-size: 1.1em;
}

.privacy-protected {
    color: #666;
    font-style: italic;
    font-size: 0.85em;
    opacity: 0.7;
}

.proof-link {
    color: #4caf50;
    text-decoration: none;
    padding: 2px 6px;
    background: rgba(76,175,80,0.1);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.proof-link:hover {
    background: rgba(76,175,80,0.2);
    text-decoration: none;
    color: #66bb6a;
}

