* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(0);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.header-spacer {
  height: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.top-nav {
  font-size: 12px;
  font-weight: 400;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-nav .top-left {
  font-weight: 500;
  text-shadow: 0 0 10px white;
}
.top-nav .top-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.top-nav .top-right .social-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  color: #86868b;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.top-nav .top-right .social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s ease;
}
.top-nav .top-right .social-link:hover {
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.top-nav .top-right .social-link:hover::before {
  left: 100%;
}
.top-nav .top-right .social-link:hover .social-icon {
  transform: scale(1.1);
}
.top-nav .top-right .social-link .social-icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.top-nav .top-right .social-link span {
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.top-nav .top-right .index-link {
  background: #f5f5f7;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.top-nav .top-right .index-link:hover {
  background: #e5e5e7;
}

.main-content {
  column-count: 2;
  column-gap: 1em;
  justify-content: center;
  align-items: start;
}
.main-content .main-text {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  page-break-inside: avoid;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  color: #86868b;
  margin-bottom: 30px;
}
.main-content .main-text strong {
  font-weight: 600;
  color: #000000;
}
.main-content .project-card {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.project-card {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.project-card:hover {
  opacity: 0.8;
}
.project-card .project-image {
  width: 100%;
  height: 300px;
  background: #f5f5f7;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.project-card .project-image img:hover {
  transform: scale(1.05);
}
.project-card .project-info h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 4px;
}
.project-card .project-info p {
  font-size: 14px;
  color: #86868b;
  font-weight: 400;
  margin-bottom: 8px;
}
.project-card .project-info .project-category {
  display: inline-block;
  background: #f5f5f7;
  color: #86868b;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-category-tag {
  display: inline-block;
  background: #f5f5f7;
  color: #86868b;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.project-categories {
  margin-top: 12px;
}
.project-categories .project-category-tag:last-child {
  margin-right: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  max-height: 90vh;
  width: 600px;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-fade-in {
  transform: scale(1) translateY(0);
}

.modal-fade-out {
  transform: scale(0.9) translateY(20px);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  line-height: 1.2;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #86868b;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
}

.modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
  line-height: 1.6;
}
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.modal-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f7;
}
.modal-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.modal-image-placeholder {
  height: 200px;
  background: #f5f5f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86868b;
  font-size: 14px;
}

.modal-description {
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.modal-category-tag {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #495057;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.modal-category-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.modal-category-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  color: #212529;
  cursor: pointer;
}
.modal-category-tag:hover::before {
  left: 100%;
}

.modal-meta {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.modal-meta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6c757d, #495057, #343a40);
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.meta-item:hover {
  background: rgba(0, 0, 0, 0.02);
  margin: 0 -24px;
  padding: 12px 24px;
  border-radius: 8px;
}
.meta-item:last-child {
  border-bottom: none;
}

.meta-label {
  font-weight: 600;
  color: #495057;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.meta-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #6c757d;
  border-radius: 50%;
  display: inline-block;
}

.meta-value {
  color: #212529;
  font-size: 14px;
  font-weight: 500;
}
.meta-value a {
  color: #495057;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.meta-value a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.4s ease;
}
.meta-value a:hover {
  color: #212529;
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.meta-value a:hover::before {
  left: 100%;
}

.modal-content {
  margin-top: 20px;
}
.modal-content.markdown-content {
  font-size: 15px;
  line-height: 1.7;
}
.modal-content.markdown-content h1,
.modal-content.markdown-content h2,
.modal-content.markdown-content h3,
.modal-content.markdown-content h4,
.modal-content.markdown-content h5,
.modal-content.markdown-content h6 {
  margin: 24px 0 16px 0;
  color: #1d1d1f;
  font-weight: 600;
}
.modal-content.markdown-content h1 {
  font-size: 24px;
}
.modal-content.markdown-content h2 {
  font-size: 20px;
}
.modal-content.markdown-content h3 {
  font-size: 18px;
}
.modal-content.markdown-content h4 {
  font-size: 16px;
}
.modal-content.markdown-content h5 {
  font-size: 15px;
}
.modal-content.markdown-content h6 {
  font-size: 14px;
}
.modal-content.markdown-content p {
  margin-bottom: 16px;
  color: #1d1d1f;
}
.modal-content.markdown-content ul,
.modal-content.markdown-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.modal-content.markdown-content li {
  margin-bottom: 8px;
  color: #1d1d1f;
}
.modal-content.markdown-content code {
  background: #f5f5f7;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 14px;
  color: #d73a49;
}
.modal-content.markdown-content pre {
  background: #f5f5f5;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}
.modal-content.markdown-content pre code {
  background: none;
  padding: 0;
  color: #24292e;
}
.modal-content.markdown-content blockquote {
  border-left: 4px solid #4a4a4a;
  margin: 16px 0;
  padding: 0 16px;
  color: #6a737d;
  font-style: italic;
}
.modal-content.markdown-content a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.modal-content.markdown-content a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.modal-footer {
  padding: 16px 24px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-button {
  background: #4a4a4a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.modal-button:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}
.modal-button.secondary {
  background: #f5f5f7;
  color: #1d1d1f;
}
.modal-button.secondary:hover {
  background: #e5e5e7;
}

.modal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  color: #86868b;
  font-size: 16px;
}

.modal-error {
  color: #ff3b30;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid #e5e5e7;
  background: #fafafa;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #86868b;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s ease;
}
.footer-nav a:hover {
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.footer-nav a:hover::before {
  left: 100%;
}
.footer-nav a.go-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.footer-nav a.go-top-btn svg {
  width: 20px;
  height: 20px;
  color: #86868b;
  transition: all 0.3s ease;
}
.footer-nav a.go-top-btn:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.footer-nav a.go-top-btn:hover svg {
  color: #1d1d1f;
  transform: translateY(-2px);
}
.footer-nav a.go-top-btn::before {
  display: none;
}

.social-sharing {
  text-align: center;
}
.social-sharing h3 {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.social-sharing .share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-sharing .share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #86868b;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.social-sharing .share-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.social-sharing .share-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s ease;
}
.social-sharing .share-btn:hover {
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.social-sharing .share-btn:hover::before {
  left: 100%;
}
.social-sharing .share-btn:hover svg {
  transform: scale(1.1);
}
.social-sharing .share-btn.twitter-share:hover {
  color: #1da1f2;
}
.social-sharing .share-btn.linkedin-share:hover {
  color: #0077b5;
}
.social-sharing .share-btn.facebook-share:hover {
  color: #1877f2;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }
  .header-spacer {
    height: 100px;
  }
  .top-nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .top-nav .top-left {
    font-size: 14px;
  }
  .top-nav .top-right {
    gap: 20px;
    flex-wrap: unset;
    justify-content: center;
  }
  .top-nav .top-right .social-link {
    padding: 3px 5px;
    gap: 3px;
  }
  .top-nav .top-right .social-link span {
    font-size: 10px;
  }
  .main-content {
    padding-top: 20px;
    column-count: 1;
    gap: 40px;
  }
  .main-content .main-text {
    padding-bottom: 20px;
    font-size: 28px;
    margin-bottom: unset;
  }
  .project-card .project-image {
    height: 250px;
  }
  .modal-container {
    width: 95vw;
    max-height: 95vh;
    margin: 20px;
  }
  .modal-header {
    padding: 20px 20px 16px 20px;
  }
  .modal-title {
    font-size: 20px;
  }
  .modal-body {
    padding: 20px;
    max-height: 50vh;
  }
  .modal-footer {
    padding: 16px 20px 20px 20px;
    flex-direction: column;
  }
  .modal-button {
    width: 100%;
    text-align: center;
  }
  .footer {
    margin-top: 60px;
    padding: 40px 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 0 15px;
  }
  .social-sharing .share-buttons {
    gap: 8px;
  }
  .social-sharing .share-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  .social-sharing .share-btn svg {
    width: 12px;
    height: 12px;
  }
  .footer-nav .go-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .footer-nav .go-top-btn svg {
    width: 18px;
    height: 18px;
  }
}

/*# sourceMappingURL=style.css.map */
