body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
}


img, svg {
  -webkit-user-drag: none;
}


::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(120, 120, 120, 0.2);
    border-radius: 50px;
    transition: background-color 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(120, 120, 120, 0.4);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Outfit, sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    background: #202020;
    color: rgb(51, 51, 51);
    gap: 10px;
    padding: 10px;
    scroll-behavior: smooth;
}

.sidebar {
    width: 375px;
    background: white;
    color: rgb(44, 62, 80);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 10px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
    max-height: calc(-20px + 100vh);
    overflow-y: auto;
    flex-shrink: 0;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: #4f4688 0 0 20px 0px;
}

.name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f5f5dcbd;
}

.title {
    color: rgb(113 103 159);
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.title {
    font-size: 20px;

    white-space: nowrap;
    overflow: hidden;
}

.typed-text {
    display: inline-block;
    position: relative;
}

.typed-text .char {
    display: inline-block;
    position: relative;
}

.typed-text .char.caret::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: rgb(167, 167, 167);
    animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.bio {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgb(127, 140, 141);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;        
    justify-content: center; 
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 35%;
    background: rgb(32 34 33 / 0%);
    color: #f5f5dcbd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid #dbdbdb42;
}

.social-icons a {
  color: #f5f5dcd0;
  padding: 10px;
   display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  font-size: 20px;
}

.social-icons a:hover {
  transform: scale(1.1);
  border: none;
}

/* Brand-specific hover colors */
.social-icons a.github:hover {
  background-color: #333; /* GitHub black */
}

.social-icons a.linkedin:hover {
  background-color: #0077b5; /* LinkedIn blue */
}

.social-icons a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%); /* Instagram gradient */
  color: white;
}

.social-icons a.discord:hover {
  background-color: #5865F2; /* Discord blurple */
}

.social-icons a.website:hover {
  background-color: #f88b42d0; /* Your custom color for website */
}

.social-icons a.steam:hover {
  background: linear-gradient(150deg, #000000, #1b7b9e);
  color: white;
}


.social-icons a.monkeytype:hover {
  background-color: #ffbd2e; /* Yellowish brand for Monkeytype */
  color: black;
}


.content {
    flex: 1 1 0%;
    padding: 0px;
    overflow: auto;
    scroll-behavior: smooth;
}

.section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
    margin-right: 0px;
    border: 1px solid;
}

h2 {
    margin-bottom: 20px;
    color: #8b8b8b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-player {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    background: #f1e3fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b95af8;
    font-size: 20px;
    cursor: pointer;
    line-height: 0;
    padding-top: 1px;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.play-btn:hover {
    transform: scale(1.05);
}

.player-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.loader-spinner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #ae33ff;
    border-right: 2px solid #ae33ff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.play-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#lyrics-display {
  font-size: 16px;
  font-weight: 400;
  color: #b0b0b0;
  min-height: 22px;
}

.play-btn.scale-down:active {
    transform: scale(0.95);
}

.song-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgb(127 140 141);
}

.milestone {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(51 51 51);
}

.milestone:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.milestone-icon {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    background: #f1e3fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b95af8;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.milestone-content h3 {
    margin-bottom: 5px;
    color: #f5f5dcbd;
    margin-top: 0px;
}

.milestone-content p {
    color: rgb(127, 140, 141);
}

.skills {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.skill {
    background: #20202000;
    padding: 12px;
    border-radius: 15px;
    text-align: center;
    color: #f5f5dcbd;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #333333;
}

.skill:hover {
    background: #7c5df683;
    color: white;
    transform: translateY(-3px);
    cursor:pointer;
    border: none;
}

.skill i {
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    background: #f1e3fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b95af8;
    font-size: 18px;
}

.contact-details h3 {
    color: #f5f5dcbd;
    margin-bottom: 5px;
}

.contact-details p {
    color: rgb(127, 140, 141);
}

@media (max-width: 1100px) {
    body {
        flex-direction: column;
        padding: 0px 10px 10px;
    }

    .sidebar {
        position: relative;
        width: 100%;
        max-height: none;
        margin-bottom: 10px;
    }

    .content {
        margin: 0px;
    }

    .section {
        margin-right: 0px;
    }
}
.bg-shade{
    background: #202020;
    padding: 10px;
    border-radius: 15px;
}

.milestones-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.milestone-card {
  background-color: #20202000;
  color: #f1e9dc;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s ease;
  border: 1px solid #333333;
}

.milestone-card p {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.milestone-card h3 {
  font-size: 2rem;
  margin: 0;
  color: #bfbeac;
}

.milestone-card span {
  display: block;
  font-size: 1.1rem;
  margin-top: 5px;
  color: #bfbeac;
}

@media (max-width: 600px) {
  .milestone-card {
    padding: 15px;
  }

  .milestone-card h3 {
    font-size: 1.5rem;
  }
}
.milestone-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding-top: 20px;

  margin-top: 10px;
  font-size: 0.9rem;
}

.badge-label {

  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.5px;
}

.year-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #292929;
  color: #f5f5dcad;
  font-weight: 500;
  border-radius: 10px; 
  font-size: 0.85rem;
  border: 1px solid #3a3a3a;
}

.year-pill i {
  color: #f5f5dcad;
  font-size: 15px;
}

.tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: max-content;
  max-width: 200px;
  background-color: #272727dc;
  color: #f5f5dcad;
  text-align: center;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
  border: 1px solid #3a3a3a;
  position: absolute;
  backdrop-filter: blur(10px);
  bottom: 125%; 
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
  pointer-events: none;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marquee linear infinite;
  animation-duration: var(--duration, 20s);
}

.marquee-text {
  flex-shrink: 0;
  white-space: nowrap;
  color: #7e7f76;
  font-size: 1rem;
}


.marquee-content {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
.bulletspace {
  padding: 0 0.5ch; /* space on both sides of the bullet */
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");

/* PRELOADER CSS */
:root {
  --color-bg: #121212;
  --color-text: beige;
  --color-dark: #1a1a1aa1;
  --color-light: rgba(245, 245, 220, 0.822);

  --font-primary: "Space Mono", monospace;
  --font-size-massive: clamp(10rem, 20vw, 30rem);
  --grid-size: 50px;
  --transition-speed: 500ms;
  
}

/* Preloader */
.xcxz-preloader {
  position: fixed;

  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Pixel Grid */
.xcxz-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.xcxz-row,
.xcxz-column {
  position: absolute;
  background-color: var(--color-text);
  opacity: 0.1;
}

.xcxz-row {
  height: 1px;
  width: 0%;
  left: 0;
}

.xcxz-column {
  width: 1px;
  height: 0%;
  top: 0;
}

#xcxz-row-top {
  top: 20%;
}

#xcxz-row-bottom {
  bottom: 20%;
}

#xcxz-column-left {
  left: 20%;
}

#xcxz-column-right {
  right: 20%;
}

/* Block Elements */
.xcxz-block-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.xcxz-block {
  position: absolute;
  background-color: var(--color-dark);
  border: 1px solid rgba(245, 245, 245, 0.1);
  transform-origin: center;
  transform: scale(0);
  transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
}

#xcxz-block-1 {
  top: 10%;
  left: 10%;
  width: 15vw;
  height: 15vw;
}

#xcxz-block-2 {
  top: 10%;
  right: 10%;
  width: 20vw;
  height: 20vw;
}

#xcxz-block-3 {
  bottom: 10%;
  left: 10%;
  width: 20vw;
  height: 20vw;
}

#xcxz-block-4 {
  bottom: 10%;
  right: 10%;
  width: 15vw;
  height: 15vw;
}

/* Counter */
.xcxz-counter-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  text-align: center;
}

.xcxz-counter {
  font-size: var(--font-size-massive);
  font-weight: 700;
  line-height: 0.8;
  color: var(--color-text);
  position: relative;
  display: inline-block;  font-family: var(--font-primary);
}

.xcxz-counter-outline {
  font-size: var(--font-size-massive);
  font-weight: 700;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 245, 245, 0);
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Loading Text & Messages */
.xcxz-text-wrap {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}

.xcxz-loadtext {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.9;
  color: var(--color-text);  font-family: var(--font-primary);
}

.xcxz-messages {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  opacity: 0.6;
  height: 1.5em;
  overflow: hidden;
  color: var(--color-light);  font-family: var(--font-primary);
}

.xcxz-msg {
  display: none;  font-family: var(--font-primary);
}

.xcxz-msg.active {
  display: block;  font-family: var(--font-primary);
}

/* Loading Bar */
.xcxz-bar-wrap {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  right: 2rem;
  z-index: 10;
}

.xcxz-bar {
  height: 3px;
  width: 100%;
  background-color: rgba(245, 245, 245, 0.1);
  margin-bottom: 10px;
  position: relative;
}

.xcxz-progress {
  height: 100%;
  width: 0%;
  background-color: var(--color-text);
  transition: width var(--transition-speed) cubic-bezier(0.23, 1, 0.32, 1);
}

/* Markers */
.xcxz-markers {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  opacity: 0.6;
  position: relative;
  color: var(--color-light);
}

.xcxz-marker {
  position: relative;
  padding-top: 10px;
  transition: opacity 0.3s ease; color: var(--color-light);
}

.xcxz-marker::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 5px;
  background-color: var(--color-text);
}

/* Connector Lines */
.xcxz-lines {
  position: absolute;
  top: 0;
  width: 100%;
}

.xcxz-line {
  position: absolute;
  top: -12px;
  height: 1px;
  background-color: var(--color-text);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--transition-speed) cubic-bezier(0.23, 1, 0.32, 1);
}

#xcxz-line-0-25 {
  left: 0%;
  width: 25%;
}

#xcxz-line-25-50 {
  left: 25%;
  width: 25%;
}

#xcxz-line-50-75 {
  left: 50%;
  width: 25%;
}

#xcxz-line-75-100 {
  left: 75%;
  width: 25%;
}

/* Main Content */
.xcxz-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}

.xcxz-main h1 {
  font-size: clamp(2rem, 7vw, 6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -1px;
}

.xcxz-main p {
  font-size: 1.5rem;
  max-width: 800px;
  text-align: center;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .xcxz-text-wrap {
    top: 1rem;
    left: 1rem;
  }

  .xcxz-bar-wrap {
    bottom: 2rem;
    left: 1rem;
    right: 1rem;
  }

  .xcxz-loadtext {
    font-size: 1.5rem;
  }

  .xcxz-messages {
    font-size: 0.8rem;
  }

  #xcxz-block-1,
  #xcxz-block-2,
  #xcxz-block-3,
  #xcxz-block-4 {
    width: 25vw;
    height: 25vw;
  }
}
/* PRELOADER CSS END HERE */
