.protect-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.header-section h1 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-warning {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.header-warning p {
    margin: 0;
    font-size: 0.9em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.red { border-left-color: #e74c3c; }
.stat-card.orange { border-left-color: #f39c12; }
.stat-card.green { border-left-color: #27ae60; }
.stat-card.blue { border-left-color: #3498db; }

.stat-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.stat-card h3 {
    margin: 0 0 5px 0;
}

.stat-card.red h3 { color: #e74c3c; }
.stat-card.orange h3 { color: #f39c12; }
.stat-card.green h3 { color: #27ae60; }
.stat-card.blue h3 { color: #3498db; }

.stat-card p {
    margin: 0;
    color: #666;
}

.attack-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.attack-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.section-header {
    padding: 25px;
    color: white;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.section-header.xss {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.section-header.csrf {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.section-header.path {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.section-header.brute {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.section-header.additional {
    background: linear-gradient(135deg, #16a085, #1abc9c);
}

.section-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header p {
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.section-icon {
    font-size: 1.8em;
}

.section-content {
    padding: 25px;
}

.test-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.test-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.test-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.test-btn:active {
    transform: translateY(-1px);
}

.test-btn.sql { background: #e74c3c; color: white; }
.test-btn.xss { background: #f39c12; color: white; }
.test-btn.csrf { background: #9b59b6; color: white; }
.test-btn.path { background: #34495e; color: white; }
.test-btn.brute { background: #e67e22; color: white; }
.test-btn.additional { background: #16a085; color: white; }

.test-results {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    min-height: 80px;
    border-left: 4px solid #dee2e6;
}

.loading {
    background: #e3f2fd;
    color: #1976d2;
    text-align: center;
    font-weight: 600;
}

.success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.notice-success, div.updated {
    border-left-color: #00a32a;
    background: none;
}

.warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

@media (max-width: 768px) {
    .stats-grid,
    .test-buttons {
        grid-template-columns: 1fr;
    }
    
    .header-section h1 {
        font-size: 2em;
    }
    
    .section-header h2 {
        flex-direction: column;
        gap: 5px;
    }
}
