:root {
  --warm-gray-10: #f6f5f1;
  --neutral-85: #262626;
  --warm-gray-40: #e3e1da;
  --white: #fdfdfd;
  --warm-gray-20: #f1f0eb;
  --warm-gray-50: #cfcdc5;
  --main-text\<deleted\|variable-80ae153a-88dc-3924-82df-7acbe0b576d7\>: #242424;
  --nutral-45: #8c8c8c;
  --nutral-65: #595959;
  --primary: #f55400;
  --warm-gray-30: #ecebe7;
  --neutral-25: #bfbfbf;
  --black: black;
  --text-light: #555;
  --nutral-10: #e6e6e6;
  --primary-dark: #9a2e00;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  padding: 0;
  margin: 0;
  height: 100vh;
  box-sizing: border-box;
  background-color: var(--warm-gray-10);
  color: #242424;
  font-family: Poppins, sans-serif;
  cursor: none;
  overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(246, 245, 241, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  cursor: none !important;
}

.navbar img {
  height: 3.5rem;
  width: 3.5rem;
}

.navbar * {
  cursor: none !important;
}

.nav-brand {
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: lowercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu a {
  color: var(--nutral-65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.title {
  /* border: 1px solid black; */
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

.left-title {
  height: 100%;
  width: 65%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  padding-left: 2rem;
}

.left-title-name {
  color: var(--neutral-85);
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 6px;
  font-family: Poppins, sans-serif;
  font-size: 8vw;
  font-weight: 500;
  line-height: 8vw;
}

.left-title-small {
  color: var(--nutral-45);
  letter-spacing: 0.16vw;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5em;
}
.right-title {
  height: 100%;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#wordcloud {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#wordcloud svg {
  max-width: 100%;
  max-height: 100%;
}

.right-faded {
  height: 100%;
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(246, 245, 241, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  /* background: var(--warm-gray-10); */
  z-index: 1;
}

.right-faded-title {
  height: 100%;
  width: 100%;
  font-size: 4rem;
  font-weight: bold;
  color: transparent;
  background-image: url("assets/my_image.JPG");
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2; /* Above the solid background */

  /* Match the exact background position as .right-title */
  background-position: center;
  background-size: cover;
}

/* Skills Section */
.skills-section {
  width: 100%;
  padding: 4rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ai-section .section-header {
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.skills-section.animate-in .section-header {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  color: var(--neutral-85);
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.skills-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -200px;
  right: -300px;
  transform: rotate(45deg);
  z-index: 0;
}

.skills-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.04;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: -150px;
  left: -200px;
  transform: rotate(-30deg);
  z-index: 0;
}

.skills-container {
  width: 85%;
  max-width: 85%;
  background-color: var(--white);
  border-radius: 32px;
  padding: 4rem;
  display: flex;
  flex-direction: row;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.skills-section.animate-in .skills-container {
  opacity: 1;
  transform: scale(1);
}

.skill-column {
  width: 25%;
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.skill-column.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.skill-column-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 16px;
  background-color: var(--warm-gray-10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.skill-column-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(245, 84, 0, 0.12);
}

.skill-title {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skill-title svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

.skill-column-content:hover .skill-title svg {
  transform: scale(1.1);
  color: var(--promary-dark);
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.skill-list li {
  margin-bottom: 2rem;
  transition: transform 0.2s ease;
}

.skill-list li:hover {
  transform: translateX(8px);
}

.skill-name {
  display: block;
  color: var(--neutral-85);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.skill-list li:hover .skill-name {
  color: var(--primary);
}

.skill-desc {
  display: block;
  color: var(--nutral-65);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
}

/* AI Section */
.ai-section {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* min-height: 100vh; */
}

.ai-container {
  width: 90%;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Terminal */
.terminal {
  background-color: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  height: 75vh;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ai-section.animate-in .terminal {
  opacity: 1;
  transform: scale(1);
}

.terminal-header {
  background-color: #323232;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #444;
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-button.close {
  background-color: #ff5f56;
}

.terminal-button.minimize {
  background-color: #ffbd2e;
}

.terminal-button.maximize {
  background-color: #27c93f;
}

.terminal-title {
  color: #8b8b8b;
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
}

.terminal-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  background-color: #1e1e1e;
}

.terminal-content {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  line-height: 1.6;
  color: #d4d4d4;
}

.terminal-line {
  margin-bottom: 1rem;
}

.terminal-prompt {
  color: #4ec9b0;
  font-weight: bold;
}

.terminal-command {
  color: #dcdcaa;
}

.terminal-response {
  color: #d4d4d4;
  margin-top: 0.5rem;
  white-space: pre-wrap;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background-color: #d4d4d4;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* About Section */
.about-section {
  width: 100%;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.about-grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 90px);
  gap: 1rem;
  margin-top: 2rem;
}

/* LEFT COLUMN - 3 cols */
/* Background Block: 3 cols x 3 rows */
.background-block {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  background-color: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.block-text {
  color: var(--nutral-65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  color: var(--nutral-65);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Experience Block: 3 cols x 5 rows */
.experience-block {
  grid-column: 1 / 4;
  grid-row: 4 / 9;
  background-color: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
}

.block-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  letter-spacing: 1px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
  padding-left: 1.2rem;
  border-left: 2px solid var(--primary);
}

.timeline-year {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.timeline-company {
  color: var(--neutral-85);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.timeline-role {
  color: var(--nutral-65);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--nutral-65);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* CENTER COLUMN - 3 cols */
/* Social Block: 6 cols x 1 row */
.social-block {
  grid-column: 4 / 7;
  grid-row: 1 / 2;
  background-color: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.social-link {
  color: var(--nutral-65);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link svg {
  width: 32px;
  height: 32px;
}

.social-link:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.resume-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.resume-button svg {
  width: 18px;
  height: 18px;
}

.resume-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Picture Block: 3 cols x 5 rows - EXPANDED */
.picture-block {
  grid-column: 4 / 7;
  grid-row: 2 / 7;
  background-color: var(--white);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Interests Block: 3 cols x 2 rows - COMPACT */
.interests-block {
  grid-column: 4 / 7;
  grid-row: 7 / 9;
  background-color: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.interest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  background-color: var(--warm-gray-10);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interest-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(245, 84, 0, 0.15);
}

.interest-item svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.interest-item:hover svg {
  transform: scale(1.1);
}

.interest-item span {
  color: var(--neutral-85);
  font-size: 0.75rem;
  font-weight: 500;
}

/* RIGHT COLUMN - 2 cols */
/* Beyond the Code Block: 2 cols x 7 rows */
.beyond-code-block {
  grid-column: 7 / 9;
  grid-row: 2 / 9;
  background-color: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.beyond-code-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.beyond-code-content p {
  color: var(--nutral-65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.beyond-code-content p:first-child::first-letter {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}

/* Carousel Block: 2 cols x 7 rows - COMMENTED OUT */
/* .carousel-block {
  grid-column: 7 / 9;
  grid-row: 2 / 9;
  background-color: var(--white);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
} */

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: none;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--primary);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 28px;
  height: 45px;
  border: 2px solid var(--nutral-45);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: var(--nutral-45);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  /* Navbar */
  .navbar {
    padding: 1rem 2rem;
  }

  .nav-menu {
    gap: 2rem;
  }

  /* Hero Section */
  .left-title {
    padding-left: 1.5rem;
    padding-right: 1rem;
  }

  .left-title-name {
    font-size: 10vw;
    line-height: 10vw;
  }

  .left-title-small {
    font-size: 1.2rem;
  }

  /* Skills Section */
  .section-title {
    font-size: 3rem;
  }

  .skills-container {
    flex-direction: column;
    padding: 2rem;
  }

  .skill-column {
    width: 100%;
    padding: 1rem 0;
  }

  /* About Grid - Switch to 4 columns */
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
  }

  .background-block {
    grid-column: 1 / 5;
    grid-row: auto;
  }

  .experience-block {
    grid-column: 1 / 5;
    grid-row: auto;
  }

  .social-block {
    grid-column: 1 / 5;
    grid-row: auto;
  }

  .picture-block {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 300px;
  }

  .interests-block {
    grid-column: 3 / 5;
    grid-row: auto;
  }

  .beyond-code-block {
    grid-column: 1 / 5;
    grid-row: auto;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  /* Disable custom cursor on mobile */
  body {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none !important;
  }

  .navbar * {
    cursor: auto !important;
  }

  /* Navbar - Mobile Menu */
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-brand {
    font-size: 1.3rem;
  }

  .nav-menu {
    gap: 1.5rem;
    font-size: 0.85rem;
  }

  .nav-menu a {
    font-size: 0.85rem;
  }

  /* Hero Section - Stack Vertically */
  .title {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 80px 0 40px 0;
  }

  .left-title {
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
    text-align: center;
    align-items: center;
  }

  .left-title-name {
    font-size: 15vw;
    line-height: 15vw;
    margin-left: 0;
    padding: 0 0.5rem;
  }

  .left-title-small {
    font-size: 1rem;
    text-align: center;
    max-width: 90%;
  }

  .right-title {
    width: 100%;
    height: 400px;
  }

  .scroll-indicator {
    display: none;
  }

  /* Section Titles */
  .section-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  /* Skills Section */
  .skills-container {
    width: 95%;
    padding: 1.5rem;
    border-radius: 20px;
  }

  .skill-column-content {
    padding: 1.5rem;
  }

  .skill-name {
    font-size: 1.1rem;
  }

  .skill-desc {
    font-size: 0.9rem;
  }

  /* Terminal */
  .terminal {
    height: 60vh;
    max-height: 60vh;
  }

  .terminal-title {
    font-size: 0.75rem;
  }

  .terminal-content {
    font-size: 0.9rem;
  }

  .terminal-body {
    padding: 1rem;
  }

  /* About Section - Single Column */
  .about-section {
    padding: 3rem 0;
  }

  .about-grid {
    width: 95%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .background-block,
  .experience-block,
  .social-block,
  .picture-block,
  .interests-block,
  .beyond-code-block {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .picture-block {
    min-height: 350px;
    max-height: 400px;
  }

  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .block-title {
    font-size: 1.3rem;
  }

  .block-text {
    font-size: 0.9rem;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .timeline-company {
    font-size: 1rem;
  }

  .timeline-desc {
    font-size: 0.8rem;
  }

  .social-block {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .social-icons {
    gap: 2rem;
  }

  .beyond-code-content p {
    font-size: 0.9rem;
  }

  .beyond-code-content p:first-child::first-letter {
    font-size: 2rem;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  /* Navbar - Compact */
  .navbar {
    padding: 0.75rem 1rem;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    font-size: 0.75rem;
  }

  /* Hero Section */
  .left-title {
    padding: 1.5rem 0.5rem;
  }

  .left-title-name {
    font-size: 16vw;
    line-height: 16vw;
    padding: 0 0.25rem;
  }

  .left-title-small {
    font-size: 0.9rem;
  }

  .right-title {
    height: 300px;
  }

  /* Section Titles */
  .section-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  /* Skills */
  .skills-container {
    padding: 1rem;
  }

  .skill-column-content {
    padding: 1rem;
  }

  .skill-title {
    margin-bottom: 1.5rem;
  }

  .skill-title svg {
    width: 40px;
    height: 40px;
  }

  .skill-list li {
    margin-bottom: 1.5rem;
  }

  /* Terminal */
  .terminal {
    height: 50vh;
    max-height: 50vh;
  }

  .terminal-content {
    font-size: 0.85rem;
  }

  .terminal-body {
    padding: 0.75rem;
  }

  /* About Section */
  .background-block,
  .experience-block,
  .social-block,
  .interests-block,
  .beyond-code-block {
    padding: 1.5rem;
  }

  .picture-block {
    min-height: 300px;
    max-height: 350px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social-link svg {
    width: 24px;
    height: 24px;
  }

  .resume-button {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }

  .interests-grid {
    gap: 0.5rem;
  }

  .interest-item {
    padding: 0.5rem 0.25rem;
  }

  .interest-item svg {
    width: 24px;
    height: 24px;
  }

  .interest-item span {
    font-size: 0.7rem;
  }

  .beyond-code-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
