
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.app {
  font-family: 'JetBrains Mono', monospace;
}
.navbar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-link {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.nav-link:hover {
  color: #000;
  cursor: pointer;
}
.nav-link.router-link-active {
  color: #000;
}
.nav-link.router-link-active::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

.horizontal-container[data-v-c2f081e1] {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
}
.horizontal-video[data-v-c2f081e1] {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

.vertical-container[data-v-3a8fb56b] {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
}
.vertical-video[data-v-3a8fb56b] {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  pointer-events: auto; /* Optional: prevents clicking */
}

/* Override navbar for this page only */
.navbar {
  background: #1a1a1a !important;
  border-bottom: 1px solid #333 !important;
}
.nav-link {
  color: #999 !important;
}
.nav-link:hover,
.nav-link.router-link-active {
  color: #EE6983 !important;
}
.nav-link.router-link-active::after {
  background: #EE6983 !important;
}

.page[data-v-0b31c9c1] {
  padding: 30px;
  margin: auto;
  background-color: #EE6983;
}
.title[data-v-0b31c9c1] {
  text-align: center;
  margin-bottom: 60px;
  font-size: 100px;
}
.shorts[data-v-0b31c9c1] {
  text-align: left;
  margin-bottom: 60px;
  font-size: 60px;
}
.genai[data-v-0b31c9c1] {
  text-align: left;
  margin-bottom: 60px;
  font-size: 60px;
}
.long-section[data-v-0b31c9c1] {
  margin-bottom: 60px;
}
.horizontal-row[data-v-0b31c9c1] {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 per row */
  gap: 20px;
  padding-bottom: 20px;
}
.horizontal-row[data-v-0b31c9c1]::-webkit-scrollbar {
  height: 10px;
}
.horizontal-row[data-v-0b31c9c1]::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

.page-background[data-v-0dca9551] {
  background-color: #8ca9ff;
  min-height: 100vh; /* Full viewport height */
  width: 100%;
}
.page-content[data-v-0dca9551] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
}
.IMDb[data-v-0dca9551] {
  padding: 40px;
  text-align: center;
  font-size: 100px;
  margin-bottom: 60px;
}
.Stileto[data-v-0dca9551] {
  text-align: center;
  font-size: 100px;
  margin-top: 50px;
}
.stileto-description-title[data-v-0dca9551] {
  text-align: center;
  margin-bottom: 20px;
}
.stileto-description[data-v-0dca9551] {
  text-align: center;
  margin-bottom: 60px;
}
.stileto-container[data-v-0dca9551] {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.content-section[data-v-0dca9551] {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.video-content[data-v-0dca9551] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-content[data-v-0dca9551] {
  flex: 0 0 400px;
  padding: 20px;
}
.text-content h2[data-v-0dca9551] {
  margin-bottom: 20px;
  font-size: 28px;
}
.text-content p[data-v-0dca9551] {
  padding-top: 20px;
  line-height: 1.6;
}
.muso-section[data-v-0dca9551] {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.muso-image[data-v-0dca9551] {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.spotify-section[data-v-0dca9551] {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

/* IMDb Section */
.imdb-section[data-v-0dca9551] {
  display: flex;
  justify-content: center;
}
.imdb-card[data-v-0dca9551] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: #f5c518;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 400px;
  text-align: center;
}
.imdb-card[data-v-0dca9551]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.imdb-logo[data-v-0dca9551] {
  width: 100px;
  margin-bottom: 20px;
}
.imdb-card h3[data-v-0dca9551] {
  margin-bottom: 10px;
  font-size: 24px;
}
.imdb-card p[data-v-0dca9551] {
  color: #333;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
.music-container[data-v-0dca9551] {
    flex-direction: column;
}
}

.page-background[data-v-30293c9f] {
  background-color: #8ca9ff;
  min-height: 100vh; /* Full viewport height */
  width: 100%;
}
.page-content[data-v-30293c9f] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
}
.title[data-v-30293c9f] {
  text-align: center;
  margin-bottom: 40px;
}
.content-section[data-v-30293c9f] {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.video-content[data-v-30293c9f] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-content[data-v-30293c9f] {
  flex: 0 0 400px;
  padding: 20px;
}
.text-content h2[data-v-30293c9f] {
  margin-bottom: 20px;
  font-size: 28px;
}
.text-content p[data-v-30293c9f] {
  margin-bottom: 15px;
  line-height: 1.6;
}
.text-content ol[data-v-30293c9f] {
  padding: 20px;
  padding-left: 20px;
  margin-left: 20px;
}
.text-content li[data-v-30293c9f] {
  margin-bottom: 8px;
}

/* GitHub Card */
.github-section[data-v-30293c9f] {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.github-card[data-v-30293c9f] {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: #24292e;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 350px;
}
.github-card[data-v-30293c9f]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.github-icon[data-v-30293c9f] {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.github-content h3[data-v-30293c9f] {
  margin-bottom: 3px;
  font-size: 18px;
}
.github-content p[data-v-30293c9f] {
  color: #8b949e;
  font-size: 13px;
  margin: 0;
}
@media (max-width: 968px) {
.content-section[data-v-30293c9f] {
    flex-direction: column;
}
.text-content[data-v-30293c9f] {
    flex: 1;
    width: 100%;
}
.github-card[data-v-30293c9f] {
    flex-direction: column;
    text-align: center;
}
}


.horizontal-container[data-v-5eb5ef97] {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
}
.horizontal-image[data-v-5eb5ef97] {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.page-background[data-v-7d9e78dd] {
  background-color: #C1E59F;
  min-height: 100vh;
  width: 100%;
}
.page-content[data-v-7d9e78dd] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
}
.content-section[data-v-7d9e78dd] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.content-section-row[data-v-7d9e78dd]{
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.image-content[data-v-7d9e78dd] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-content[data-v-7d9e78dd] {
  width: 100%;
  max-width: 900px;
  text-align: center;
}
.text-content h2[data-v-7d9e78dd] {
  margin-bottom: 60px;
  font-size: 28px;
}
.text-content p[data-v-7d9e78dd] {
  padding-top: 20px;
  line-height: 1.6;
}
