  :root {
            --weco-surface: #1a1a24;
            --weco-elevated: #242430;
            --weco-orange: #FF6B35;
            --weco-orange-light: #FF8B66;
            --weco-orange-dark: #E55A28;
            --weco-text-primary: #FFFFFF;
            --weco-text-secondary: #B0B0C0;
            --weco-text-muted: #8888A0;
            --weco-success: #10B981;
            --weco-warning: #F59E0B;
            --weco-danger: #EF4444;
            --weco-info: #3B82F6;
            --weco-radius-sm: 8px;
            --weco-radius-md: 12px;
            --weco-radius-lg: 16px;
            --weco-radius-xl: 20px;
            --weco-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
            --weco-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
            --weco-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html, body {
            height: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #0f0f15 0%, #1a1a24 100%);
            color: var(--weco-text-primary);
            line-height: 1.5;
            position: relative;
            touch-action: manipulation;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            transition: background 0.3s ease, filter 0.3s ease;
        }

        body.light-mode {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            color: #1e293b;
            --weco-surface: #ffffff;
            --weco-elevated: #f1f5f9;
            --weco-text-primary: #1e293b;
            --weco-text-secondary: #64748b;
            --weco-text-muted: #94a3b8;
            --weco-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
            --weco-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --weco-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
        }

        /* Prevent zoom on mobile */
        input, select, textarea {
            font-size: 16px !important;
        }

        /* Background */
        .weco-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .weco-bg-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--weco-orange) 0%, transparent 70%);
            opacity: 0.05;
            filter: blur(40px);
            transition: all 0.3s ease;
        }

        body.light-mode .weco-bg-shape {
            opacity: 0.1;
        }

        .weco-bg-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -100px;
            animation: float 25s infinite linear;
        }

        .weco-bg-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -80px;
            right: -80px;
            background: radial-gradient(circle, var(--weco-orange-light) 0%, transparent 70%);
            animation: float 20s infinite linear reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, 30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 40px) rotate(240deg);
            }
        }

        /* Main Container */
        .weco-auth-container {
            min-height: 100vh;
            min-height: -webkit-fill-available;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }

        /* Auth Card */
        .weco-auth-card {
            background: rgba(36, 36, 48, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--weco-radius-xl);
            box-shadow: var(--weco-shadow-lg);
            width: 100%;
            max-width: 440px;
            overflow: hidden;
            position: relative;
            animation: weco-slide-up 0.4s ease-out;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-auth-card {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

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

        .weco-auth-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--weco-orange), var(--weco-orange-light));
            z-index: 1;
        }

        /* Header */
        .weco-auth-header {
            padding: 30px 24px;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(36, 36, 48, 0.8) 100%);
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        body.light-mode .weco-auth-header {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-logo-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--weco-elevated);
            border-radius: var(--weco-radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--weco-shadow-sm);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        body.light-mode .weco-logo-container {
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-logo-container img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .weco-brand-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            background: linear-gradient(135deg, var(--weco-text-primary), var(--weco-orange-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-brand-title {
            background: linear-gradient(135deg, #1e293b, var(--weco-orange));
        }

        .weco-brand-subtitle {
            font-size: 14px;
            color: var(--weco-text-secondary);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        /* Body */
        .weco-auth-body {
            padding: 30px 24px;
        }

        /* Tabs */
        .weco-auth-tabs {
            display: flex;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--weco-radius-lg);
            padding: 6px;
            margin-bottom: 28px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        body.light-mode .weco-auth-tabs {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-auth-tab {
            flex: 1;
            padding: 14px 16px;
            border: none;
            background: transparent;
            font-size: 15px;
            font-weight: 600;
            color: var(--weco-text-secondary);
            cursor: pointer;
            border-radius: var(--weco-radius-md);
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 50px;
        }

        .weco-auth-tab.active {
            background: linear-gradient(135deg, var(--weco-orange), var(--weco-orange-dark));
            color: white;
            box-shadow: var(--weco-shadow-sm);
        }

        .weco-auth-tab:not(.active):active {
            background: rgba(255, 255, 255, 0.05);
        }

        body.light-mode .weco-auth-tab:not(.active):active {
            background: rgba(0, 0, 0, 0.05);
        }

        /* Form Styles */
        .weco-form-group {
            margin-bottom: 24px;
        }

        .weco-form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--weco-text-primary);
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .weco-input-group {
            position: relative;
        }

        .weco-input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--weco-text-muted);
            z-index: 2;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .weco-form-input {
            width: 100%;
            padding: 16px 16px 16px 48px;
            font-size: 16px;
            color: var(--weco-text-primary);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--weco-radius-md);
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            -webkit-appearance: none;
        }

        body.light-mode .weco-form-input {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #1e293b;
        }

        .weco-form-input:focus {
            outline: none;
            border-color: var(--weco-orange);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
        }

        body.light-mode .weco-form-input:focus {
            background: rgba(0, 0, 0, 0.05);
        }

        .weco-form-input::placeholder {
            color: var(--weco-text-muted);
        }

        .weco-password-toggle {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--weco-text-muted);
            cursor: pointer;
            padding: 8px;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .weco-password-toggle:active {
            color: var(--weco-orange);
        }

        /* Remember & Forgot */
        .weco-form-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .weco-form-check {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .weco-checkbox {
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
        }

        body.light-mode .weco-checkbox {
            background: rgba(0, 0, 0, 0.05);
            border: 2px solid rgba(0, 0, 0, 0.1);
        }

        .weco-checkbox.checked {
            background: var(--weco-orange);
            border-color: var(--weco-orange);
        }

        .weco-checkbox.checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .weco-checkbox-label {
            font-size: 14px;
            color: var(--weco-text-secondary);
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
        }

        .weco-forgot-link {
            font-size: 14px;
            color: var(--weco-orange);
            text-decoration: none;
            font-weight: 500;
            padding: 8px;
            position: relative;
            transition: all 0.3s ease;
        }

        .weco-forgot-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 8px;
            width: 0;
            height: 2px;
            background: var(--weco-orange);
            transition: width 0.3s ease;
        }

        .weco-forgot-link:hover::after {
            width: calc(100% - 16px);
        }

        .weco-forgot-link:active {
            opacity: 0.8;
        }

        /* Buttons */
        .weco-btn {
            width: 100%;
            padding: 18px 24px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: var(--weco-radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 24px;
            min-height: 56px;
        }

        .weco-btn-primary {
            background: linear-gradient(135deg, var(--weco-orange), var(--weco-orange-dark));
            color: white;
            box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
        }

        .weco-btn-primary:active {
            transform: translateY(2px);
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        }

        .weco-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Language Selector */
        .weco-language-selector {
            margin-bottom: 20px;
        }

        .weco-language-btn {
            width: 100%;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--weco-radius-md);
            color: var(--weco-text-primary);
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            min-height: 56px;
        }

        body.light-mode .weco-language-btn {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #1e293b;
        }

        .weco-language-btn:active {
            background: rgba(255, 255, 255, 0.05);
            transform: scale(0.98);
        }

        body.light-mode .weco-language-btn:active {
            background: rgba(0, 0, 0, 0.05);
        }

        .weco-language-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .weco-language-flag {
            width: 24px;
            height: 18px;
            border-radius: 3px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        body.light-mode .weco-language-flag {
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        .weco-auth-footer {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-auth-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-footer-text {
            color: var(--weco-text-muted);
            font-size: 14px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .weco-footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        .weco-footer-link {
            color: var(--weco-text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px;
            position: relative;
            transition: all 0.3s ease;
        }

        .weco-footer-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 8px;
            width: 0;
            height: 2px;
            background: var(--weco-orange);
            transition: width 0.3s ease;
        }

        .weco-footer-link:hover {
            color: var(--weco-orange);
        }

       .weco-footer-link:hover::after {
          width: calc(100% - 16px);
        } 


        .weco-footer-link:active {
            opacity: 0.8;
        }

        /* Status Indicator */
        .weco-status-indicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(36, 36, 48, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--weco-radius-lg);
            padding: 14px 20px;
            font-size: 14px;
            color: var(--weco-text-secondary);
            box-shadow: var(--weco-shadow-md);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-status-indicator {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #64748b;
        }

        .weco-status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--weco-success);
            position: relative;
        }

        .weco-status-dot::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: var(--weco-success);
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0; }
        }

        .weco-status-dot.offline {
            background: var(--weco-danger);
        }

        .weco-status-dot.offline::before {
            background: var(--weco-danger);
        }

        .weco-status-dot.partial {
            background: var(--weco-warning);
        }

        .weco-status-dot.partial::before {
            background: var(--weco-warning);
        }

        /* ========== COOKIE OVERLAY ========== */
        .weco-cookie-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-cookie-overlay {
            background: rgba(255, 255, 255, 0.98);
        }

        .weco-cookie-overlay.show {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .weco-cookie-banner {
            background: var(--weco-elevated);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--weco-radius-xl);
            padding: 30px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--weco-shadow-lg);
            position: relative;
            animation: slideUp 0.4s ease;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-cookie-banner {
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .weco-cookie-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        body.light-mode .weco-cookie-header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-cookie-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--weco-orange), var(--weco-orange-dark));
            border-radius: var(--weco-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .weco-cookie-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--weco-text-primary);
            margin: 0;
            transition: all 0.3s ease;
        }

        .weco-cookie-description {
            color: var(--weco-text-secondary);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .weco-cookie-description a {
            color: var(--weco-orange);
            text-decoration: none;
            font-weight: 500;
        }

        .weco-cookie-description a:hover {
            text-decoration: underline;
        }

        .weco-cookie-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .weco-cookie-btn {
            padding: 18px;
            border-radius: var(--weco-radius-md);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 56px;
        }

        .weco-cookie-btn:active {
            transform: translateY(2px);
        }

        .weco-cookie-btn-accept {
            background: linear-gradient(135deg, var(--weco-orange), var(--weco-orange-dark));
            color: white;
        }

        .weco-cookie-btn-reject {
            background: rgba(255, 255, 255, 0.05);
            color: var(--weco-text-secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-mode .weco-cookie-btn-reject {
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* ========== MODAL OVERLAY ========== */
        .weco-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-modal-overlay {
            background: rgba(255, 255, 255, 0.98);
        }

        .weco-modal-overlay.show {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .weco-modal {
            background: var(--weco-elevated);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--weco-radius-xl);
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-modal {
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .weco-modal-header {
            padding: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            background: var(--weco-elevated);
            z-index: 2;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-modal-header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-modal-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--weco-orange);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .weco-modal-close {
            width: 44px;
            height: 44px;
            border: none;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--weco-radius-sm);
            color: var(--weco-text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.2s ease;
        }

        body.light-mode .weco-modal-close {
            background: rgba(0, 0, 0, 0.05);
        }

        .weco-modal-close:active {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(0.95);
        }

        body.light-mode .weco-modal-close:active {
            background: rgba(0, 0, 0, 0.1);
        }

        .weco-modal-body {
            padding: 24px;
            color: var(--weco-text-secondary);
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .weco-modal-footer {
            padding: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            position: sticky;
            bottom: 0;
            background: var(--weco-elevated);
            z-index: 2;
            transition: all 0.3s ease;
        }

        body.light-mode .weco-modal-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* ========== PAGE BLOCKER ========== */
        .weco-page-blocker {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 9998;
            display: none;
            pointer-events: all;
        }

        .weco-page-blocker.show {
            display: block;
        }

        /* ========== TOAST ========== */
        .weco-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--weco-orange);
            color: white;
            padding: 14px 24px;
            border-radius: var(--weco-radius-md);
            box-shadow: var(--weco-shadow-md);
            z-index: 10001;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            max-width: 90%;
            animation: toastIn 0.3s ease;
        }

        @keyframes toastIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        @keyframes toastOut {
            from {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            to {
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }
        }

        /* ========== LOADING ========== */
        .weco-loading {
            display: none;
        }

        .weco-btn.loading .weco-loading {
            display: flex;
        }

        .weco-btn.loading span {
            opacity: 0;
        }

        .weco-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ========== DARK MODE TOGGLE ========== */
        .weco-dark-mode-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            background: rgba(36, 36, 48, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--weco-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--weco-text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: var(--weco-shadow-sm);
        }

        body.light-mode .weco-dark-mode-toggle {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .weco-dark-mode-toggle:active {
            transform: scale(0.95);
        }

        /* ========== ERROR STATES ========== */
        .weco-input-error {
            border-color: var(--weco-danger) !important;
        }

        .weco-error-message {
            color: var(--weco-danger);
            font-size: 14px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ========== TERMS ACCEPTED ========== */
        .weco-terms-accepted {
            background: rgba(16, 185, 129, 0.1) !important;
            color: var(--weco-success) !important;
            border-color: rgba(16, 185, 129, 0.2) !important;
            cursor: default !important;
        }

        .weco-terms-accepted:active {
            transform: none !important;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .weco-auth-container {
                padding: 16px;
            }
            
            .weco-auth-card {
                max-width: 100%;
            }
            
            .weco-auth-header {
                padding: 24px 20px;
            }
            
            .weco-auth-body {
                padding: 24px 20px;
            }
            
            .weco-brand-title {
                font-size: 24px;
            }
            
            .weco-logo-container {
                width: 70px;
                height: 70px;
            }
            
            .weco-logo-container img {
                width: 44px;
                height: 44px;
            }
            
            .weco-footer-links {
                flex-direction: column;
                gap: 12px;
            }
            
            .weco-status-indicator {
                right: 16px;
                left: 16px;
                justify-content: space-between;
            }
            
            .weco-cookie-banner {
                padding: 24px;
            }
            
            .weco-modal {
                max-width: 100%;
            }
        }

        @media (min-width: 768px) {
            .weco-cookie-buttons {
                flex-direction: row;
            }
            
            .weco-cookie-btn {
                min-width: 140px;
            }
        }

        /* ========== SCROLLBAR ========== */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(255, 107, 53, 0.3);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 107, 53, 0.5);
        }

        body.light-mode ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
        }

        body.light-mode ::-webkit-scrollbar-thumb {
            background: rgba(255, 107, 53, 0.2);
        }

        body.light-mode ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 107, 53, 0.4);
        }
        /* Footer Credit */
.weco-footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--weco-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.weco-footer-credit i {
    color: var(--weco-orange);
    font-size: 14px;
}

/* Footer */
.weco-auth-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

body.light-mode .weco-auth-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer Credit */
.weco-footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--weco-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.weco-footer-credit i {
    color: var(--weco-orange);
    font-size: 14px;
    flex-shrink: 0; /* Previne strângerea iconiței */
}

/* Footer Links - menține layout-ul orizontal pe toate dispozitivele */
.weco-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap; /* Nu permite wrap pe linii multiple */
}

.weco-footer-link {
    color: var(--weco-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap; /* Previne împărțirea textului */
}

.weco-footer-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 8px;
    width: 0;
    height: 2px;
    background: var(--weco-orange);
    transition: width 0.3s ease;
}

.weco-footer-link:hover {
    color: var(--weco-orange);
}

.weco-footer-link:hover::after {
    width: calc(100% - 16px);
}

.weco-footer-link:active {
    opacity: 0.8;
}

/* Pentru dispozitive foarte mici, ajustează gap-ul */
@media (max-width: 480px) {
    .weco-footer-links {
        gap: 16px; /* Reduce puțin spațiul dintre link-uri */
    }
    
    .weco-footer-link {
        font-size: 13px; /* Text puțin mai mic pe ecrane foarte mici */
        padding: 6px;
    }
    
    .weco-footer-credit {
        font-size: 13px;
        gap: 8px;
    }
    
    .weco-footer-credit i {
        font-size: 13px;
    }
}

/* Pentru ecrane mai mici decât 380px (telefoane foarte mici) */
@media (max-width: 380px) {
    .weco-footer-links {
        gap: 12px; /* Reduce și mai mult spațiul */
    }
    
    .weco-footer-link {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .weco-footer-credit {
        font-size: 12px;
    }
}

/* Pentru a preveni overflow pe ecrane mici */
.weco-auth-card {
    overflow: hidden; /* Ascunde orice overflow */
}

.weco-auth-body {
    overflow: hidden; /* Previne scroll-ul orizontal */
}

/* Pentru a asigura că textul nu depășește lățimea cardului */
.weco-footer-credit {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
/* ===== PASSWORD STRENGTH INDICATOR ===== */
        .weco-password-strength {
            margin-top: 12px;
            display: none;
            animation: slideDown 0.3s ease;
        }

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

        .strength-meter {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        body.light-mode .strength-meter {
            background: rgba(0, 0, 0, 0.08);
        }

        .strength-bar {
            height: 100%;
            width: 0%;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .strength-bar.very-weak {
            width: 25%;
            background: var(--weco-danger);
            animation: pulseDanger 2s infinite;
        }

        .strength-bar.weak {
            width: 50%;
            background: var(--weco-warning);
        }

        .strength-bar.good {
            width: 75%;
            background: var(--weco-info);
        }

        .strength-bar.strong {
            width: 100%;
            background: var(--weco-success);
            animation: pulseSuccess 2s infinite;
        }

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

        @keyframes pulseSuccess {
            0%, 100% { 
                box-shadow: 0 0 5px var(--weco-success); 
            }
            50% { 
                box-shadow: 0 0 15px var(--weco-success); 
            }
        }

        .strength-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            margin-bottom: 12px;
        }

        .strength-text {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .strength-requirements {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 8px;
            margin-top: 12px;
        }

        .requirement {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--weco-text-muted);
        }

        .requirement i {
            font-size: 12px;
            color: var(--weco-danger);
            transition: all 0.3s ease;
        }

        .requirement.met i {
            color: var(--weco-success);
        }

        .requirement.met span {
            color: var(--weco-text-secondary);
        }

        /* ===== SECURITY BADGES ===== */
        .weco-security-badges {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            margin: 24px 0;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--weco-radius-md);
            backdrop-filter: blur(10px);
        }

        body.light-mode .weco-security-badges {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .weco-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 8px;
            flex: 1;
            min-width: 0;
        }

        .weco-badge i {
            font-size: 16px;
            color: var(--weco-orange);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
        }

        .weco-badge span {
            font-size: 10px;
            color: var(--weco-text-secondary);
            text-align: center;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        /* ===== LANGUAGE SELECTOR ===== */
        .weco-language-selector {
            margin-bottom: 20px;
        }

        .weco-language-btn {
            width: 100%;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--weco-radius-md);
            color: var(--weco-text-primary);
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(10px);
            min-height: 56px;
        }

        body.light-mode .weco-language-btn {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #1e293b;
        }

        .weco-language-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .weco-language-flag {
            width: 24px;
            height: 18px;
            border-radius: 3px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ===== FOOTER ===== */
        .weco-auth-footer {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        body.light-mode .weco-auth-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-footer-credit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--weco-text-muted);
            font-size: 14px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .weco-footer-credit i {
            color: var(--weco-orange);
        }

        .weco-footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .weco-footer-link {
            color: var(--weco-text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px;
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        /* ===== MODALS ===== */
        .weco-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        body.light-mode .weco-modal-overlay {
            background: rgba(255, 255, 255, 0.98);
        }

        .weco-modal-overlay.show {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .weco-modal {
            background: var(--weco-elevated);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--weco-radius-xl);
            width: 100%;
            max-width: 400px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        body.light-mode .weco-modal {
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .weco-modal-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            background: var(--weco-elevated);
            z-index: 2;
        }

        body.light-mode .weco-modal-header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weco-modal-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--weco-orange);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .weco-modal-close {
            width: 44px;
            height: 44px;
            border: none;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--weco-radius-sm);
            color: var(--weco-text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            min-width: 44px;
        }

        .weco-modal-body {
            padding: 20px;
            color: var(--weco-text-secondary);
            line-height: 1.6;
            max-height: calc(80vh - 140px);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .weco-modal-footer {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            position: sticky;
            bottom: 0;
            background: var(--weco-elevated);
            z-index: 2;
        }
