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

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7c3aed 0%, #2563eb 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8b5cf6 0%, #3b82f6 100%);
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: "Inter", sans-serif;
  background: #000;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 1400px at 50% 50%,
      rgba(124, 58, 237, 0.5) 0%,
      rgba(124, 58, 237, 0.2) 30%,
      transparent 55%
    ),
    radial-gradient(
      circle 1100px at 15% 25%,
      rgba(37, 99, 235, 0.55) 0%,
      rgba(124, 58, 237, 0.25) 28%,
      transparent 62%
    ),
    radial-gradient(
      circle 1200px at 85% 35%,
      rgba(168, 85, 247, 0.5) 0%,
      rgba(59, 44, 255, 0.22) 32%,
      transparent 68%
    ),
    radial-gradient(
      circle 1000px at 25% 75%,
      rgba(109, 40, 217, 0.48) 0%,
      rgba(168, 85, 247, 0.18) 35%,
      transparent 65%
    ),
    radial-gradient(
      circle 1150px at 80% 85%,
      rgba(37, 99, 235, 0.45) 0%,
      rgba(109, 40, 217, 0.2) 33%,
      transparent 63%
    );
  filter: blur(100px);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes haloMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1%, -1%, 0) scale(1.2);
  }
}

.hero {
  position: relative;
  height: 100vh;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Hero Halos */
.hero-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.75;
  will-change: transform;
}

.hero-halo-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.65) 0%,
    rgba(168, 85, 247, 0.35) 40%,
    transparent 65%
  );
  top: -200px;
  left: -100px;
  animation: haloFloat1 25s ease-in-out infinite;
}

.hero-halo-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.6) 0%,
    rgba(59, 44, 255, 0.35) 40%,
    transparent 65%
  );
  top: 20%;
  right: -150px;
  animation: haloFloat2 30s ease-in-out infinite;
}

.hero-halo-3 {
  width: 850px;
  height: 850px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.6) 0%,
    rgba(109, 40, 217, 0.3) 40%,
    transparent 65%
  );
  bottom: -200px;
  left: 30%;
  animation: haloFloat3 28s ease-in-out infinite;
}

@keyframes haloFloat1 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(50px, -30px, 0) rotate(120deg);
  }
  66% {
    transform: translate3d(-30px, 40px, 0) rotate(240deg);
  }
}

@keyframes haloFloat2 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(-40px, 50px, 0) rotate(-120deg);
  }
  66% {
    transform: translate3d(30px, -40px, 0) rotate(-240deg);
  }
}

@keyframes haloFloat3 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(-50px, -40px, 0) rotate(90deg);
  }
  66% {
    transform: translate3d(40px, 30px, 0) rotate(180deg);
  }
}

/* Gradient Blobs */
.blob {
  display: none;
}

/* Title */
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  z-index: 1;
}

.hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 span {
  opacity: 0.8;
}

/* Footer */
footer {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #b3b3b3;
}
.about-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  padding: 80px 100px;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-bg {
  display: none;
}

.about-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  z-index: 1;
}

/* LEFT */
.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
}

.intro {
  font-size: 16px;
  opacity: 0.8;
}

.name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 700;
  margin: 10px 0 40px;
  letter-spacing: -0.01em;
  min-height: 140px;
  line-height: 1.2;
}

.profile-img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  transition: transform 0.1s ease;
  cursor: pointer;
}

/* RIGHT */
.about-right h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.block {
  margin-bottom: 40px;
}

.block p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #d1d5db;
  font-weight: 400;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.meta {
  font-size: 14px;
  opacity: 0.7;
}

.mt {
  margin-top: 30px;
}

/* Skills */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.ps {
  background: #0ea5e9;
}
.ai {
  background: #f59e0b;
}
.ae {
  background: #6366f1;
}
.pr {
  background: #1e40af;
}
.figma {
  background: #111;
  border: 1px solid #444;
}
.capcut {
  background: #111;
  border: 1px solid #444;
}

/* Timeline - Hover Expansion */
.timeline {
  list-style: none;
}

.timeline li {
  margin-bottom: 12px;
}

.timeline span {
  display: block;
  font-size: 14px;
  opacity: 0.7;
}

.work-item {
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.work-item:hover {
  background: rgba(124, 58, 237, 0.1);
  transform: scale(1.02);
}

.work-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.8;
  color: #9ca3af;
  line-height: 1.5;
}

.work-details div {
  padding-left: 16px;
  text-indent: -16px;
  margin-bottom: 4px;
}

.work-item:hover .work-details {
  max-height: 200px;
}

.job-details {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
  color: #9ca3af;
}

/* Education */
.education-item {
  margin-bottom: 16px;
}

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

.education-item p {
  margin: 0;
  font-weight: 500;
}

.education-item span {
  font-size: 14px;
  opacity: 0.7;
}

.institution {
  font-size: 13px;
  opacity: 0.8;
  font-weight: 400 !important;
}

.grade {
  font-size: 12px;
  opacity: 0.7;
  font-weight: 400 !important;
}

/* Languages */
.languages {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.language {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.timeline {
  list-style: none;
}

.timeline li {
  margin-bottom: 12px;
}

.timeline span {
  display: block;
  font-size: 14px;
  opacity: 0.7;
}

.job-details {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
  color: #9ca3af;
}

/* Work Experience Hover */
.experience-item {
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.experience-item:hover {
  background: rgba(124, 58, 237, 0.1);
  transform: scale(1.02);
}

.experience-header {
  display: block;
}

.company-name {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.date {
  font-size: 12px;
  opacity: 0.6;
  display: block;
}

.experience-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 8px;
}

.experience-item:hover .experience-details {
  max-height: 100px;
}

.experience-details p {
  font-size: 11px;
  margin: 2px 0;
  opacity: 0.8;
}

/* Socials */
.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: background 0.2s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Skills Section */
.skills-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  padding: 80px 100px;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.skills-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.skills-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.skills-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.tab-btn.active {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.skill-card {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-card.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.skill-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.skill-card::after {
  content: attr(data-name);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.skill-card:hover::after {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  padding: 80px 100px;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.contact-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.purple-text {
  color: #7c3aed;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #9ca3af;
  font-weight: 500;
}

.contact-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.contact-value.copyable {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.contact-value.copyable:hover {
  color: #7c3aed;
  transform: translateX(4px);
}

.contact-socials {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  color: #7c3aed;
}

.social-link svg {
  width: 32px;
  height: 32px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-link:hover svg {
  opacity: 1;
}

.contact-right {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
}

.form-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.profile-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 100px;
  color: #fff;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.profile-bg {
  display: none;
}

/* Top row */
.top-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.avatar-card {
  position: relative;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
}

.avatar-icon {
  width: 120px;
  height: 120px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

/* Scanner corners */
.corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 4px solid white;
}
.tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* About */
.about-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.about-card p {
  font-family: "Inter", sans-serif;
  max-width: 600px;
  line-height: 1.7;
  color: #d1d5db;
  font-weight: 400;
}

/* Grid cards */
.grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 24px;
}

.glass-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.meta {
  font-size: 14px;
  opacity: 0.7;
}

/* Tall card */
.tall {
  grid-row: span 2;
}

/* Skills */
.skills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.skill {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 600;
}
.ps {
  background: #0ea5e9;
}
.ai {
  background: #f59e0b;
}
.ae {
  background: #6366f1;
}
.pr {
  background: #1e40af;
}
.capcut,
.figma {
  background: #111;
  border: 1px solid #444;
}

/* Timeline */
.timeline {
  list-style: none;
}
.timeline li {
  margin-bottom: 12px;
}
.timeline span {
  display: block;
  font-size: 14px;
  opacity: 0.7;
}
.toc-section {
  position: relative;
  min-height: 100vh;
  padding: 100px;
  color: #fff;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.toc-bg {
  display: none;
}

.toc-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Title */
.toc-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.toc-title span {
  font-weight: 400;
  opacity: 0.9;
}

/* Grid */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Cards */
.toc-card {
  position: relative;
  height: 180px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.toc-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

/* Card text */
.label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.85;
  text-transform: uppercase;
}

.index {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 700;
  align-self: flex-end;
}
.category-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.category-bg {
  display: none;
}

/* Title */
.category-title {
  font-family: "Space Grotesk", sans-serif;
  z-index: 1;
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: center;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 100px;
  color: #fff;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-bg {
  display: none;
}

/* Header */
.project-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.project-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  color: black;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.project-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.project-desc {
  font-size: 14px;
  opacity: 0.7;
}

/* Grid */
.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.grid-small,
.grid-large {
  border-radius: 18px;
  background: #e5e7eb;
}

/* Small posts */
.grid-small {
  background: linear-gradient(#cfe9ff, #eaf6ff);
}

/* Featured post */
.grid-large {
  grid-column: 5 / 6;
  grid-row: 1 / span 2;
  background: linear-gradient(#cfe9ff, #eaf6ff);
}
.thank-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.thank-bg {
  position: absolute;
  width: 900px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.4) 0%,
    rgba(37, 99, 235, 0.3) 40%,
    transparent 70%
  );
  filter: blur(120px);
  z-index: 0;
  animation: blobGlow 4s ease-in-out infinite;
}

@keyframes blobGlow {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.thank-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Text */
.thank-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 96px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.thank-text-line1 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 24px;
  margin-right: 120px;
}

.thank-text-line2 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  margin-left: 120px;
}

.thank-text-line2 .highlight {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(96, 165, 250, 0.6);
  color: #60a5fa;
  display: inline-block;
  margin-right: 8px;
}

/* Socials */
.thank-socials {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.thank-socials a {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: background 0.2s ease;
}

.thank-socials a:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Scroll Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease 0.3s,
    transform 0.6s ease 0.3s;
  will-change: opacity, transform;
}

.fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hero */
  h1 {
    font-size: 4rem;
  }
  
  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  /* About Section */
  .about-section {
    padding: 40px 20px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .name {
    font-size: 48px;
  }
  
  .columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Profile Section */
  .profile-section {
    padding: 40px 20px;
  }
  
  .top-row {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .avatar-card {
    justify-self: center;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  /* TOC Section */
  .toc-section {
    padding: 40px 20px;
  }
  
  .toc-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .toc-title h2 {
    font-size: 48px;
    text-align: center;
  }
  
  .toc-grid {
    grid-template-columns: 1fr;
  }
  
  /* Category */
  .category-title {
    font-size: 64px;
  }
  
  /* Project Section */
  .project-section {
    padding: 40px 20px;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  
  .grid-large {
    grid-column: 1;
    grid-row: auto;
  }
  
  /* Thank You */
  .thank-title {
    font-size: 64px;
  }
  
  .thank-text-line1,
  .thank-text-line2 {
    font-size: 24px;
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Skills Section */
  .skills-section {
    padding: 40px 20px;
  }
  
  .skills-title {
    font-size: 36px;
  }
  
  .skills-tabs {
    gap: 4px;
  }
  
  .tab-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .skills-grid {
    justify-content: center;
    gap: 16px;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 40px 20px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-title {
    font-size: 36px;
    text-align: center;
  }
  
  .contact-right {
    padding: 30px 20px;
  }
}
  
  .skill-card {
    width: 70px;
    height: 70px;
  }
  
  .skill-icon {
    width: 40px;
    height: 40px;
  }
}
