:root {
  --primary-color: #00e5ff;
  --secondary-color: #00b8d4;
  --accent-color: #00e5ff;
  --bg-dark: #0a0c10;
  --bg-light: #151820;
  --card-bg: #1a1e26;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --hover-color: rgba(0, 229, 255, 0.1);
  --gradient-main: linear-gradient(120deg, #00e5ff, #00b8d4);
  --gradient-accent: linear-gradient(120deg, #00e5ff, #00b8d4);
  --gradient-dark: linear-gradient(145deg, #151820, #0a0c10);
  --gradient-card: linear-gradient(145deg, #1a1e26, #151820);
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  --card-border: 1px solid #292929;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

::-webkit-scrollbar {
  display: none;
}


body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden !important;
  overflow-y: auto;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

nav {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  backdrop-filter: blur(10px);
  border-bottom: var(--card-border);
  z-index: 1000;
  overflow: hidden !important;
  background: rgba(10, 12, 16, 0.5);
  left: 0;
  right: 0;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden !important;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  position: relative;
  overflow: visible;
}

.nav-links {
  display: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  width: 80vw;
  height: 80vw;
  background: var(--gradient-main);
  filter: blur(150px);
  opacity: 0.1;
  top: -40vw;
  right: -40vw;
  border-radius: 50%;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out forwards;
  animation: fadeIn 0.5s ease-out forwards !important;
  max-width: 100vw;
  overflow: hidden;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  background: #00b8d4;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
  position: relative;
  overflow: visible;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

section {
  padding: 120px 2rem;
  position: relative;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  letter-spacing: -1px;
  text-align: center;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skills h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  padding-left: 1rem;
}

.skills h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.5rem;
  background: var(--gradient-main);
  border-radius: 2px;
}

.skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.skills li {
  background: var(--card-bg);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.skills li:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 2rem;
  text-align: center;
}

.my-projects-link a {
  text-decoration: none !important;
  color: white;
  opacity: 0.8;
  font-weight: 600;
  font-style: italic;
  margin-left: 1px;
  margin-right: 7px;
}

.project-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: var(--card-border);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-content {
  padding: 2rem;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.project-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-main);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--gradient-card);
  padding: 3rem;
  border-radius: 20px;
  border: var(--card-border);
  box-shadow: var(--box-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3,
.social-links-container h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.15);
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-item a,
.contact-item span {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.social-links-container {
  display: flex;
  flex-direction: column;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.15);
  color: var(--primary-color);
}

.social-icon i {
  font-size: 1.5rem;
}

.social-icon span {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .social-icons {
    grid-template-columns: 1fr;
  }

  .contact-info h3,
  .social-links-container h3 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

footer {
  background: var(--bg-light);
  padding: 3rem 2rem;
  text-align: center;
  border-top: var(--card-border);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.about-content,
.projects-grid,
.contact-container {
  animation: fadeIn 1s ease-out forwards;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 80px 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .contact-container {
    padding: 2rem;
  }

  .skills {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.skills-group {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: 16px;
  border: var(--card-border);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.skills-group:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.skills-group h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.skills-group h3 i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.skills-group ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.skills-group li {
  background: var(--bg-dark);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.skills-group li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.skills-group li:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.15);
}

@media (max-width: 768px) {
  .skills-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skills-group {
    padding: 1.5rem;
  }

  .skills-group ul {
    grid-template-columns: 1fr;
  }
}

.experience-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.experience-timeline {
  position: relative;
  padding-left: 3rem;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--gradient-main);
  opacity: 0.3;
}

.experience-item {
  position: relative;
  padding-bottom: 3rem;
  margin-left: 3rem;
}

.experience-item:last-child {
  padding-bottom: 0;
}

.experience-date {
  position: absolute;
  left: -11rem;
  top: 0;
  background: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.experience-date i {
  color: var(--primary-color);
}

.experience-date span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.experience-content {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: 16px;
  border: var(--card-border);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.experience-content:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.experience-content h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.experience-content h4 {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-content h4 i {
  color: var(--primary-color);
  font-size: 1rem;
}

.experience-content ul {
  list-style: none;
}

.experience-content li {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.experience-content li i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .experience-container {
    padding: 0 1rem;
  }

  .experience-timeline {
    padding-left: 2rem;
  }

  .experience-item {
    margin-left: 1rem;
  }

  .experience-date {
    left: -5.5rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    background: rgba(10, 12, 16, 0.9);

    z-index: 2;
  }

  .experience-timeline::before {
    left: -1.5rem;
  }

  .experience-content {
    padding: 1.5rem;
  }

  .experience-content h3 {
    font-size: 1.3rem;
  }

  .experience-content h4 {
    font-size: 1rem;
  }

  .experience-content li {
    font-size: 0.9rem;
  }

  .experience-content h3 {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 2rem;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social-icons a {
    font-size: 1.6rem;
  }

  .contact-social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

.nav-links a:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.skills-group {
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skills-group:hover {
  transform: translateY(-5px) scale(1.02);
}

.experience-content {
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-content:hover {
  transform: translateY(-5px) scale(1.01);
}

.social-icons a {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.01);
  color: var(--primary-color);
}

.hero {
  animation: fadeIn 1s ease-out forwards;
}

.about-content {
  animation: slideInRight 1s ease-out forwards;
}

.projects-grid {
  animation: slideInUp 1s ease-out forwards;
}

.contact-container {
  animation: scaleIn 1s ease-out forwards;
}

#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
  overflow: hidden;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-nav-toggle i {
  font-size: 1.5rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  nav {
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100vw;
    overflow: hidden !important;
    left: 0;
    right: 0;
  }

  .nav-content {
    justify-content: center;
    padding: 0.8rem;
    overflow: hidden !important;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .logo {
    margin: 0;
    animation: none;
  }

  .logo a {
    font-size: 1.5rem;
    white-space: nowrap;
  }

  .mobile-nav-toggle {
    margin-right: 0;
    flex-shrink: 0;
  }

  .mobile-nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
    margin-right: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
  }

  .mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-toggle i {
    font-size: 1.3rem;
    color: var(--text-primary);
    transition: transform 0.3s ease;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background: rgba(10, 12, 16, 0.98);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    border-left: var(--card-border);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 2rem;
    box-sizing: border-box;
  }

  .nav-links.active {
    right: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links li {
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
  }

  .nav-links li:hover {
    opacity: 1;
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    transform: translateX(0);
    opacity: 0.7;
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
}

@media (max-width: 480px) {
  .nav-content {
    padding: 0.8rem;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .logo a {
    font-size: 1.3rem;
  }

  .mobile-nav-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-nav-toggle i {
    font-size: 1.2rem;
  }

  .nav-links {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .about-content {
    padding: 0 1rem;
  }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle,
  .nav-overlay,
  .nav-links {
    display: none !important;
  }

  .nav-content {
    justify-content: center;
    padding: 0.8rem;
  }

  .logo {
    margin: 0;
  }
}

.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(15px);
  z-index: 9999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.intro-content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 2rem;
  padding: 4rem;
}

.intro-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: var(--primary-color);
  animation: lineGrow 1s ease forwards;
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.greeting-text,
.name-text,
.stack-text,
.details-text {
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.greeting-text {
  color: var(--primary-color);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.name-text {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.stack-text {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.details-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.details-text span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.details-text span::before {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.details-text span::before {
  content: "•";
}

.continue-btn {
  position: relative;
  background: transparent;
  height: fit-content;
  margin: auto;
  border: 0.5px solid var(--primary-color);
  color: var(--text-primary);
  font-size: 1.1rem;
  padding: 1rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(40px);
  width: fit-content;
  border-radius: 4px;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.continue-btn:hover {
  transform: translateY(-2px);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.continue-btn:hover .btn-arrow {
  transform: translateX(5px);
}

@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: 70%;
  }
}

.greeting-text.active,
.name-text.active,
.stack-text.active,
.details-text.active,
.continue-btn.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.greeting-text.active {
  transition-delay: 0.1s;
}
.name-text.active {
  transition-delay: 0.2s;
}
.stack-text.active {
  transition-delay: 0.3s;
}
.details-text.active {
  transition-delay: 0.4s;
}
.continue-btn.active {
  transition-delay: 0.5s;
}

@media (max-width: 1024px) {
  .intro-content {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .intro-line {
    display: none;
  }

  .name-text {
    font-size: 3.5rem;
  }

  .stack-text {
    font-size: 1.8rem;
  }

  .details-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .intro-text {
    padding: 1rem;
  }

  .name-text {
    font-size: 2.8rem;
  }

  .stack-text {
    font-size: 1.5rem;
  }

  .details-text {
    font-size: 1rem;
  }

  .continue-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

body.overlay-active {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}
