.elementor-264 .elementor-element.elementor-element-341edbfb{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-264 .elementor-element.elementor-element-f43b0d5{--display:flex;}/* Start custom CSS for html, class: .elementor-element-27ccf12 *//* === Futuristic Base Styles === */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --danger: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-dark: #64748b;
    --glass: rgba(255, 255, 255, 0.15);
    --glass-dark: rgba(0, 0, 0, 0.2);
    --neon-glow: 0 0 10px rgba(99, 102, 241, 0.7);
    --neon-glow-green: 0 0 10px rgba(16, 185, 129, 0.7);
    --neon-glow-red: 0 0 10px rgba(239, 68, 68, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: var(--light);
    min-height: 100vh;
    padding: 2rem;
    line-height: 1.6;
}

/* === Glassmorphism Containers === */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

section {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

section:last-child {
    border-bottom: none;
}

/* === Futuristic Typography === */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    box-shadow: var(--neon-glow);
}

/* === Profile Header === */
.profile-header {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-photo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-photo-container {
    position: relative;
    flex-shrink: 0;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px var(--primary), inset 0 0 10px rgba(99, 102, 241, 0.5);
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary), inset 0 0 15px rgba(99, 102, 241, 0.7);
}

.photo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.profile-info {
    flex-grow: 1;
}

.verification-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--glass-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
    font-size: 0.9rem;
}

.email-verified {
    color: var(--secondary);
    text-shadow: var(--neon-glow-green);
}

.google-connected, .facebook-connected, .wallet-connected {
    color: var(--primary);
    text-shadow: var(--neon-glow);
}

/* === Profile Stats === */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    background: var(--glass-dark);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: rgba(99, 102, 241, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* === Social Connections === */
.connection-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.connected-apps {
    margin-top: 2rem;
}

.apps-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.apps-list li {
    background: var(--glass-dark);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.apps-list li:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(5px);
}

/* === User Posts === */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.posts-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 20px;
    border: none;
    background: var(--glass-dark);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
}

.search-box button {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--gray);
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-item {
    background: var(--glass-dark);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(15, 23, 42, 0.7);
}

.post-info {
    flex-grow: 1;
    padding: 1rem;
}

.post-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.post-excerpt {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.post-status {
    font-weight: bold;
}

.post-status.published {
    color: var(--secondary);
}

.post-status.draft {
    color: var(--gray);
}

.post-actions {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* === Account Settings === */
.settings-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--glass-dark);
    color: white;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.verification-status {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.verification-status.verified {
    background: rgba(16, 185, 129, 0.2);
    color: var(--secondary);
}

.privacy-controls {
    grid-column: span 2;
}

.privacy-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.privacy-option input[type="checkbox"] {
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-dark);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.privacy-option input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.privacy-option input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-actions {
    grid-column: span 2;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

/* === Danger Zone === */
.danger-zone {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.danger-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.deletion-warning {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--danger);
}

.ai-explanation {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.ai-explanation ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.confirmation {
    margin-top: 1.5rem;
}

.confirmation input {
    width: 100%;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--danger);
}

/* === Buttons === */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #0d9e6e;
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-green);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-red);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
    background: rgba(99, 102, 241, 0.3);
    border-color: var(--primary);
}

.btn-photo-upload {
    background: var(--primary);
    color: white;
}

.btn-social-sync {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-social-sync:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-ai-avatar {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    color: white;
}

.btn-ai-avatar:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
}

.btn-edit-post {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-edit-post:hover {
    background: rgba(99, 102, 241, 0.3);
}

.btn-delete-post {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.btn-delete-post:hover {
    background: rgba(239, 68, 68, 0.3);
}

.btn-ai-enhance {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: white;
}

.btn-ai-enhance:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.7);
}

.btn-crosspost {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
}

.btn-crosspost:hover {
    background: rgba(139, 92, 246, 0.3);
}

.btn-ai-suggest {
    background: transparent;
    color: var(--primary);
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.btn-ai-suggest:hover {
    text-decoration: underline;
}

.btn-voice-command {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    border: 1px solid #ec4899;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-voice-command:hover {
    background: rgba(236, 72, 153, 0.4);
    transform: scale(1.1);
}

/* === Filter Buttons === */
.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: transparent;
    border: 1px solid var(--gray-dark);
    color: var(--gray);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* === Password Strength === */
.password-strength {
    margin-top: 0.5rem;
}

.strength-meter {
    height: 5px;
    background: var(--gray-dark);
    border-radius: 5px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.strength-meter::after {
    content: '';
    display: block;
    height: 100%;
    width: 30%;
    background: var(--danger);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .profile-photo-section {
        flex-direction: column;
        text-align: center;
    }

    .photo-actions {
        justify-content: center;
    }

    .settings-form {
        grid-template-columns: 1fr;
    }

    .form-actions, .privacy-controls {
        grid-column: span 1;
    }

    .post-item {
        flex-direction: column;
    }

    .post-actions {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        justify-content: flex-end;
    }
}

/* === Animations === */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.pulse {
    animation: pulse 2s infinite;
}

/* === 3D Card Effect === */
.profile-container {
    perspective: 1000px;
}

section {
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

section:hover {
    transform: translateZ(10px);
}/* End custom CSS */