/* Préfixe bug-hunter pour éviter les conflits */
        .bug-hunter-container {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 2rem 0;
        }

        .bug-hunter-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .bug-hunter-card:hover {
            transform: translateY(-5px);
        }

        .bug-hunter-header {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .bug-hunter-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1.5" fill="white" opacity="0.1"/></svg>');
        }

        .bug-hunter-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .bug-hunter-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .bug-hunter-form-section {
            padding: 2rem;
        }

        .bug-hunter-form-group {
            margin-bottom: 1.5rem;
        }

        .bug-hunter-label {
            font-weight: 600;
            color: #2d3436;
            margin-bottom: 0.5rem;
            display: block;
        }

        .bug-hunter-input,
        .bug-hunter-textarea,
        .bug-hunter-select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fff;
        }

        .bug-hunter-input:focus,
        .bug-hunter-textarea:focus,
        .bug-hunter-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .bug-hunter-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .bug-hunter-severity-options {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .bug-hunter-severity-option {
            flex: 1;
            min-width: 120px;
        }

        .bug-hunter-severity-option input[type="radio"] {
            display: none;
        }

        .bug-hunter-severity-label {
            display: block;
            padding: 1rem;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .bug-hunter-severity-option input[type="radio"]:checked + .bug-hunter-severity-label {
            background: #667eea;
            color: white;
            border-color: #667eea;
            transform: scale(1.05);
        }

        .bug-hunter-severity-critical { border-color: #e74c3c !important; }
        .bug-hunter-severity-critical:checked + .bug-hunter-severity-label { background: #e74c3c !important; border-color: #e74c3c !important; }

        .bug-hunter-severity-high { border-color: #f39c12 !important; }
        .bug-hunter-severity-high:checked + .bug-hunter-severity-label { background: #f39c12 !important; border-color: #f39c12 !important; }

        .bug-hunter-severity-medium { border-color: #f1c40f !important; }
        .bug-hunter-severity-medium:checked + .bug-hunter-severity-label { background: #f1c40f !important; border-color: #f1c40f !important; color: #2d3436 !important; }

        .bug-hunter-severity-low { border-color: #27ae60 !important; }
        .bug-hunter-severity-low:checked + .bug-hunter-severity-label { background: #27ae60 !important; border-color: #27ae60 !important; }

        .bug-hunter-file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .bug-hunter-file-input {
            display: none;
        }

        .bug-hunter-file-label {
            display: block;
            padding: 1rem;
            background: linear-gradient(45deg, #74b9ff, #0984e3);
            color: white;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .bug-hunter-file-label:hover {
            background: linear-gradient(45deg, #0984e3, #74b9ff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(116, 185, 255, 0.4);
        }

        .bug-hunter-submit-btn {
            background: linear-gradient(45deg, #00b894, #00a085);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .bug-hunter-submit-btn:hover {
            background: linear-gradient(45deg, #00a085, #00b894);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 184, 148, 0.4);
        }

        .bug-hunter-submit-btn:active {
            transform: translateY(0);
        }

        .bug-hunter-loading {
            display: none;
        }

        .bug-hunter-success {
            background: linear-gradient(45deg, #00b894, #55efc4);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            color: white;
            margin-top: 1rem;
            display: none;
        }

        .bug-hunter-success i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .bug-hunter-platform-icons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .bug-hunter-platform-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .bug-hunter-platform-icon:hover {
            transform: scale(1.1);
        }

        .bug-hunter-android {
            background: linear-gradient(45deg, #a4c639, #8bc34a);
        }

        .bug-hunter-ios {
            background: linear-gradient(45deg, #007AFF, #5AC8FA);
        }

        .bug-hunter-animate-bounce {
            animation: bug-hunter-bounce 2s infinite;
        }

        @keyframes bug-hunter-bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .bug-hunter-stats {
            display: flex;
            justify-content: space-around;
            padding: 1rem;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 15px;
            margin: 1rem 0;
        }

        .bug-hunter-stat {
            text-align: center;
        }

        .bug-hunter-stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #667eea;
        }

        .bug-hunter-stat-label {
            font-size: 0.9rem;
            color: #636e72;
        }

        @media (max-width: 768px) {
            .bug-hunter-severity-options {
                flex-direction: column;
            }
            
            .bug-hunter-severity-option {
                min-width: auto;
            }
            
            .bug-hunter-title {
                font-size: 2rem;
            }
        }