  * {
            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;
}

 /* Zusätzliche CSS-Klassen für Filter */
        .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:focus, .filter-input:focus {
            background: rgba(255,255,255,0.2);
            border-color: #ff6b6b;
            outline: none;
        }
        
        .filter-btn {
            padding: 8px 15px;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .filter-btn:hover {
            background: #ff5252;
        }
        
        .reset-btn {
            padding: 8px 15px;
            background: #666;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        
        .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;
        }
        
        .hoster-name {
            color: #ffa726;
            font-style: italic;
        }
        
        .proof-link {
            color: #4caf50;
            text-decoration: none;
            word-break: break-all;
        }
        
        .proof-link:hover {
            text-decoration: underline;
        }
        
        .privacy-protected {
            color: #999;
            font-style: italic;
            font-size: 0.85em;
        }
        
        .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; }
        }
        
        .country-flag {
            display: inline-block;
            width: 20px;
            height: 15px;
            margin-right: 5px;
            vertical-align: middle;
        }
        
        .asn-info {
            color: #03a9f4;
            font-size: 0.85em;
        }
        
        @media (max-width: 768px) {
            .filter-form {
                flex-direction: column;
                align-items: stretch;
            }
        }
		
		
		.date-slider-container {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.slider-wrapper {
    margin: 15px 0;
}

.date-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

.date-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ff6b6b;
    cursor: pointer;
}

.date-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ff6b6b;
    cursor: pointer;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #fff;
}

.selected-date {
    font-weight: bold;
    color: #4ecdc4;
}

.date-display {
    color: #ffa726;
}




.date-slider-container {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.slider-wrapper {
    margin: 15px 0;
}

.date-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

.date-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ff6b6b;
    cursor: pointer;
}

.date-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ff6b6b;
    cursor: pointer;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #fff;
}

.selected-date {
    font-weight: bold;
    color: #4ecdc4;
}

.date-display {
    color: #ffa726;
}






/* Kalender Styles */
.calendar-container {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.calendar-nav-btn:hover {
    background: #ff5252;
}

.calendar-month-display {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}

.month-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.calendar-day {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 50px;
}

.calendar-day:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.calendar-day.has-tsuser {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
}

.calendar-day.has-ips {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.2);
}

.calendar-day.has-both {
    border-color: #ffa726;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
}

.calendar-day.today {
    border: 2px solid #fff;
    font-weight: bold;
}

.calendar-day.other-month {
    opacity: 0.3;
}

.calendar-day-number {
    font-size: 1.1em;
    color: #fff;
}

.calendar-day-count {
    font-size: 0.7em;
    color: #ccc;
    position: absolute;
    bottom: 2px;
    right: 5px;
}

.calendar-weekday {
    font-weight: bold;
    color: #888;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ccc;
    font-size: 0.9em;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .month-calendar {
        gap: 2px;
    }
    
    .calendar-day {
        min-height: 40px;
    }
    
    .calendar-day-number {
        font-size: 0.9em;
    }
}

/* Kompakter Kalender */
.calendar-container {
    max-width: 500px; /* Maximale Breite begrenzen */
    margin: 20px auto; /* Zentrieren */
}

.month-calendar {
    gap: 2px; /* Kleinerer Abstand zwischen Tagen */
}

.calendar-day {
    min-height: 35px; /* Kleinere Tage */
    font-size: 0.85em; /* Kleinere Schrift */
}

.calendar-day-number {
    font-size: 0.9em;
}

.calendar-weekday {
    padding: 5px 0;
    font-size: 0.8em;
}

.calendar-navigation {
    margin-bottom: 10px;
}

.calendar-nav-btn {
    padding: 5px 10px;
    font-size: 14px;
}

.calendar-month-display {
    font-size: 1em;
}

/* Noch kompakter für Mobile */
@media (max-width: 768px) {
    .calendar-container {
        max-width: 100%;
        padding: 10px;
    }
    
    .calendar-day {
        min-height: 30px;
    }
}


/* ===== NEUE 3-SPALTEN LAYOUT ===== */
.three-columns-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.column-box {
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.column-box h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-align: center;
}

/* Statistiken anpassen */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
}

.stat-item .stat-number {
    font-size: 1.8em;
    color: #4ecdc4;
    font-weight: bold;
}

.stat-item .stat-label {
    font-size: 0.8em;
    color: #ccc;
    margin-top: 5px;
}

/* Kompakter Kalender */
.month-calendar-compact {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 10px;
}

.month-calendar-compact .calendar-day {
    min-height: 30px;
    font-size: 0.8em;
}

.month-calendar-compact .calendar-day-number {
    font-size: 0.9em;
}

.calendar-legend-compact {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 0.8em;
}

.calendar-legend-compact .legend-item {
    display: flex;
    align-items: center;
    gap: 3px;
}

.calendar-legend-compact .legend-color {
    width: 12px;
    height: 12px;
}

/* Mobile Ansicht */
@media (max-width: 1200px) {
    .three-columns-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .column-box:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .three-columns-container {
        grid-template-columns: 1fr;
    }
    
    .column-box:last-child {
        grid-column: span 1;
    }
}

/* Report Management Button Styles */
.report-management-section {
    margin-top: 20px;
    padding: 15px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.report-management-section:hover {
    background: rgba(78, 205, 196, 0.15);
    border-color: rgba(78, 205, 196, 0.5);
}

.report-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.report-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.button-container {
  text-align: center;
  margin-top: 50px;
}

.report-button {
  background: linear-gradient(135deg, #8b0000, #000000);
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 30px;
  border: 2px solid #ff0000;
  border-radius: 10px;
  box-shadow: 0 0 20px red;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  animation: pulse 1.5s infinite;
}

.report-button:hover {
  background: linear-gradient(135deg, #ff0000, #330000);
  color: #ffffff;
  box-shadow: 0 0 30px crimson;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px red;
  }
  50% {
    box-shadow: 0 0 25px crimson;
  }
  100% {
    box-shadow: 0 0 10px red;
  }
}

.report-button {
  background: linear-gradient(135deg, #8b0000, #000000);
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 30px;
  border: 2px solid #ff0000;
  border-radius: 10px;
  box-shadow: 0 0 20px red;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  animation: pulse 1.5s infinite;
  position: relative;
  overflow: hidden;
}

/* Glitch-Effekt */
.report-button::before {
  content: "💀🔥 DDoSSer des Jahres – 2025 🔥💀";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  color: #00ff00;
  opacity: 0;
  animation: glitch 3s infinite;
  z-index: -1;
}

.report-button:hover {
  background: linear-gradient(135deg, #ff0000, #330000);
  color: #ffffff;
  box-shadow: 0 0 30px crimson, 0 0 50px red;
  transform: scale(1.05) rotate(1deg);
  animation: shake 0.5s ease-in-out;
}

.report-button:active {
  transform: scale(0.95);
  box-shadow: 0 0 15px red;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px red;
  }
  50% {
    box-shadow: 0 0 25px crimson, 0 0 40px red;
  }
  100% {
    box-shadow: 0 0 10px red;
  }
}

/* Glitch Animation */
@keyframes glitch {
  0%, 90%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  5% {
    opacity: 0.8;
    transform: translateX(-2px);
  }
  10% {
    opacity: 0.6;
    transform: translateX(2px);
  }
  15% {
    opacity: 0;
    transform: translateX(0);
  }
}

/* Shake Animation */
@keyframes shake {
  0%, 100% { transform: scale(1.05) rotate(0deg); }
  25% { transform: scale(1.05) rotate(1deg); }
  75% { transform: scale(1.05) rotate(-1deg); }
}


.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #ffffff; /* Weiße Textfarbe */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1000;
  width: 80%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border: 2px solid #ff6b6b;
  animation: popupAppear 0.3s ease-out;
}

@keyframes popupAppear {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.popup h2 {
  color: #ff6b6b; /* Rote Überschrift */
  text-align: center;
  margin-bottom: 20px;
}

.popup h3 {
  color: #4ecdc4; /* Türkise Zwischenüberschriften */
  margin-top: 20px;
  margin-bottom: 10px;
}

.popup p {
  color: #ffffff; /* Weißer Text */
  line-height: 1.6;
  margin-bottom: 15px;
}

.highlight {
  color: #ffa726; /* Orange für Highlights */
  font-weight: bold;
}

.email-template {
  background: rgba(0,0,0,0.4);
  color: #00ff00; /* Grüner Text für Template */
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  overflow-x: auto;
  border-left: 4px solid #4ecdc4;
}


/* AGGRESSIVES POPUP DESIGN */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #0a0a0a, #1a0000, #330000);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 
    0 0 50px rgba(255, 0, 0, 0.8),
    0 0 100px rgba(255, 0, 0, 0.6),
    inset 0 0 30px rgba(255, 0, 0, 0.1);
  z-index: 10000;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  border: 3px solid #ff0000;
  animation: aggressivePopupAppear 0.5s ease-out;
  font-family: 'Arial Black', Arial, sans-serif;
}

@keyframes aggressivePopupAppear {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) rotate(-10deg);
    filter: blur(10px);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0px);
  }
}

/* Overlay noch dunkler */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%),
    linear-gradient(45deg, rgba(139,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 9999;
  backdrop-filter: blur(5px);
  animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Aggressive Überschriften */
.popup h2 {
  color: #ff0000;
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2em;
  font-weight: 900;
  text-shadow: 
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 30px #ff0000;
  animation: titlePulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes titlePulse {
  0%, 100% { 
    text-shadow: 
      0 0 10px #ff0000,
      0 0 20px #ff0000,
      0 0 30px #ff0000;
  }
  50% { 
    text-shadow: 
      0 0 20px #ff0000,
      0 0 30px #ff0000,
      0 0 40px #ff0000,
      0 0 50px #ff6666;
  }
}

.popup h3 {
  color: #ff6666;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  border-left: 5px solid #ff0000;
  padding-left: 15px;
  background: rgba(255, 0, 0, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
}

.popup p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Highlight noch aggressiver */
.highlight {
  color: #ffff00;
  font-weight: 900;
  background: linear-gradient(45deg, #ff0000, #ff6666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1em;
  text-shadow: 0 0 10px #ffff00;
  animation: highlightGlow 1.5s infinite;
}

@keyframes highlightGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* Email Template aggressiver */
.email-template {
  background: linear-gradient(135deg, #000000, #1a0000);
  color: #00ff00;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  overflow-x: auto;
  border: 2px solid #00ff00;
  box-shadow: 
    0 0 20px rgba(0, 255, 0, 0.3),
    inset 0 0 20px rgba(0, 255, 0, 0.1);
  font-size: 1em;
  line-height: 1.6;
  animation: matrixGlow 3s infinite;
}

@keyframes matrixGlow {
  0%, 100% { 
    border-color: #00ff00;
    box-shadow: 
      0 0 20px rgba(0, 255, 0, 0.3),
      inset 0 0 20px rgba(0, 255, 0, 0.1);
  }
  50% { 
    border-color: #66ff66;
    box-shadow: 
      0 0 30px rgba(0, 255, 0, 0.5),
      inset 0 0 30px rgba(0, 255, 0, 0.2);
  }
}

/* Step Boxen */
.step {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 0, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* Close Button aggressiver */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #ff0000;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #ffffff;
  background: #ff0000;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .popup {
    width: 95%;
    padding: 25px;
    border-radius: 15px;
  }
  
  .popup h2 {
    font-size: 1.8em;
  }
  
  .popup h3 {
    font-size: 1.2em;
  }
  
  .popup p {
    font-size: 1em;
  }
}

/* Zusätzliche Glitch-Effekte */
.popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 0, 0, 0.1) 50%,
    transparent 100%
  );
  animation: scanline 2s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes scanline {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Warnung Blinken */
.warning-blink {
  animation: warningBlink 1s infinite;
}

@keyframes warningBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}



/* AGGRESSIVES POPUP DESIGN - BREITER */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #0a0a0a, #1a0000, #330000);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 
    0 0 50px rgba(255, 0, 0, 0.8),
    0 0 100px rgba(255, 0, 0, 0.6),
    inset 0 0 30px rgba(255, 0, 0, 0.1);
  z-index: 10000;
  width: 95%; /* BREITER GEMACHT */
  max-width: 900px; /* MAXIMALE BREITE ERHÖHT */
  max-height: 90vh;
  overflow-y: auto;
  border: 3px solid #ff0000;
  animation: aggressivePopupAppear 0.5s ease-out;
  font-family: 'Arial Black', Arial, sans-serif;
}

@keyframes aggressivePopupAppear {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) rotate(-10deg);
    filter: blur(10px);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0px);
  }
}

/* Overlay noch dunkler */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%),
    linear-gradient(45deg, rgba(139,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 9999;
  backdrop-filter: blur(5px);
  animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Aggressive Überschriften */
.popup h2 {
  color: #ff0000;
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2em;
  font-weight: 900;
  text-shadow: 
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 30px #ff0000;
  animation: titlePulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes titlePulse {
  0%, 100% { 
    text-shadow: 
      0 0 10px #ff0000,
      0 0 20px #ff0000,
      0 0 30px #ff0000;
  }
  50% { 
    text-shadow: 
      0 0 20px #ff0000,
      0 0 30px #ff0000,
      0 0 40px #ff0000,
      0 0 50px #ff6666;
  }
}

.popup h3 {
  color: #ff6666;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  border-left: 5px solid #ff0000;
  padding-left: 15px;
  background: rgba(255, 0, 0, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
}

.popup p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Highlight noch aggressiver */
.highlight {
  color: #ffff00;
  font-weight: 900;
  background: linear-gradient(45deg, #ff0000, #ff6666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1em;
  text-shadow: 0 0 10px #ffff00;
  animation: highlightGlow 1.5s infinite;
}

@keyframes highlightGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* Email Template aggressiver */
.email-template {
  background: linear-gradient(135deg, #000000, #1a0000);
  color: #00ff00;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  overflow-x: auto;
  border: 2px solid #00ff00;
  box-shadow: 
    0 0 20px rgba(0, 255, 0, 0.3),
    inset 0 0 20px rgba(0, 255, 0, 0.1);
  font-size: 1em;
  line-height: 1.6;
  animation: matrixGlow 3s infinite;
}

@keyframes matrixGlow {
  0%, 100% { 
    border-color: #00ff00;
    box-shadow: 
      0 0 20px rgba(0, 255, 0, 0.3),
      inset 0 0 20px rgba(0, 255, 0, 0.1);
  }
  50% { 
    border-color: #66ff66;
    box-shadow: 
      0 0 30px rgba(0, 255, 0, 0.5),
      inset 0 0 30px rgba(0, 255, 0, 0.2);
  }
}

/* NEUER DANGER LINK BUTTON */
.danger-link-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 0 20px rgba(255, 0, 0, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #ff6666;
  transition: all 0.3s ease;
  animation: dangerButtonPulse 2s infinite;
}

.danger-link-btn:hover {
  background: linear-gradient(135deg, #ff3333, #ff0000);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 30px rgba(255, 0, 0, 0.8),
    0 8px 25px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: #ffffff;
}

@keyframes dangerButtonPulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(255, 0, 0, 0.5),
      0 5px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(255, 0, 0, 0.8),
      0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Step Boxen */
.step {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 0, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* Close Button aggressiver */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #ff0000;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #ffffff;
  background: #ff0000;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

/* Responsive für breiteres Popup */
@media (max-width: 1024px) {
  .popup {
    width: 90%;
    max-width: 800px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .popup {
    width: 95%;
    max-width: 100%;
    padding: 25px;
    border-radius: 15px;
  }
  
  .popup h2 {
    font-size: 1.8em;
  }
  
  .popup h3 {
    font-size: 1.2em;
  }
  
  .popup p {
    font-size: 1em;
  }
  
  .danger-link-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}

/* Zusätzliche Glitch-Effekte */
.popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 0, 0, 0.1) 50%,
    transparent 100%
  );
  animation: scanline 2s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes scanline {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Warnung Blinken */
.warning-blink {
  animation: warningBlink 1s infinite;
}

@keyframes warningBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}
