        /* ===== Modern Color Scheme ===== */
        :root {
            --primary: #0a6e7c;
            --primary-dark: #084c56;
            --primary-light: #e6f7fa;
            --secondary: #6c63ff;
            --accent: #00c9b8;
            --success: #10b981;
            --error: #ef4444;
            --warning: #f59e0b;
            --dark: #1e293b;
            --darker: #0f172a;
            --light: #f8fafc;
            --medium: #cbd5e1;
            --card-bg: #ffffff;
            --body-bg: #f1f5f9;
            --border: #e2e8f0;
            --text: #334155;
            --text-light: #64748b;
        }


        /* ===== Layout ===== */
        .bcp-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-size: 20px 20px;
        }

        .bcp-card {
            width: 100%;
            max-width: 48rem;
            background-color: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .bcp-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bcp-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            pointer-events: none;
        }

        .bcp-header__title {
            font-size: 2.25rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }

        .bcp-header__subtitle {
            font-size: 1.1rem;
            font-weight: 400;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .bcp-content {
            padding: 2.5rem;
        }

        /* ===== Form Elements ===== */
        .bcp-form > *:not(:last-child) {
            margin-bottom: 1.75rem;
        }

        .form-group {
            margin-bottom: 1.75rem;
        }

        .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
        }

        .form-label i {
            margin-right: 0.5rem;
            color: var(--primary);
        }

        /* ===== Dropzone ===== */
        .bcp-dropzone {
            border: 2px dashed var(--border);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            background-color: rgba(10, 110, 124, 0.02);
        }

        .bcp-dropzone:hover, .bcp-dropzone--active {
            background-color: var(--primary-light);
            border-color: var(--primary);
        }

        .bcp-dropzone__initial-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: opacity 0.3s ease;
        }

        .bcp-dropzone__icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .bcp-dropzone:hover .bcp-dropzone__icon {
            transform: translateY(-5px);
        }

        .bcp-dropzone__text {
            color: var(--text-light);
            font-weight: 500;
            font-size: 1.1rem;
        }

        .bcp-dropzone__text span {
            color: var(--primary);
            font-weight: 700;
            position: relative;
        }

        .bcp-dropzone__text span::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .bcp-dropzone:hover .bcp-dropzone__text span::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Uploaded State */
        .bcp-dropzone--uploaded {
            border-style: solid;
            border-color: var(--success);
            background-color: rgba(16, 185, 129, 0.05);
            padding: 1.5rem;
        }

        .bcp-dropzone__uploaded-state {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .bcp-dropzone__file-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-align: left;
        }

        .bcp-dropzone__file-icon {
            font-size: 2rem;
            color: var(--success);
        }

        .bcp-dropzone__file-details {
            overflow: hidden;
        }

        .bcp-dropzone__file-name {
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 300px;
        }

        .bcp-dropzone__file-size {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        .bcp-dropzone__remove-btn {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .bcp-dropzone__remove-btn:hover {
            background: rgba(239, 68, 68, 0.1);
            color: var(--error);
            transform: rotate(90deg);
        }

        /* ===== Format Selectors ===== */
        .bcp-form__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.75rem;
        }

        @media (min-width: 768px) {
            .bcp-form__grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .bcp-form__select {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid var(--border);
            border-radius: 10px;
            background-color: var(--card-bg);
            color: var(--text);
            font-family: 'Source Code Pro', monospace;
            font-weight: 500;
            font-size: 1rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
			height: auto;
        }

        .bcp-form__select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(10, 110, 124, 0.2);
        }

        /* ===== Buttons ===== */
        .bcp-button-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .bcp-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 1.75rem;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .bcp-button:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 110, 124, 0.3);
        }

        .bcp-button--primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .bcp-button--primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(10, 110, 124, 0.2);
        }

        .bcp-button--primary:active:not(:disabled) {
            transform: translateY(0);
        }

        .bcp-button--primary:disabled {
            background: var(--medium);
            cursor: not-allowed;
            opacity: 0.7;
        }

        .bcp-button--secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .bcp-button--secondary:hover {
            background: rgba(10, 110, 124, 0.05);
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ===== Progress Bar ===== */
        .bcp-progress-bar {
            width: 100%;
            height: 6px;
            background-color: rgba(10, 110, 124, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 1.5rem;
        }

        .bcp-progress-bar__inner {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            width: 0;
            transition: width 0.4s cubic-bezier(0.32, 0.72, 0, 1);
            position: relative;
            overflow: hidden;
        }

        .bcp-progress-bar__inner::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: progressShine 1.5s infinite;
        }

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

        /* ===== Pro Tip Box ===== */
        .bcp-pro-tip {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: linear-gradient(to right, rgba(10, 110, 124, 0.05), transparent);
            padding: 1.25rem;
            border-radius: 12px;
            margin-top: 2rem;
            border-left: 4px solid var(--accent);
        }

        .bcp-pro-tip__icon {
            color: var(--accent);
            flex-shrink: 0;
            font-size: 1.5rem;
            margin-top: 0.25rem;
        }

        .bcp-pro-tip__content {
            font-size: 0.95rem;
        }

        .bcp-pro-tip__title {
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .bcp-pro-tip__title::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--accent), transparent);
            margin-left: 0.5rem;
        }

        .bcp-pro-tip__text {
            color: var(--text-light);
            line-height: 1.7;
        }

        .bcp-pro-tip__text strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* ===== Notification System ===== */
        .bcp-notification-container {
            position: fixed;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: 100%;
            width: 350px;
        }

        .bcp-toast {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-left: 4px solid;
            background-color: var(--card-bg);
            border-color: var(--primary);
            position: relative;
            overflow: hidden;
            transform: translateY(100%);
            animation: toastIn 0.5s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
        }
        
        .bcp-toast.is-hiding {
            animation: toastOut 0.5s ease-in forwards;
        }

        .bcp-toast--success {
            border-color: var(--success);
        }

        .bcp-toast--error {
            border-color: var(--error);
        }

        .bcp-toast--info {
            border-color: var(--primary);
        }

        .bcp-toast__icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .bcp-toast--success .bcp-toast__icon {
            color: var(--success);
        }

        .bcp-toast--error .bcp-toast__icon {
            color: var(--error);
        }

        .bcp-toast--info .bcp-toast__icon {
            color: var(--primary);
        }

        .bcp-toast__content {
            flex: 1;
        }

        .bcp-toast__title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .bcp-toast__message {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        .bcp-toast__close-btn {
            position: absolute;
            top: 8px;
            right: 12px;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s ease;
            line-height: 1;
        }
        
        .bcp-toast__close-btn:hover {
            color: var(--text);
        }
        
        .bcp-toast__progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            width: 100%;
            background-color: var(--primary);
            animation: progressShrink 4s linear forwards;
        }
        
        .bcp-toast--success .bcp-toast__progress { background-color: var(--success); }
        .bcp-toast--error .bcp-toast__progress { background-color: var(--error); }
        .bcp-toast--info .bcp-toast__progress { background-color: var(--primary); }

        @keyframes toastIn {
            from {
                opacity: 0;
                transform: translateY(100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes toastOut {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(50%);
            }
        }
        
        @keyframes progressShrink {
            from { width: 100%; }
            to { width: 0%; }
        }

        /* ===== Responsive Adjustments ===== */
        @media (max-width: 768px) {
            .bcp-header {
                padding: 2rem 1.5rem;
            }
            
            .bcp-content {
                padding: 2rem 1.5rem;
            }
            
            .bcp-header__title {
                font-size: 1.75rem;
            }
            
            .bcp-header__subtitle {
                font-size: 1rem;
            }
            
            .bcp-button-group {
                flex-direction: column;
            }
            
            .bcp-button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .bcp-dropzone {
                padding: 1.75rem 1.5rem;
            }
            
            .bcp-dropzone__text {
                font-size: 1rem;
            }
            
            .bcp-dropzone__file-name {
                max-width: 200px;
            }
        }

        /* ===== Utility Classes ===== */
        .hidden { 
            display: none !important; 
        }