<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.preload * {
  transition: none !important;
}

body.modal-open {
  overflow: hidden;
}

:root {
  --bg-color: #f7f9fc;
  --text-color: #1a1a1a;
  --tile-bg: #fff;
  --toggle-bg: #000;
  --toggle-icon: #fff;
}

.dark-mode {
  --bg-color: #1e1e1e;
  --text-color: #f5f5f5;
  --tile-bg: #2a2a2a;
  --toggle-bg: #fff;
  --toggle-icon: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
  position: relative;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}

.theme-toggle button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--toggle-bg);
  color: var(--toggle-icon);
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: center;
}

p.description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.tile {
  background: var(--tile-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease;  
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.tile:hover {
  transform: translateY(-5px);
}

.tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tile-title {
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  padding: 16px;
  box-sizing: border-box;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  max-height: calc(100% - 60px);
  margin-top: 60px;
  background: var(--tile-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  opacity: 0;
  animation: zoomIn 0.25s ease forwards;
}

.overlay-content &gt; .scrollable-content {
  overflow-y: auto;
  padding: 20px;
}

.overlay-content .images::-webkit-scrollbar {
  height: 8px;
}

.overlay-content .images::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-radius: 4px;
}

.overlay-content .images::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 4px;
}

.overlay-content h2 {
  margin-bottom: 10px;
}

.overlay-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.overlay-description p {
  margin-bottom: 14px;
}

.overlay-description ul {
  padding-left: 20px;
  margin-top: 35px;
  margin-bottom: 8px;
}

.overlay-description li {
  margin-bottom: 4px;
}

.overlay-content .images {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  flex-wrap: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.overlay-content .images img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
}

.overlay-button {
  margin-top: 30px;
  text-align: center;
}

.overlay-button a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--toggle-bg);
  color: var(--toggle-icon);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.overlay-button a:hover {
  background: var(--toggle-icon);
  color: var(--toggle-bg);
}

.fullscreen-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.fullscreen-image img {
  max-width: 90vw;
  max-height: 90vh;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.fullscreen-image:target {
  display: flex;
}

.close-btn {
  position: fixed;
  top: 16px;
  right: 24px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 2001;
}

footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

footer .socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer p,
footer a {
  text-align: center;
  display: inline-block;
}

footer a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  p.description {
    font-size: 1rem;
  }

  .overlay-content .images img {
    width: 140px;
  }
  
  .about-me {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .profile-pic {
    margin-bottom: 20px;
  }
}

@keyframes zoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.overlay-description .list-container {
  display: flex;
  gap: 40px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.overlay-description .list-container ul {
  padding-left: 20px;
  margin: 0;
}

.overlay-description .list-container li {
  margin-bottom: 6px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 2001;
  background: none;        
  padding: 0;              
  border: none;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.fullscreen-image img {
  pointer-events: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.about-me {
	display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px auto 20px;
    max-width: 1000px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
    transition: border-color 0.3s ease;
}

.dark-mode .profile-pic {
    border-color: #444;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-color);
}
	
.resume-button a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--toggle-bg);
    color: var(--toggle-icon);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.resume-button a:hover {
    background-color: var(--toggle-icon);
    color: var(--toggle-bg);
}

.resume-button i {
    margin-right: 8px;
}</pre></body></html>