Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --bg-color: #f8fafc;
+ --text-color: #1e293b;
+ --card-bg: #ffffff;
+ --animation-speed: 0.3s;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ background: var(--bg-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .container {
+ max-width: 680px;
+ margin: 0 auto;
+ padding: 2rem 1rem;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 3rem;
+ }
+
+ .avatar-container {
+ width: 120px;
+ height: 120px;
+ margin: 0 auto 1.5rem;
+ position: relative;
+ }
+
+ .avatar {
+ width: 100%;
+ height: 100%;
+ border-radius: 50%;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
+ }
+
+ h1 {
+ font-size: 1.75rem;
+ margin-bottom: 0.5rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .bio {
+ color: #64748b;
+ font-size: 1.1rem;
+ }
+
+ .links {
+ display: grid;
+ gap: 1rem;
+ }
+
+ .link-card {
+ display: flex;
+ align-items: center;
+ padding: 1rem 1.5rem;
+ background: var(--card-bg);
+ border-radius: 12px;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: transform var(--animation-speed), box-shadow var(--animation-speed);
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ }
+
+ .link-card:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
+ }
+
+ .link-card .icon {
+ font-size: 1.5rem;
+ margin-right: 1rem;
+ }
+
+ .link-card .text {
+ font-weight: 500;
+ }
+
+ footer {
+ margin-top: 3rem;
+ text-align: center;
+ color: #64748b;
+ }
+
+ @media (prefers-color-scheme: dark) {
+ :root {
+ --bg-color: #0f172a;
+ --text-color: #e2e8f0;
+ --card-bg: #1e293b;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .container {
+ padding: 1.5rem 1rem;
+ }
+
+ .avatar-container {
+ width: 100px;
+ height: 100px;
+ }
+
+ h1 {
+ font-size: 1.5rem;
+ }
+
+ .bio {
+ font-size: 1rem;
+ }
+
+ .link-card {
+ padding: 0.875rem 1.25rem;
+ }
+ }