
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Geist", ui-sans-serif, system-ui;
  background-color: #0a0a0a;
  color: white;
}


.css-main-header-pos\:top img {
  width: 100%;
  height: auto;
}


.css-main-container-pos\:center {
  padding: 1rem;
  padding-top: 1rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .css-main-container-pos\:center {
    padding-bottom: 1rem;
  }
}

.css-main-layout-pos\:center {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .css-main-layout-pos\:center {
    grid-template-columns: 420px 1fr;
  }
}


.css-side-division-pos\:left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(23, 23, 23, 0.6);
  padding: 1.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .css-side-division-pos\:left {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .css-side-division-pos\:left {
    position: sticky;
    top: 1rem;
    height: calc(100vh - 2rem);
  }
}

.simple-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.sidebar-content {
  position: relative;
  z-index: 1;
}

.name-section {
  margin-bottom: 2rem;
}

.name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.main-heading {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .main-heading {
    font-size: 3rem;
  }
}

.description {
  margin-top: 1rem;
  max-width: 42ch;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.hire-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  border-radius: 9999px;
  background-color: white;
  color: black;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.hire-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


.css-main-projects-pos\:right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.css-main-division-pos\:right {
  display: block;
  overflow: hidden;
  border-radius: 1.35rem;
  background-color: black;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.css-main-division-pos\:right:hover {
  opacity: 1;
}

.css-main-division-pos\:right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.35rem;
  background-color: black;
}


.dot-grid {
  background-image: radial-gradient(circle, #3a3a3a 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.7;
}

.gradient-border-1 {
  background: linear-gradient(135deg, #0f172a, #6d28d9);
}

.gradient-border-2 {
  background: linear-gradient(135deg, #111827, #2563eb);
}

.gradient-border-3 {
  background: linear-gradient(135deg, #0b132b, #5bc0be);
}

.gradient-border-4 {
  background: linear-gradient(135deg, #0f172a, #10b981);
}

.gradient-border-5 {
  background: linear-gradient(135deg, #1f2937, #8b5cf6);
}

.gradient-border-6 {
  background: linear-gradient(135deg, #0b132b, #10b981);
}

.animated-word {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(14px);
  animation: revealWord 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes revealWord {
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

.reveal-on-view {
  opacity: 0;
  transform: translateY(28px) scale(0.965);
  filter: blur(16px);
  animation: revealElement 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes revealElement {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

.stagger-1 {
  animation-delay: 0.06s;
}
.stagger-2 {
  animation-delay: 0.12s;
}
.stagger-3 {
  animation-delay: 0.18s;
}
.stagger-4 {
  animation-delay: 0.24s;
}
.stagger-5 {
  animation-delay: 0.30s;
}
.stagger-6 {
  animation-delay: 0.36s;
}

.word-1 {
  animation-delay: 0.08s;
}
.word-2 {
  animation-delay: 0.16s;
}
.word-3 {
  animation-delay: 0.24s;
}
.word-4 {
  animation-delay: 0.32s;
}
.word-5 {
  animation-delay: 0.40s;
}
.word-6 {
  animation-delay: 0.48s;
}
.word-7 {
  animation-delay: 0.56s;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: #0f172a;
  border-radius: 3px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e293b;
}

::-webkit-scrollbar-corner {
  background: #0f172a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #000000 #000000;
}

.sidebar-scroll::-webkit-scrollbar-thumb {
  background: #000000;
  background-image: radial-gradient(circle, #475569 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.7;
}

.sidebar-scroll::-webkit-scrollbar-thumb:hover {
  background: #000000;
  background-image: radial-gradient(circle, #64748b 1.2px, transparent 1.2px);
  background-size: 4px 4px;
  opacity: 0.9;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 3px;
  width: 2px;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 10%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(30, 41, 59, 0.1) 90%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body:hover::before {
  opacity: 1;
}
