@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Fira+Code:wght@400;500&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg-img-desktop-dark: url("/IMG_4833.png");
  --bg-img-desktop-light: url("/IMG_5408.png");
  --bg-img-mobile-dark: url("/IMG_5070.png");
  --bg-img-mobile-light: url("/bg-mobile-light.jpg");
}

:root, [data-theme="dark"] {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #1e1e35;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-teal: #06b6d4;
  --accent-pink: #ec4899;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-block: #94a3b8;
  --text-muted: #8c96a4;
  --border-color: #6366f133;
  --border-hover: #6366f180;
  --gradient-primary: linear-gradient(135deg, #1c20e9, #8b5cf6);
  --gradient-secondary: linear-gradient(135deg, #06b6d4, #6366f1);
  --gradient-accent: linear-gradient(135deg, #ec4899, #8b5cf6);
  --shadow-sm: 0 2px 8px #0000004d;
  --shadow-md: 0 4px 20px #0006;
  --shadow-glow: 0 0 30px #6366f126;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .15s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="light"] {
  --bg-primary: #fff0f6;
  --bg-secondary: #ffe4ef;
  --bg-card: #fff;
  --bg-card-hover: #fff5f9;
  --accent-primary: #e91e8c;
  --accent-secondary: #d63af9;
  --accent-teal: #f06292;
  --accent-pink: #f50057;
  --text-primary: #3a1a2e;
  --text-secondary: #7a4060;
  --text-block: #490000;
  --text-muted: #b07090;
  --border-color: #e91e8c2e;
  --border-hover: #e91e8c73;
  --gradient-primary: linear-gradient(135deg, #e91e8c, #d63af9);
  --gradient-secondary: linear-gradient(135deg, #f06292, #e91e8c);
  --gradient-accent: linear-gradient(135deg, #f50057, #d63af9);
  --shadow-sm: 0 2px 8px #e91e8c1f;
  --shadow-md: 0 4px 20px #e91e8c26;
  --shadow-glow: 0 0 30px #e91e8c2e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .15s cubic-bezier(.4, 0, .2, 1);
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  background-image: var(--bg-img-desktop-dark);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: #000000b0;
  transition: background .4s;
  position: fixed;
  inset: 0;
}

body > * {
  z-index: 1;
  position: relative;
}

html[data-theme="light"] body {
  background-image: var(--bg-img-desktop-light);
}

html[data-theme="light"] body:before {
  background: #fff0f685;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

h1, h2, h3, h4 {
  letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.section-label:before {
  content: "";
  background: var(--gradient-primary);
  border-radius: 2px;
  width: 20px;
  height: 2px;
  display: block;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 16px;
  font-size: clamp(28px, 5vw, 42px);
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-text-teal {
  background: var(--gradient-secondary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px #6366f159;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #6366f180;
}

.btn-outline {
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
  background: none;
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  background: #6366f114;
  transform: translateY(-2px);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  padding: 28px;
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.divider {
  background: var(--border-color);
  height: 1px;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px #6366f133;
  }

  50% {
    box-shadow: 0 0 35px #6366f180;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in-up {
  animation: .7s forwards fadeInUp;
}

.animate-float {
  animation: 4s ease-in-out infinite float;
}

.bg-blob {
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  position: absolute;
}

.navbar {
  z-index: 100;
  height: 68px;
  transition: var(--transition);
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.scrolled {
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  background: #0a0a0fd9;
}

[data-theme="light"] .navbar.scrolled {
  background: #fff0f6e0;
}

.navbar-inner {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}

.navbar-logo {
  letter-spacing: -.03em;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.navbar-links {
  align-items: center;
  gap: 8px;
  list-style: none;
  display: flex;
}

.navbar-links a {
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.navbar-links a:hover {
  color: var(--text-primary);
  background: #6366f11a;
}

.hero {
  align-items: center;
  min-height: 100vh;
  padding: 0 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

.hero-badge {
  color: var(--accent-primary);
  background: #6366f11f;
  border: 1px solid #6366f14d;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}

.hero-badge-dot {
  background: #22c55e;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s ease-in-out infinite pulse-glow;
}

.hero-title {
  letter-spacing: -.03em;
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
}

.hero-subtitle {
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.hero-visual {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-avatar-wrapper {
  width: 280px;
  height: 280px;
  position: relative;
}

.hero-avatar-ring {
  background: var(--gradient-primary) border-box;
  -webkit-mask-composite: destination-out;
  border: 2px solid #0000;
  border-radius: 50%;
  animation: 8s linear infinite spin-slow;
  position: absolute;
  inset: -16px;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: padding-box, border-box;
  -webkit-mask-origin: padding-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.hero-avatar {
  background: var(--bg-card);
  border: 3px solid var(--border-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  font-size: 100px;
  animation: 4s ease-in-out infinite float;
  display: flex;
  overflow: hidden;
}

.hero-stats {
  border-top: 1px solid var(--border-color);
  gap: 28px;
  margin-top: 40px;
  padding-top: 36px;
  display: flex;
}

.hero-stat-value {
  letter-spacing: -.03em;
  font-size: 28px;
  font-weight: 800;
}

.hero-stat-label {
  color: var(--text-muted);
  margin-top: 2px;
  font-size: 13px;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  display: grid;
}

.about-image {
  position: relative;
}

.about-image-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  font-size: 80px;
  display: flex;
}

.about-image-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.about-info p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.about-meta-list {
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
  display: flex;
}

.about-meta-item {
  color: var(--text-secondary);
  align-items: center;
  gap: 12px;
  font-size: 15px;
  display: flex;
}

.about-meta-icon {
  border-radius: var(--radius-sm);
  background: #6366f11a;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  display: flex;
}

.about-meta-item strong {
  color: var(--text-primary);
}

.skills-bg {
  background: var(--bg-secondary);
}

.skills-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
  display: grid;
}

.skill-card {
  transition: var(--transition);
}

.skill-card--open {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.skill-category-title {
  color: var(--text-primary);
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.skill-category-title--clickable {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: var(--radius-sm);
  margin: -4px -6px 12px;
  padding: 4px 6px;
  transition: background .2s;
}

.skill-category-title--clickable:hover {
  background: #6366f114;
}

.skill-cat-icon {
  color: var(--accent-primary);
  align-items: center;
  font-size: 16px;
  display: flex;
}

.skill-cat-text {
  flex: 1;
}

.skill-chevron {
  color: var(--text-muted);
  align-items: center;
  margin-left: auto;
  font-size: 12px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.skill-chevron--open {
  transform: rotate(180deg);
}

.skill-tags {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.skill-tag {
  color: var(--text-secondary);
  transition: var(--transition-fast);
  background: #6366f114;
  border: 1px solid #6366f133;
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 500;
}

.skill-tag:hover {
  color: var(--accent-primary);
  background: #6366f126;
  border-color: #6366f166;
}

.skill-posts-wrapper {
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
  display: grid;
  overflow: hidden;
}

.skill-posts-wrapper--open {
  grid-template-rows: 1fr;
}

.skill-posts {
  border-top: 1px solid var(--border-color);
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
}

.skill-post {
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.skill-post-image-wrap {
  cursor: zoom-in;
  background: var(--bg-card);
  max-height: 200px;
  position: relative;
  overflow: hidden;
}

.skill-post-image {
  object-fit: cover;
  width: 100%;
  height: 200px;
  transition: transform .4s;
  display: block;
}

.skill-post-image-wrap:hover .skill-post-image {
  transform: scale(1.04);
}

.skill-post-image-overlay {
  color: #fff;
  opacity: 0;
  background: #00000073;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

.skill-post-image-wrap:hover .skill-post-image-overlay {
  opacity: 1;
}

.skill-post-body {
  padding: 16px;
}

.skill-post-title {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.skill-post-desc {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.7;
}

.skill-post-link {
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  transition: var(--transition-fast);
  border-radius: 100px;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.skill-post-link:hover {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 14px #6366f166;
}

.skill-lightbox {
  z-index: 9999;
  cursor: zoom-out;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #000000e0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  animation: .2s fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.skill-lightbox-img {
  border-radius: var(--radius-md);
  object-fit: contain;
  max-width: 90vw;
  max-height: 80vh;
  box-shadow: 0 20px 60px #0009;
}

.skill-lightbox-close {
  color: #ffffffb3;
  letter-spacing: .05em;
  font-size: 14px;
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
  display: grid;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}

.project-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.project-thumbnail {
  background: var(--gradient-primary);
  justify-content: center;
  align-items: center;
  height: 180px;
  font-size: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-thumbnail:after {
  content: "";
  background: linear-gradient(to bottom, transparent 50%, var(--bg-card));
  position: absolute;
  inset: 0;
}

.project-body {
  padding: 24px;
}

.project-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.project-desc {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.project-tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  display: flex;
}

.project-tag {
  color: var(--accent-teal);
  background: #06b6d414;
  border: 1px solid #06b6d433;
  border-radius: 100px;
  padding: 3px 10px;
  font-family: Fira Code, monospace;
  font-size: 12px;
}

.project-links {
  gap: 10px;
  display: flex;
}

.project-link {
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
  border-radius: 100px;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.project-link:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.contact-bg {
  background: var(--bg-secondary);
}

.contact-wrapper {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  display: grid;
}

.contact-form {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.form-group {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.form-group label {
  color: var(--text-secondary);
  letter-spacing: .05em;
  font-size: 13px;
  font-weight: 600;
}

.form-group input, .form-group textarea {
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  resize: none;
  transition: var(--transition-fast);
  outline: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px #6366f11f;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}

.contact-info-list {
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
  list-style: none;
  display: flex;
}

.contact-info-item {
  align-items: center;
  gap: 16px;
  display: flex;
}

.contact-info-icon {
  border-radius: var(--radius-md);
  background: #6366f11a;
  border: 1px solid #6366f133;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  font-size: 20px;
  display: flex;
}

.contact-info-label {
  color: var(--text-muted);
  margin-bottom: 2px;
  font-size: 12px;
}

.contact-info-value {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

.social-links {
  gap: 12px;
  margin-top: 32px;
  display: flex;
}

.social-link {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  transition: var(--transition-fast);
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
  display: flex;
}

.social-link:hover {
  border-color: var(--accent-primary);
  background: #6366f11a;
  transform: translateY(-2px);
}

.footer {
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 32px 24px;
}

.footer p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer a {
  color: var(--accent-primary);
  text-decoration: none;
}

.mobile-nav {
  display: none;
}

.navbar-mobile-btn {
  display: none !important;
}

@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  html:before {
    content: "";
    z-index: -2;
    background-image: var(--bg-img-mobile-dark);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    inset: 0;
  }

  html {
    background-image: none;
  }

  body {
    background-color: #0000;
    background-image: none;
  }

  body:before {
    z-index: -1;
    background: #0a0a0f99;
    position: fixed;
  }

  html[data-theme="light"]:before {
    background-image: var(--bg-img-mobile-light);
  }

  html[data-theme="light"] body:before {
    background: #fff0f694;
  }

  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 18px;
  }

  .navbar {
    height: 58px;
    padding: 0 16px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-mobile-btn {
    display: flex !important;
  }

  .mobile-nav {
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    background: #0a0a0ff7;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 40px 24px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    position: fixed;
    inset: 58px 0 0;
    transform: translateX(100%);
  }

  .mobile-nav.open {
    transform: translateX(0);
  }

  html[data-theme="light"] .mobile-nav {
    background: #fff0f6f7;
  }

  .mobile-nav a {
    color: var(--text-primary);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    width: 100%;
    transition: var(--transition-fast);
    padding: 14px 32px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a:hover, .mobile-nav a:active {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: #6366f11f;
  }

  .hero {
    min-height: 100svh;
    padding: 0 18px;
  }

  .hero-grid {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 8px;
  }

  .hero-avatar-wrapper {
    width: 160px;
    height: 160px;
  }

  .hero-avatar {
    width: 160px;
    height: 160px;
    font-size: 64px;
  }

  .hero-actions {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    justify-content: space-around;
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-card {
    padding: 24px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .section-label {
    justify-content: flex-start;
  }
}

.modal-overlay {
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  background: #0a0a0fb3;
  justify-content: center;
  align-items: center;
  padding: 24px;
  animation: .3s forwards fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

html[data-theme="light"] .modal-overlay {
  background: #fff0f699;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  padding: 32px;
  animation: .4s cubic-bezier(.175, .885, .32, 1.275) forwards modalScaleUp;
  position: relative;
}

.modal-close {
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  background: #8080801a;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-close:hover {
  color: var(--accent-primary);
  background: #e91e8c1a;
  transform: rotate(90deg);
}

.modal-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 800;
}

.modal-desc {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.modal-socials {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  display: grid;
}

.modal-social-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
}

.modal-social-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.modal-social-icon {
  font-size: 24px;
}

.modal-social-name {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

@keyframes modalScaleUp {
  from {
    opacity: 0;
    transform: scale(.9)translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

@media (max-width: 768px) {
  .modal-content {
    border-radius: var(--radius-md);
    padding: 24px 20px;
  }

  .modal-socials {
    flex-direction: column;
    gap: 10px;
    display: flex;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-social-item {
    padding: 10px 12px;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/