:root { --primary-color: #9147ff; --secondary-color: #5c16c5; --primary-color-rgb: 145, 71, 255; --accent-color: #4eb162; --dark-color: #1a1a1a; --title-color: #f8f8f8; --text-color: #cccccc; --font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); font-size: 16px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { min-height: 100vh; margin: 0; padding: 0; font-family: var(--font-family); background: var(--gradient) no-repeat center center fixed; background-size: cover; color: var(--text-color); text-align: center; display: flex; flex-direction: column; justify-content: space-between; align-items: center; position: relative; overflow-x: hidden; } body::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1; } .container { position: relative; z-index: 10; width: 100%; max-width: 600px; padding: 20px; margin: 40px auto; } .profile-card { background: rgba(26, 26, 26, 0.8); border-radius: 15px; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border: 1px solid rgba(var(--primary-color-rgb), 0.3); padding: 30px; margin-bottom: 30px; transform: translateY(20px); opacity: 0; animation: fadeInUp 0.8s forwards 0.3s; } .profile-pic { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center; border: 3px solid var(--primary-color); margin: 0 auto 15px; display: block; background-color: transparent; } .profile-name { font-size: 1.8rem; margin-bottom: 10px; color: var(--title-color); } .profile-bio { font-size: 1rem; color: var(--text-color); margin-bottom: 20px; line-height: 1.5; } .links-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; } .link-item { display: flex; align-items: center; padding: 15px 20px; background: rgba(26, 26, 26, 0.8); border-radius: 10px; backdrop-filter: blur(10px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); transition: all 0.3s ease; border: 1px solid rgba(var(--primary-color-rgb), 0.2); text-decoration: none; color: var(--text-color); transform: translateY(20px); opacity: 0; animation: fadeInUp 0.8s forwards; } .link-item:hover { transform: translateY(-5px)!important; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3)!important; border-color: rgba(var(--primary-color-rgb), 0.5)!important; background: rgba(30, 30, 30, 0.9)!important; } .link-icon { font-size: 1.5rem; margin-right: 15px; color: var(--primary-color); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; } .link-icon img { max-width: 100%; max-height: 100%; border-radius: 4px; } .link-text { flex: 1; text-align: left; } .link-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 3px; color: var(--title-color); } .link-description { font-size: 0.85rem; color: var(--text-color); } .social-links { display: flex; justify-content: center; gap: 15px; margin-top: 20px; } .social-link { color: var(--primary-color); font-size: 1.5rem; transition: color 0.3s ease; } .social-link:hover { color: var(--accent-color)!important; } .customize-btn { position: fixed; bottom: 20px; right: 20px; background: var(--gradient); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 5px 20px rgba(92, 22, 197, 0.4); cursor: pointer; z-index: 100; border: none; } .customize-panel { position: fixed; top: 0; right: -400px; width: 400px; height: 100vh; background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(10px); padding: 20px; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3); transition: right 0.3s ease; z-index: 99; overflow-y: auto; } .customize-panel.open { right: 0; } .panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.3); } .panel-title { font-size: 1.5rem; color: var(--title-color); } .close-panel { background: none; border: none; color: #ccc; font-size: 1.5rem; cursor: pointer; } .form-group { margin-bottom: 20px; } .form-label { display: block; margin-bottom: 8px; color: var(--title-color); font-weight: 500; } .form-control { width: 100%; padding: 10px; background: rgba(40, 40, 40, 0.8); border: 1px solid rgba(var(--primary-color-rgb), 0.3); border-radius: 5px; color: var(--text-color); font-family: inherit; } .upload-area { background: rgba(40, 40, 40, 0.8); border: 1px solid rgba(var(--primary-color-rgb), 0.3); border-radius: 5px; padding: 15px; text-align: center; transition: all 0.3s ease; } .upload-area:hover { border-color: rgba(var(--primary-color-rgb), 0.5); } .upload-label { cursor: pointer; display: block; } .upload-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 10px; } .upload-text { font-weight: 500; } .file-info { font-size: 0.8rem; color: #aaa; margin-top: 5px; } .color-preview { width: 30px; height: 30px; border-radius: 5px; display: inline-block; vertical-align: middle; margin-left: 10px; border: 1px solid #444; } .btn { padding: 10px 20px; background: var(--gradient); color: white; border: none; border-radius: 5px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; } .btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(92, 22, 197, 0.4); } .btn-block { display: block; width: 100%; } .bg-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; } .bg-option { height: 60px; border-radius: 5px; cursor: pointer; border: 2px solid transparent; transition: all 0.2s ease; } .bg-option:hover { transform: scale(1.05); } .bg-option.selected { border-color: var(--primary-color); box-shadow: 0 0 0 2px var(--accent-color); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 768px) { .container { padding: 15px; max-width: 100%; } .profile-card { padding: 20px; } .customize-panel { width: 100%; right: -100%; } } @media (max-width: 480px) { :root { font-size: 14px; } .profile-pic { width: 100px; height: 100px; } .link-item { padding: 12px 15px; } .bg-options { grid-template-columns: repeat(2, 1fr); } }