:root {
  --bg: #050508;
  --bg-elevated: #0c0c12;
  --bg-card: #101018;
  --border: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(236, 72, 153, 0.25);

  --pink: #ec4899;
  --purple: #a855f7;
  --violet: #7c3aed;
  --magenta: #d946ef;
  --fuchsia: #e879f9;

  --gradient: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--magenta) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.1));

  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #55556a;

  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.logo-bracket { color: var(--pink); }

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent 70%);
  top: -10%;
  right: -10%;
}
.hero-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
  bottom: 10%;
  left: -15%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fuchsia);
  background: rgba(236, 72, 153, 0.06);
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(236, 72, 153, 0); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-line { display: block; color: var(--text-muted); font-weight: 400; font-size: 0.45em; margin-bottom: 0.15em; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero-name {
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% auto;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.highlight {
  color: var(--fuchsia);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 30px rgba(236, 72, 153, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(236, 72, 153, 0.5);
}
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-glow);
  background: rgba(236, 72, 153, 0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.15rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.section {
  position: relative;
  padding: 7rem 0;
  z-index: 1;
}

.section-header { margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--pink);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.about-card {
  position: relative;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-card-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
  pointer-events: none;
}
.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.about-text:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 600; }

.terminal {
  background: #0a0a10;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.terminal-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.terminal-body { padding: 1.25rem; }
.terminal-line { margin-bottom: 0.4rem; line-height: 1.7; }
.t-prompt { color: var(--pink); }
.t-cmd { color: var(--fuchsia); }
.t-output { color: var(--text-muted); padding-left: 1rem; }
.t-success { color: #34d399; }
.t-cursor {
  animation: blink 1s step-end infinite;
  color: var(--pink);
}
@keyframes blink { 50% { opacity: 0; } }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.skill-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
}
.skill-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity var(--transition);
}
.skill-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.1);
}
.skill-card:hover::before { opacity: 1; }
.skill-card > * { position: relative; z-index: 1; }

.skill-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.skill-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.skill-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.skill-level {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.skill-bar {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-card.visible .skill-bar { width: var(--level); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(168, 85, 247, 0.12);
}
.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--pink);
  padding: 10px;
  background: rgba(236, 72, 153, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(236, 72, 153, 0.15);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-tags li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.08);
  color: var(--fuchsia);
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.project-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(168, 85, 247, 0.12);
}
.project-card--static { cursor: default; }

.project-link {
  display: block;
  color: inherit;
}

.project-preview {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.project-preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.project-url {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}

.project-preview-body {
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
}
.project-preview-body--tonkeeper {
  background: linear-gradient(160deg, #0a1628 0%, #132a4a 50%, #1a3d6e 100%);
}
.project-preview-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #45a3f5;
  letter-spacing: -0.02em;
}
.project-preview-line {
  width: 140px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}
.project-preview-line--short { width: 90px; }
.project-preview-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: #45a3f5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-preview-body--nft {
  background: linear-gradient(160deg, #120818 0%, #1a0a28 50%, #251040 100%);
  justify-content: center;
}
.nft-grid {
  display: grid;
  grid-template-columns: repeat(2, 56px);
  gap: 10px;
}
.nft-item {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.nft-item--accent {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3));
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}
.nft-scan-line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  animation: nftScan 2.5s ease-in-out infinite;
}
@keyframes nftScan {
  0%, 100% { top: 25%; opacity: 0; }
  50% { top: 75%; opacity: 1; }
}

.project-preview-body--mailing {
  background: linear-gradient(160deg, #0a1018 0%, #0d1520 50%, #111c2e 100%);
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
}
.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.chat-bubble {
  max-width: 75%;
  padding: 0.5rem 0.85rem;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 500;
}
.chat-bubble--out {
  align-self: flex-end;
  background: linear-gradient(135deg, #2b5278, #3d6a9e);
  color: #e8f4ff;
  border-bottom-right-radius: 4px;
}
.chat-bubble--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border-bottom-left-radius: 4px;
}
.chat-bubble--small {
  font-size: 0.65rem;
  opacity: 0.85;
}

.project-preview-body--guarant-webapp {
  background: linear-gradient(160deg, #0e0818 0%, #160d28 50%, #1f1240 100%);
}
.guarant-app {
  width: 160px;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
}
.guarant-app-header {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fuchsia);
}
.guarant-app-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.guarant-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.guarant-dot--wait {
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}
.guarant-app-btn {
  padding: 0.45rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gradient);
  color: #fff;
}

.project-preview-body--guarant-bot {
  background: linear-gradient(160deg, #0a1018 0%, #0d1520 50%, #111c2e 100%);
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  gap: 0.75rem;
}
.guarant-bot-msg {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
}
.guarant-bot-keyboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
}
.guarant-key {
  padding: 0.45rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  background: rgba(43, 82, 120, 0.5);
  color: #b8d4f0;
  border: 1px solid rgba(61, 106, 158, 0.3);
}
.guarant-key--wide {
  grid-column: 1 / -1;
}

.project-preview-body--stars {
  background: linear-gradient(160deg, #100a18 0%, #1a1028 50%, #221538 100%);
}
.stars-shop {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.stars-shop-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fcd34d;
}
.stars-packages {
  display: flex;
  gap: 8px;
  width: 100%;
}
.stars-pack {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.6rem 0.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(252, 211, 77, 0.15);
}
.stars-pack--hot {
  background: rgba(252, 211, 77, 0.1);
  border-color: rgba(252, 211, 77, 0.35);
  box-shadow: 0 0 16px rgba(252, 211, 77, 0.15);
}
.stars-pack-amount {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text);
}
.stars-pack-label {
  font-size: 0.7rem;
}
.stars-buy-btn {
  width: 100%;
  padding: 0.5rem;
  border-radius: 10px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #f59e0b, #fcd34d);
  color: #1a1028;
}

.project-preview-body--video {
  background: linear-gradient(160deg, #080c14 0%, #0e1420 50%, #141c2c 100%);
}
.video-dl {
  width: 100%;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.video-dl-input {
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.video-dl-platforms {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.video-platform {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-mono);
}
.video-platform--tt { background: rgba(255, 0, 80, 0.15); color: #ff4d8d; }
.video-platform--yt { background: rgba(255, 0, 0, 0.12); color: #ff4444; }
.video-platform--ig { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.video-dl-result {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.video-dl-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3));
  flex-shrink: 0;
}
.video-dl-status {
  font-size: 0.7rem;
  font-weight: 600;
  color: #34d399;
}

.project-preview-body--deleted {
  background: linear-gradient(160deg, #0a0810 0%, #120e1a 50%, #1a1228 100%);
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
}
.deleted-tracker {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.deleted-alert {
  align-self: flex-start;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.deleted-msg {
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--pink);
}
.deleted-msg--ghost {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}
.deleted-meta {
  font-size: 0.6rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.project-preview-body--portals {
  background: linear-gradient(160deg, #0a0e14 0%, #0f1520 50%, #141c2a 100%);
}
.portals-market {
  width: 100%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.portals-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.portals-gifts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}
.portals-gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.portals-gift--hot {
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.12);
}
.portals-gift-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(167, 139, 250, 0.25));
}
.portals-gift-price {
  font-size: 0.55rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: #fcd34d;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }

.project-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.project-visit svg { transition: transform var(--transition); }
.project-card:hover .project-visit svg { transform: translate(2px, -2px); }

.project-info { padding: 1.5rem; }
.project-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.project-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.08);
  color: var(--fuchsia);
  border: 1px solid rgba(168, 85, 247, 0.15);
}
.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.portfolio-placeholder {
  text-align: center;
  padding: 3rem 0;
}

.placeholder-orbit {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(236, 72, 153, 0.15);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}
.orbit-ring--2 {
  inset: 12px;
  border-color: rgba(168, 85, 247, 0.2);
  animation-duration: 8s;
  animation-direction: reverse;
}
.orbit-ring--3 {
  inset: 24px;
  border-color: rgba(217, 70, 239, 0.25);
  animation-duration: 6s;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.placeholder-icon {
  position: absolute;
  inset: 36px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  border-radius: 50%;
  color: var(--pink);
  animation: iconPulse 3s ease-in-out infinite;
}
.placeholder-icon svg { width: 28px; height: 28px; }
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.1); }
  50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.25); }
}

.placeholder-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.placeholder-text {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 3rem;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.placeholder-card {
  position: relative;
  height: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.placeholder-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(236, 72, 153, 0.04) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmerMove 3s ease-in-out infinite;
}
.placeholder-card:nth-child(2) .placeholder-shimmer { animation-delay: -1s; }
.placeholder-card:nth-child(3) .placeholder-shimmer { animation-delay: -2s; }
@keyframes shimmerMove {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.placeholder-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.placeholder-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.placeholder-line--wide { width: 70%; }
.placeholder-line--short { width: 40%; margin-bottom: 0; }

.contact-wrapper {
  position: relative;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
  pointer-events: none;
}
.contact-content { position: relative; z-index: 1; }
.contact-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-weight: 500;
  transition: var(--transition);
}
.contact-link svg { width: 20px; height: 20px; }
.contact-link:hover {
  border-color: var(--border-glow);
  background: rgba(236, 72, 153, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--pink);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--text-dim);
}

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    transition: right var(--transition);
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .burger { display: flex; z-index: 101; }

  .about-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .placeholder-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .contact-wrapper { padding: 2rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
