        :root {
            --primary-bg: #0a0a0f;
            --secondary-bg: #141420;
            --card-bg: #1a1a2e;
            --accent-bg: #16213e;
            --primary-text: #ffffff;
            --secondary-text: #b8bcc8;
            --accent-text: #64ffda;
            --purple-accent: #8b5cf6;
            --blue-accent: #3b82f6;
            --green-accent: #10b981;
            --orange-accent: #f59e0b;
            --red-accent: #ef4444;
            --border-color: #2a2a3e;
            --hover-bg: #252541;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
            --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.5);
            --border-radius: 20px;
        }
        
                body *:not(i):not([class*="icon"]):not([class*="fa"]):not([class*="material-icons"]) {
            font-family: 'Inter', sans-serif !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-image: url('../images/space_img.jpg');
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
        }

        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background:
                radial-gradient(circle at 20% 50%, rgba(116, 71, 105, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(157, 107, 147, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(116, 71, 105, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(157, 107, 147, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 10% 10%, rgba(116, 71, 105, 0.04) 0%, transparent 50%);
            animation: rotateSpace 180s linear infinite;
            z-index: -1;
            pointer-events: none;
        }

        @keyframes rotateSpace {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .stars {
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            pointer-events: none;
            z-index: 1;
            animation: rotateStarfield 120s linear infinite;
        }

        @keyframes rotateStarfield {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite alternate;
        }

        .star.large {
            width: 3px;
            height: 3px;
            background: radial-gradient(circle, white, rgba(116, 71, 105, 0.5));
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .star.medium {
            width: 2px;
            height: 2px;
            background: radial-gradient(circle, white, rgba(157, 107, 147, 0.3));
        }

        @keyframes twinkle {
            0% { opacity: 0.3; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.2); }
        }

        .profile-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 650px;
            margin: 20px;
        }

        .profile-card {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-medium);
            position: relative;
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-primary);
        }

        .header {
            background: var(--gradient-primary);
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
        }

        .header:hover::before, .header:active::before {
            transform: translateX(100%) rotate(45deg);
        }

        .header:hover::before {
            animation: shine 0.6s ease-in-out;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            letter-spacing: 2px;
        }

        .card-top-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .back-button-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(26, 26, 46, 0.3);
            color: var(--accent-text);
            border: 1px solid var(--border-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .back-button-circle i {
            font-size: 16px;
        }

        .back-button-circle:hover {
            background: var(--hover-bg);
            color: var(--accent-text);
            box-shadow: var(--shadow-soft);
            transform: translateY(-2px) scale(1.05);
        }

        .language-switch {
            font-weight: 700;
        }
        .language-switch a {
            color: var(--accent-text);
            text-decoration: none;
            padding: 5px 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .language-switch a.active,
        .language-switch a:hover {
            background: var(--accent-text);
            color: var(--card-bg);
        }
        .language-switch span {
            color: var(--accent-text);
            margin: 0 2px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 18px 40px 18px 20px;
            background-color: var(--secondary-bg);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            color: var(--primary-text);
            font-size: 16px;
            font-weight: 700;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-container {
            padding: 2rem 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            background: rgba(20, 20, 32, 0.5);
            margin-bottom: 2.5rem;
        }

        .form-input::placeholder {
            color: var(--secondary-text);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-text);
            box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
            background: var(--card-bg);
        }

        .form-input:focus + .input-icon {
            color: var(--accent-text);
        }

        .form-input[readonly] {
            cursor: not-allowed !important;
            background-color: var(--accent-bg) !important;
            color: var(--secondary-text);
        }

        .input-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-text);
            transition: color 0.3s ease;
        }

        .profile-picture-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 25px;
        }

        .profile-picture {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--purple-accent);
            box-shadow: var(--shadow-medium);
            margin-bottom: 15px;
        }

        .choose-picture-label {
            cursor: pointer;
            color: var(--accent-text);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .choose-picture-label:hover {
            color: white;
        }

        #profilePhoto {
            display: none;
        }

        .form-columns {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-columns .form-group {
            margin-bottom: 0;
        }

        .form-column {
            flex: 1;
        }

        .form-btn-primary {
            width: 100%;
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 1.1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .form-btn-primary:active {
            transform: translateY(0);
        }

        .form-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .form-btn-primary:hover::before {
            left: 100%;
        }

        .password-requirements {
            background: rgba(20, 20, 32, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 25px;
            font-size: 0.95rem;
            color: var(--secondary-text);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(5px);
            position: relative;
        }

        .password-requirements strong {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent-text);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .password-requirements ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 8px;
        }

        .password-requirements li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            background: var(--secondary-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }

        .password-requirements li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .password-requirements li:hover {
            background: var(--hover-bg);
            transform: translateX(4px);
            border-color: var(--accent-text);
        }

        .divider {
            margin: 30px auto;
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
        }

        .links {
            text-align: center;
        }
        .links a {
            color: var(--accent-text);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 1rem;
        }
        .links a:hover {
            color: var(--primary-text);
            background: rgba(100, 255, 218, 0.1);
            transform: translateY(-1px);
        }

        .error-message, .success-message {
            padding: 1.5rem;
            border-radius: 12px;
            margin: -15px 0 1.5rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(10px);
        }
        .error-message {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
            color: var(--red-accent);
            border: 2px solid rgba(239, 68, 68, 0.2);
        }
        .success-message {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
            color: var(--green-accent);
            border: 2px solid rgba(16, 185, 129, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                overflow: auto;
            }

            .profile-container {
                width: 100vw;
                height: 100vh;
                max-width: none;
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                position: relative;
            }
            .header {
                width: 100%;
                border-radius: 0;
                flex-shrink: 0;
                display: block;
                text-align: center;
                position: relative;
                top: 0;
            }
            .profile-card {
                width: 100%;
                border-radius: 0;
                padding: 40px 30px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                height: 100%;
                background: rgba(26, 26, 46, 0.98);
                height: auto;
            }
            .title {
                font-size: 1.8rem;
            }
            .form-columns {
                flex-direction: column;
                gap: 0;
            }
            .form-columns .form-group {
                margin-bottom: 25px;
            }
            
            .error-message, .success-message {
                font-size: 1rem;
                padding: 1.5rem;
                margin: -15px 0 10px 0;
            }
            
            .password-requirements {
                padding: 20px;
                margin-bottom: 20px;
            }
        
            .password-requirements strong {
                font-size: 1rem;
                margin-bottom: 14px;
            }
        
            .password-requirements li {
                padding: 8px 14px;
                font-size: 0.9rem;
            }
        }