@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/Unbounded-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/Unbounded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #040109;
  --bg-soft: #0f0718;
  --panel: rgba(11, 5, 21, 0.86);
  --panel-strong: rgba(9, 4, 18, 0.96);
  --line: rgba(182, 55, 214, 0.45);
  --line-soft: rgba(123, 48, 182, 0.24);
  --text: #fff9ff;
  --muted: rgba(255, 240, 255, 0.72);
  --accent: #ff2f72;
  --accent-strong: #ff2472;
  --accent-alt: #7926ff;
  --accent-soft: rgba(255, 47, 114, 0.18);
  --success: #97ff7a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Unbounded", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 47, 114, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(121, 38, 255, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(121, 38, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #07020f 0%, #030108 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 47, 114, 0.18), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(121, 38, 255, 0.16), transparent 22%),
    radial-gradient(circle at 88% 78%, rgba(202, 69, 255, 0.12), transparent 18%);
  filter: blur(24px);
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 90%);
  opacity: 0.4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.background-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.background-glow-left {
  width: 340px;
  height: 340px;
  left: -110px;
  top: 180px;
  background: radial-gradient(circle, rgba(255, 53, 83, 0.42) 0%, rgba(255, 53, 83, 0) 70%);
  animation: glow-drift-left 14s ease-in-out infinite alternate;
}

.background-glow-right {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 150px;
  background: radial-gradient(circle, rgba(190, 52, 255, 0.34) 0%, rgba(190, 52, 255, 0) 72%);
  animation: glow-drift-right 16s ease-in-out infinite alternate;
}

.page-shell {
  width: min(1360px, calc(100% - 40px));
  margin: 18px auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(15, 5, 25, 0.86), rgba(5, 2, 11, 0.94)),
    radial-gradient(circle at top left, rgba(255, 47, 114, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(121, 38, 255, 0.08), transparent 24%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 47, 114, 0.06),
    var(--shadow);
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--line-soft) transparent;
  animation: shell-rise 700ms ease both;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-xl) - 14px);
  border: 1px solid rgba(162, 71, 234, 0.18);
  pointer-events: none;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 70%, rgba(255, 47, 114, 0.08), transparent 20%),
    radial-gradient(circle at 86% 100%, rgba(121, 38, 255, 0.1), transparent 24%);
  pointer-events: none;
}

.hero-bar,
.content-grid,
.profile-card,
.projects-panel {
  position: relative;
  z-index: 1;
}

.hero-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 47, 114, 0.18), rgba(17, 7, 28, 0.94));
  border: 1px solid rgba(200, 69, 255, 0.52);
  box-shadow:
    0 0 32px rgba(121, 38, 255, 0.26),
    inset 0 0 22px rgba(255, 47, 114, 0.14);
}

.brand-mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.brand-subtitle,
.section-note,
.intro-text,
.project-card p,
.profile-description,
.tag,
.handle,
.hero-chip,
.project-link,
.project-state,
.section-kicker,
.block-label,
.eyebrow {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
}

.brand-subtitle,
.section-note,
.intro-text,
.project-card p,
.profile-description,
.tag,
.handle {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.visitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(123, 48, 182, 0.24);
  color: rgba(255, 240, 255, 0.72);
  font-size: 13px;
  height: 34px;
  white-space: nowrap;
  transition: all 0.22s ease;
}

.visitor-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  fill: none;
}

.visitor-badge span {
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.hero-chip {
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid #ff254f;
  color: #ff3b5d;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: rgba(39, 4, 12, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 53, 92, 0.18),
    0 0 18px rgba(255, 37, 79, 0.14);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: 18px;
}

.profile-card,
.projects-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(10, 4, 18, 0.9), rgba(7, 3, 14, 0.94)),
    radial-gradient(circle at top left, rgba(255, 47, 114, 0.08), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.32);
}

.profile-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-soft) transparent;
}

.profile-card-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.avatar-ring {
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 9px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, rgba(255, 47, 114, 0.96), rgba(121, 38, 255, 0.96), rgba(255, 47, 114, 0.96));
  box-shadow:
    0 0 36px rgba(255, 47, 114, 0.2),
    0 0 48px rgba(121, 38, 255, 0.16);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid rgba(6, 2, 12, 0.96);
}

.profile-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-heading h1,
.section-heading h2,
.project-card h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.profile-heading h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.eyebrow,
.block-label,
.section-kicker,
.project-state {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #d68dff;
}

.handle {
  margin: 0;
  font-size: 14px;
}

.profile-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-description {
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.projects-panel {
  padding: 24px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-soft) transparent;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.section-note {
  margin: 0;
  text-align: right;
  font-size: 12px;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.project-groups-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-group {
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(173, 88, 239, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 7, 24, 0.94), rgba(9, 4, 17, 0.96)),
    radial-gradient(circle at top left, rgba(255, 47, 114, 0.06), transparent 30%);
}

.project-group-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.project-group-line {
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff3a78, #8f39ff);
  box-shadow: 0 0 16px rgba(255, 58, 120, 0.3);
}

.project-group-title {
  color: #efb1ff;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-side-column {
  display: grid;
  gap: 14px;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
}

.project-card {
  min-height: 176px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(208, 102, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(13, 6, 22, 0.96), rgba(10, 4, 18, 0.94)),
    radial-gradient(circle at top right, rgba(255, 47, 114, 0.08), transparent 28%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  animation: card-reveal 700ms ease both;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.project-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #ff4680;
  background:
    linear-gradient(180deg, rgba(255, 63, 122, 0.14), rgba(121, 38, 255, 0.1)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 91, 151, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-icon svg {
  width: 24px;
  height: 24px;
}

.project-icon-photo {
  overflow: hidden;
  padding: 0;
}

.project-icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 130, 0.52);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
}

.project-card-primary {
  background:
    linear-gradient(180deg, rgba(21, 7, 23, 0.98), rgba(11, 4, 18, 0.96)),
    radial-gradient(circle at top left, rgba(255, 47, 114, 0.18), transparent 36%);
}

.project-card-muted {
  border-style: dashed;
}

.project-card-dog {
  background:
    linear-gradient(180deg, rgba(26, 10, 19, 0.97), rgba(12, 5, 14, 0.95)),
    radial-gradient(circle at top right, rgba(255, 180, 96, 0.14), transparent 26%);
}

.project-card h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.project-meta h3 {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.project-card p {
  margin: 0;
  line-height: 1.55;
  font-size: 13px;
  max-width: 34ch;
}

.project-link {
  margin-top: auto;
  color: #ffd7f0;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.project-link-static {
  color: var(--success);
}

.project-link-status {
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-link-status svg,
.project-link-action svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.project-link-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.project-link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-state {
  font-size: 13px;
  line-height: 1;
}

.project-card-dog {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 196, 122, 0.18);
}

.project-dog-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-dog-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 8, 17, 0.24) 0%, rgba(18, 8, 17, 0.72) 100%),
    linear-gradient(90deg, rgba(16, 4, 12, 0.55), rgba(16, 4, 12, 0.08));
}

.project-dog-content {
  position: relative;
  z-index: 1;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.project-dog-content h3 {
  margin: 0;
  max-width: none;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(16px, 2vw, 18px);
}

.projects-grid .project-card:nth-child(2) {
  animation-delay: 90ms;
}

.projects-grid .project-card:nth-child(3) {
  animation-delay: 180ms;
}

.projects-grid .project-card:nth-child(4) {
  animation-delay: 270ms;
}

.projects-grid .project-card:nth-child(5) {
  animation-delay: 360ms;
}

.projects-grid .project-card:nth-child(6) {
  animation-delay: 450ms;
}

@keyframes shell-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-drift-left {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(38px, -18px, 0) scale(1.08);
  }
}

@keyframes glow-drift-right {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-26px, 24px, 0) scale(1.06);
  }
}

@media (max-width: 1100px) {
  body {
    align-items: center;
    padding: 20px 0;
  }

  .page-shell {
    height: auto !important;
    overflow: visible;
    width: min(100% - 40px, 1360px);
    order: 1;
  }

  .content-grid,
  .project-layout,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .section-note {
    text-align: left;
  }

  .project-side-column {
    grid-template-rows: none;
  }

  .projects-mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 40px, 600px);
    padding: 14px 20px;
    background: rgba(10, 4, 18, 0.72);
    border: 1px solid rgba(182, 55, 214, 0.2);
    border-radius: 18px;
    color: #efb1ff;
    font-family: "Unbounded", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    order: -1;
  }

  .projects-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 77, 130, 0.3);
  }

  .projects-mobile-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
  }

  .projects-mobile-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .uptime-sidebar {
    width: min(100% - 40px, 600px);
    order: -1;
  }

  .uptime-container {
    display: none !important;
  }

  .uptime-sidebar.is-open .uptime-container {
    display: flex !important;
  }
}

@media (min-width: 1101px) {
  body {
    flex-direction: row !important;
    gap: 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .page-shell {
    order: -1 !important;
    min-height: calc(100vh - 36px);
    height: auto;
    max-width: 1360px;
    width: auto;
    flex: 1 1 0 !important;
    min-width: 0;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
  }

  .uptime-sidebar {
    order: 1 !important;
    width: 220px !important;
    flex-shrink: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .uptime-container {
    padding: 16px !important;
    border-radius: 18px !important;
    gap: 12px !important;
  }

  .uptime-group {
    gap: 6px !important;
  }

  .uptime-group-title {
    font-size: 10px !important;
    margin-bottom: 3px !important;
  }

  .uptime-item {
    padding: 8px 12px !important;
    border-radius: 10px !important;
  }

  .uptime-item-name {
    font-size: 12px !important;
  }

  .uptime-item-status {
    font-size: 10px !important;
  }

  .status-dot {
    width: 6px !important;
    height: 6px !important;
  }

  .content-grid {
    min-height: 0;
    flex: 1;
    align-items: stretch;
  }

  .main-column,
  .projects-panel {
    min-height: 0;
    height: 100%;
  }

  .projects-panel {
    display: flex;
    flex-direction: column;
  }

  .project-layout {
    flex: 1;
    min-height: 0;
  }

  .project-groups-column {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .project-groups-column,
  .project-group,
  .projects-grid,
  .project-side-column {
    min-height: 0;
  }

  .project-group {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .projects-grid {
    flex: 1;
    grid-auto-rows: 1fr;
  }

  .project-side-column > * {
    height: 100%;
  }

  .project-card,
  .project-card-dog {
    min-height: 0;
  }
}



@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    margin: 10px auto;
    padding: 18px;
    border-radius: 26px;
    height: auto !important;
    overflow: visible !important;
    min-height: auto !important;
  }

  .page-shell::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero-bar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .brand {
    gap: 14px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .hero-chip,
  .projects-panel,
  .profile-card {
    width: 100%;
  }

  .hero-chip,
  .profile-card,
  .projects-panel,
  .project-card {
    border-radius: 22px;
  }

  .profile-card,
  .projects-panel,
  .project-card {
    padding: 20px;
  }

  .project-card-dog {
    padding: 0;
  }

  .project-meta {
    min-height: auto;
  }

  .profile-heading h1,
  .section-heading h2 {
    line-height: 1.1;
  }

  .uptime-sidebar {
    width: min(100% - 20px, 600px);
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 12px, 100%);
    margin: 6px auto;
    padding: 14px;
    border-radius: 20px;
  }

  .page-shell::before {
    inset: 8px;
    border-radius: 14px;
  }

  .hero-bar {
    gap: 14px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 28px;
    height: 28px;
  }

  .brand-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .visitor-badge {
    font-size: 11px;
    padding: 5px 10px;
    white-space: normal;
  }

  .visitor-badge svg {
    width: 14px;
    height: 14px;
  }

  .hero-chip {
    padding: 10px 16px;
    font-size: 11px;
  }

  .content-grid {
    gap: 14px;
  }

  .profile-card {
    padding: 16px;
    gap: 14px;
  }

  .profile-heading h1 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .profile-card-top {
    gap: 14px;
  }

  .avatar-ring {
    width: min(100%, 140px);
    padding: 6px;
  }

  .avatar {
    border-width: 5px;
  }

  .tag {
    font-size: 11px;
    padding: 7px 11px;
  }

  .projects-panel {
    padding: 16px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-heading h2 {
    font-size: clamp(20px, 5vw, 26px);
  }

  .section-note {
    text-align: left;
    font-size: 11px;
  }

  .project-layout {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-group {
    padding: 12px;
  }

  .project-card {
    padding: 14px;
    min-height: 140px;
  }

  .project-card h3,
  .project-meta h3 {
    font-size: clamp(15px, 3.5vw, 18px);
  }

  .project-card p {
    font-size: 12px;
    max-width: none;
  }

  .project-meta {
    gap: 10px;
    min-height: auto;
  }

  .project-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex: 0 0 36px;
  }

  .project-icon svg {
    width: 20px;
    height: 20px;
  }

  .project-dog-content h3 {
    white-space: normal;
    font-size: 14px;
  }

  .project-dog-content {
    padding: 14px;
  }

  .project-link {
    font-size: 10px;
  }

  .project-side-column {
    gap: 12px;
  }

  .uptime-sidebar {
    width: min(100% - 12px, 600px);
  }
}

/* ============================================ */
/* UPTIME SIDEBAR & MOBILE TOGGLE               */
/* ============================================ */

.uptime-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100% - 40px, 600px);
  order: -1;
}

.uptime-sidebar.is-open {
  display: flex;
}

.uptime-toggle {
  display: none;
}

.uptime-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(10, 4, 18, 0.72);
  border: 1px solid rgba(182, 55, 214, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.uptime-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uptime-group-title {
  font-size: 11px;
  font-weight: 700;
  color: #efb1ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  opacity: 0.8;
}

.uptime-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.uptime-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-4px);
}

.uptime-item-name {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.uptime-item-status {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
}

.uptime-item-stats {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  font-weight: 400;
  white-space: nowrap;
}

.uptime-item.is-offline .uptime-item-status {
  color: #ff2f72;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.projects-mobile-toggle {
  display: none;
}


