/* DeepSeek Inspector Pro - Nginx Site Styles */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f5f6fa;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    .header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 40px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .subtitle {
        font-size: 1.1em;
        opacity: 0.9;
    }

    /* Stats Container */
    .stats-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .stat-card {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        padding: 20px 30px;
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card[data-type="success"] {
        background: rgba(40, 167, 69, 0.2);
    }

    .stat-card[data-type="warning"] {
        background: rgba(255, 193, 7, 0.2);
    }

    .stat-card[data-type="error"] {
        background: rgba(220, 53, 69, 0.2);
    }

    .stat-number {
        font-size: 2.5em;
        font-weight: bold;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.9em;
        margin-top: 5px;
        opacity: 0.9;
    }

    /* Main Content */
    .main-content {
        padding: 40px 0;
        min-height: calc(100vh - 400px);
    }

    /* Toolbar */
    .toolbar {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .search-box {
        flex: 1;
        min-width: 300px;
    }

    .search-input {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        border: 2px solid #e0e6ed;
        border-radius: 8px;
        transition: border-color 0.3s;
    }

    .search-input:focus {
        outline: none;
        border-color: #667eea;
    }

    .filter-buttons {
        display: flex;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        border: 2px solid #e0e6ed;
        background: white;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .filter-btn:hover {
        border-color: #667eea;
        color: #667eea;
    }

    .filter-btn.active {
        background: #667eea;
        color: white;
        border-color: #667eea;
    }

    /* Reports Grid */
    .reports-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 20px;
    }

    /* Report Card */
    .report-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        overflow: hidden;
        transition: all 0.3s;
        animation: fadeIn 0.5s ease-out;
    }

    .report-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .report-card.success {
        border-top: 4px solid #28a745;
    }

    .report-card.warning {
        border-top: 4px solid #ffc107;
    }

    .report-card.error {
        border-top: 4px solid #dc3545;
    }

    .card-header {
        padding: 15px 20px;
        border-bottom: 1px solid #e0e6ed;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .status-badge {
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.85em;
        font-weight: 500;
    }

    .status-badge.success {
        background: #d4edda;
        color: #155724;
    }

    .status-badge.warning {
        background: #fff3cd;
        color: #856404;
    }

    .status-badge.error {
        background: #f8d7da;
        color: #721c24;
    }

    .card-body {
        padding: 20px;
    }

    .url-text {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 10px;
        word-break: break-all;
    }

    .card-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 0.85em;
        color: #999;
    }

    .view-report-btn {
        display: inline-block;
        padding: 10px 20px;
        background: #667eea;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.3s;
    }

    .view-report-btn:hover {
        background: #5a67d8;
    }

    /* Loading */
    .loading {
        text-align: center;
        padding: 60px;
    }

    .spinner {
        width: 50px;
        height: 50px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #667eea;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Footer */
    .footer {
        background: #2c3e50;
        color: #ecf0f1;
        padding: 30px 0;
        text-align: center;
    }

    .footer p {
        margin: 5px 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .header h1 {
            font-size: 1.8em;
        }

        .stats-container {
            gap: 15px;
        }

        .stat-card {
            padding: 15px 20px;
        }

        .stat-number {
            font-size: 2em;
        }

        .toolbar {
            flex-direction: column;
        }

        .search-box {
            width: 100%;
        }

        .reports-grid {
            grid-template-columns: 1fr;
        }
    }

    /* 404 Page */
    .error-404 {
        text-align: center;
        padding: 100px 20px;
    }

    .error-404 h1 {
        font-size: 6em;
        color: #667eea;
        margin-bottom: 20px;
    }

    .error-404 p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .back-home {
        display: inline-block;
        padding: 12px 30px;
        background: #667eea;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.3s;
    }

    .back-home:hover {
        background: #5a67d8;
    }