@font-face {
  font-family: "CloisterBlack";
  src: url("../fonts/CloisterBlack.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

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

html {
  cursor: crosshair;
  overflow-x: hidden;
}

a {
  cursor: crosshair;
}

::selection {
  background: #444444;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-left: 1px solid #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a, #0d0d0d);
  border: 1px solid #333333;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #333333, #1a1a1a);
}

body {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  color: #c0c0c0;
  background-color: #050505;
  background-image:
    radial-gradient(
      ellipse at 10% 20%,
      rgba(255, 255, 255, 0.015) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(255, 255, 255, 0.01) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 0%,
      rgba(255, 255, 255, 0.008) 0%,
      transparent 40%
    ),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='40' y='45' text-anchor='middle' font-size='10' fill='rgba(255,255,255,0.018)'%3E%E2%9C%A6%3C/text%3E%3C/svg%3E");
  min-height: 100vh;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.sparkle-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: sparkle-float linear infinite;
  opacity: 0;
}

.cursor-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  transition: opacity 0.4s ease;
}

@keyframes sparkle-float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-250px) scale(0);
  }
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.3),
      0 0 8px rgba(255, 255, 255, 0.15);
  }
  50% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.4),
      0 0 16px rgba(255, 255, 255, 0.2),
      0 0 24px rgba(255, 255, 255, 0.07);
  }
}

@keyframes flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
  }
  20%,
  24%,
  55% {
    opacity: 0.3;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slow-drift {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.5deg);
  }
}

@keyframes candle-flicker {
  0%,
  100% {
    opacity: 0.7;
    filter: brightness(1);
  }
  25% {
    opacity: 0.5;
    filter: brightness(0.85);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.1);
  }
  75% {
    opacity: 0.6;
    filter: brightness(0.9);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.myspace-nav {
  background: linear-gradient(180deg, #111111 0%, #080808 100%);
  border-bottom: 1px solid #333333;
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow:
    0 2px 20px rgba(255, 255, 255, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.nav-logo {
  font-family: "CloisterBlack", serif;
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 2px;
  animation: glow-pulse 4s ease-in-out infinite;
}

.nav-logo span {
  color: #666666;
  font-family: Verdana, sans-serif;
  font-size: 9px;
  vertical-align: baseline;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
}

.nav-links a {
  color: #666666;
  text-decoration: none;
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
  border-color: #333333;
  background: rgba(255, 255, 255, 0.04);
}

.nav-links .sep {
  color: #2a2a2a;
  font-size: 10px;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-search input {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: #c0c0c0;
  font-size: 10px;
  padding: 3px 6px;
  width: 140px;
  font-family: Verdana, sans-serif;
  transition: border-color 0.3s;
}

.nav-search input:focus {
  outline: none;
  border-color: #444444;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

.nav-search button {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  color: #c0c0c0;
  border: 1px solid #333333;
  font-size: 10px;
  padding: 3px 10px;
  font-family: Verdana, sans-serif;
  cursor: crosshair;
  transition: all 0.2s;
}

.nav-search button:hover {
  background: linear-gradient(180deg, #333333, #2a2a2a);
  color: #ffffff;
}

.marquee-bar {
  background: #080808;
  border-bottom: 1px solid #1a1a1a;
  padding: 4px 0;
  overflow: hidden;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  color: #666666;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.profile-header {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 10px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
}

.profile-header h1 {
  font-family: "CloisterBlack", serif;
  font-size: 36px;
  color: #c0c0c0;
  font-weight: normal;
  letter-spacing: 3px;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.08);
}

.profile-header h1 .accent {
  color: #ffffff;
  animation: candle-flicker 3s ease-in-out infinite;
  display: inline-block;
}

.online-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #555555;
}

.online-dot {
  width: 7px;
  height: 7px;
  background: #00cc00;
  border-radius: 50%;
  animation: blink 1.2s step-end infinite;
  box-shadow: 0 0 6px rgba(0, 204, 0, 0.4);
}

.online-text {
  animation: blink 1.2s step-end infinite;
  color: #00cc00;
}

.profile-sub-links {
  font-size: 10px;
  padding: 6px 0 8px;
}

.profile-sub-links a {
  color: #aaaaaa;
  text-decoration: none;
  margin-right: 8px;
  transition: color 0.2s;
}

.profile-sub-links a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.main-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  padding: 10px 10px 40px;
}

.left-col {
  width: 260px;
  min-width: 260px;
}

.profile-pic-wrap {
  border: 1px solid #333333;
  padding: 4px;
  background: #080808;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.06),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.profile-pic-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 1;
}

.profile-pic-wrap img {
  width: 100%;
  display: block;
  filter: contrast(1.15) saturate(0.6) brightness(0.9);
  transition: filter 0.5s ease;
}

.profile-pic-wrap:hover img {
  filter: contrast(1.2) saturate(0.7) brightness(1);
}

.profile-pic-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background:
    radial-gradient(
      ellipse at 30% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0d0d0d, #050505);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "CloisterBlack", serif;
  font-size: 56px;
  color: #333333;
  text-shadow: 0 0 30px rgba(74, 14, 14, 0.3);
  position: relative;
}

.profile-pic-placeholder::after {
  content: "\2720";
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.05);
  animation: flicker 5s linear infinite;
}

.profile-gif-accent {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #1a1a1a;
  display: block;
  opacity: 0.85;
  transition: opacity 0.4s;
}

.profile-gif-accent:hover {
  opacity: 1;
}

.profile-quote {
  font-style: italic;
  color: #666666;
  font-size: 10px;
  text-align: center;
  padding: 6px 8px;
  border-bottom: 1px dotted #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.mood-line {
  font-size: 10px;
  color: #555555;
  margin-bottom: 10px;
}

.mood-line strong {
  color: #666666;
}

.mood-line .mood-val {
  font-family: "CloisterBlack", serif;
  font-size: 14px;
  color: #aaaaaa;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

.profile-stats {
  font-size: 9px;
  color: #333333;
  text-align: center;
  padding: 4px 0;
  margin-bottom: 10px;
}

.profile-stats span {
  color: #aaaaaa;
}

.contact-box {
  background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  border: 1px solid #1a1a1a;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
}

.contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
}

.contact-box .section-label {
  font-size: 10px;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 4px;
  font-family: Verdana, sans-serif;
}

.contact-table {
  width: 100%;
  font-size: 10px;
}

.contact-table td {
  padding: 3px 0;
  vertical-align: top;
}

.contact-table td:first-child {
  color: #444444;
  width: 70px;
}

.contact-table a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-table a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 6px;
}

.contact-actions a {
  display: block;
  background: linear-gradient(180deg, #0d0d0d, #080808);
  border: 1px solid #1a1a1a;
  color: #666666;
  text-decoration: none;
  font-size: 10px;
  padding: 5px 8px;
  text-align: center;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.contact-actions a:hover {
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border-color: #333333;
  color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.06);
}

.player-box {
  background: linear-gradient(180deg, #0a0a0a, #050505);
  border: 1px solid #1a1a1a;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
}

.player-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.player-label {
  font-family: "CloisterBlack", serif;
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.player-song-title {
  font-size: 10px;
  color: #555555;
  text-align: center;
  margin-bottom: 10px;
  font-style: italic;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.player-btn {
  background: none;
  border: 1px solid #2a2a2a;
  color: #666666;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
  font-size: 11px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.player-btn:hover {
  border-color: #444444;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.player-btn.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: #444444;
  color: #ffffff;
}

.progress-wrap {
  flex: 1;
  height: 6px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  cursor: crosshair;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #444444, #ffffff);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

.player-time {
  font-size: 9px;
  color: #333333;
  text-align: center;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.player-volume label {
  font-size: 9px;
  color: #333333;
}

.volume-slider {
  flex: 1;
  height: 4px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  cursor: crosshair;
  position: relative;
  overflow: hidden;
}

.volume-fill {
  height: 100%;
  background: #444444;
  width: 70%;
}

.interests-box {
  background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  border: 1px solid #1a1a1a;
  padding: 10px;
  margin-bottom: 10px;
}

.interests-box .section-label {
  font-family: "CloisterBlack", serif;
  font-size: 16px;
  color: #aaaaaa;
  margin-bottom: 8px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 5px;
  letter-spacing: 1px;
}

.interests-table {
  width: 100%;
  font-size: 10px;
}

.interests-table tr {
  border-bottom: 1px dotted #0d0d0d;
}

.interests-table td {
  padding: 5px 0;
  vertical-align: top;
}

.interests-table td:first-child {
  color: #aaaaaa;
  font-weight: bold;
  width: 65px;
  padding-right: 8px;
}

.interests-table a {
  color: #777777;
  text-decoration: none;
  transition: color 0.2s;
}

.interests-table a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.url-box {
  background: #080808;
  border: 1px solid #1a1a1a;
  padding: 6px 10px;
  margin-bottom: 10px;
  font-size: 10px;
}

.url-box span {
  color: #333333;
}

.url-box a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s;
}

.url-box a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.gothic-ornament {
  text-align: center;
  font-size: 11px;
  color: #2a2a2a;
  padding: 6px 0;
  letter-spacing: 8px;
  user-select: none;
}

.right-col {
  flex: 1;
  padding-left: 12px;
}

.section-box {
  background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  border: 1px solid #1a1a1a;
  margin-bottom: 12px;
  position: relative;
  animation: fadeInUp 0.6s ease both;
}

.section-box:nth-child(2) {
  animation-delay: 0.1s;
}
.section-box:nth-child(3) {
  animation-delay: 0.2s;
}
.section-box:nth-child(4) {
  animation-delay: 0.3s;
}

.section-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
}

.section-header {
  background: linear-gradient(180deg, #0d0d0d, #080808);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
}

.section-title {
  font-family: "CloisterBlack", serif;
  font-size: 16px;
  color: #c0c0c0;
  font-weight: normal;
  letter-spacing: 1px;
}

.section-title .hl {
  color: #ffffff;
}

.section-toggle {
  font-size: 9px;
  color: #333333;
  cursor: crosshair;
  text-decoration: none;
  transition: color 0.2s;
}

.section-toggle:hover {
  color: #aaaaaa;
}

.section-body {
  padding: 12px;
}

.blurb-heading {
  font-family: "CloisterBlack", serif;
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.blurb-text {
  font-size: 11px;
  color: #777777;
  line-height: 1.7;
  margin-bottom: 14px;
}

.blurb-text em {
  color: #aaaaaa;
}

.blurb-text a {
  color: #aaaaaa;
  text-decoration: none;
  border-bottom: 1px dotted #333333;
  transition: all 0.2s;
}

.blurb-text a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.blurb-gif {
  display: block;
  max-width: 200px;
  margin: 10px 0;
  opacity: 0.8;
  border: 1px solid #1a1a1a;
}

.divider {
  border: none;
  border-top: 1px dotted #1a1a1a;
  margin: 14px 0;
  position: relative;
}

.divider-ornament {
  text-align: center;
  margin: 14px 0;
  font-size: 10px;
  color: #2a2a2a;
  letter-spacing: 6px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.portfolio-item {
  border: 1px solid #1a1a1a;
  background: #080808;
  padding: 3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-item:hover {
  border-color: #333333;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  transform: scale(1.03);
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}

.portfolio-thumb.t1 {
  background: linear-gradient(135deg, #111111, #0d0d0d);
}
.portfolio-thumb.t2 {
  background: linear-gradient(135deg, #0d0d0d, #0a0a0a);
}
.portfolio-thumb.t3 {
  background: linear-gradient(135deg, #0a0a0a, #111111);
}
.portfolio-thumb.t4 {
  background: linear-gradient(135deg, #0d0d0d, #0a0a0a);
}
.portfolio-thumb.t5 {
  background: linear-gradient(135deg, #111111, #0d0d0d);
}
.portfolio-thumb.t6 {
  background: linear-gradient(135deg, #0a0a0a, #0d0d0d);
}

.portfolio-item-title {
  font-size: 9px;
  color: #555555;
  padding: 5px 2px 3px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top8-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.friend-card {
  text-align: center;
  transition: transform 0.2s ease;
}

.friend-card:hover {
  transform: scale(1.06);
}

.friend-card a {
  text-decoration: none;
  color: #666666;
  font-size: 10px;
  transition: color 0.2s;
}

.friend-card a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.friend-avatar {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
  transition: all 0.25s ease;
}

.friend-card:hover .friend-avatar {
  border-color: #333333;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.friend-avatar.f1 {
  background: linear-gradient(135deg, #111111, #0a0a0a);
}
.friend-avatar.f2 {
  background: linear-gradient(135deg, #111111, #0a0a0a);
}
.friend-avatar.f3 {
  background: linear-gradient(135deg, #0a0a0a, #111111);
}
.friend-avatar.f4 {
  background: linear-gradient(135deg, #0a0a0a, #0d0d0d);
}
.friend-avatar.f5 {
  background: linear-gradient(135deg, #111111, #0a0a0a);
}
.friend-avatar.f6 {
  background: linear-gradient(135deg, #0a0a0a, #111111);
}
.friend-avatar.f7 {
  background: linear-gradient(135deg, #0d0d0d, #0a0a0a);
}
.friend-avatar.f8 {
  background: linear-gradient(135deg, #0a0a0a, #0d0d0d);
}

.friend-name {
  font-size: 10px;
}

.comment {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dotted #1a1a1a;
  animation: fadeInUp 0.4s ease both;
}

.comment:last-of-type {
  border-bottom: none;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.comment:hover .comment-avatar {
  border-color: #2a2a2a;
}

.comment-avatar.c1 {
  background: linear-gradient(135deg, #111111, #0a0a0a);
}
.comment-avatar.c2 {
  background: linear-gradient(135deg, #0a0a0a, #111111);
}
.comment-avatar.c3 {
  background: linear-gradient(135deg, #0a0a0a, #0a0a0a);
}
.comment-avatar.c4 {
  background: linear-gradient(135deg, #111111, #0a0a0a);
}
.comment-avatar.c5 {
  background: linear-gradient(135deg, #0d0d0d, #0a0a0a);
}
.comment-avatar.c6 {
  background: linear-gradient(135deg, #111111, #0d0d0d);
}
.comment-avatar.c7 {
  background: linear-gradient(135deg, #0a0a0a, #111111);
}
.comment-avatar.c8 {
  background: linear-gradient(135deg, #0a0a0a, #0a0a0a);
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-meta {
  font-size: 9px;
  color: #333333;
  margin-bottom: 4px;
}

.comment-meta a {
  color: #aaaaaa;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.comment-meta a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.comment-text {
  font-size: 11px;
  color: #666666;
  line-height: 1.6;
}

.comment-text .heart {
  color: #ffffff;
}

.comment-delete {
  background: none;
  border: none;
  color: #2a2a2a;
  font-size: 9px;
  cursor: crosshair;
  float: right;
  transition: color 0.2s;
  font-family: Verdana, sans-serif;
}

.comment-delete:hover {
  color: #ffffff;
}

.add-comment {
  padding: 10px 0 0;
  border-top: 1px dotted #1a1a1a;
  margin-top: 8px;
}

.add-comment-header {
  font-size: 10px;
  color: #444444;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.add-comment input[type="text"] {
  width: 100%;
  background: #080808;
  border: 1px solid #1a1a1a;
  color: #c0c0c0;
  font-family: Verdana, sans-serif;
  font-size: 10px;
  padding: 5px 8px;
  margin-bottom: 4px;
  transition: border-color 0.3s;
}

.add-comment input[type="text"]:focus {
  outline: none;
  border-color: #333333;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.06);
}

.add-comment textarea {
  width: 100%;
  background: #080808;
  border: 1px solid #1a1a1a;
  color: #c0c0c0;
  font-family: Verdana, sans-serif;
  font-size: 10px;
  padding: 6px 8px;
  resize: vertical;
  min-height: 55px;
  transition: border-color 0.3s;
}

.add-comment textarea:focus {
  outline: none;
  border-color: #333333;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.06);
}

.add-comment button {
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border: 1px solid #2a2a2a;
  color: #aaaaaa;
  font-size: 10px;
  padding: 5px 16px;
  margin-top: 5px;
  font-family: Verdana, sans-serif;
  cursor: crosshair;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.add-comment button:hover {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-color: #444444;
  color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

.details-table {
  width: 100%;
  font-size: 10px;
  margin-bottom: 10px;
}

.details-table td {
  padding: 3px 0;
  vertical-align: top;
}

.details-table td:first-child {
  color: #aaaaaa;
  font-weight: bold;
  width: 90px;
}

.view-links {
  font-size: 10px;
  color: #333333;
}

.view-links a {
  color: #aaaaaa;
  text-decoration: none;
  margin: 0 2px;
  transition: color 0.2s;
}

.view-links a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-bar {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 10px;
  text-align: center;
  font-size: 9px;
  color: #1a1a1a;
  border-top: 1px solid #0d0d0d;
}

.footer-bar a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bar a:hover {
  color: #aaaaaa;
  text-decoration: underline;
}

.footer-ornament {
  text-align: center;
  font-size: 12px;
  color: #1a1a1a;
  padding: 8px 0;
  letter-spacing: 10px;
}

.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid #2a2a2a;
  color: #666666;
  font-size: 18px;
  padding: 4px 10px;
  cursor: crosshair;
  transition: all 0.2s;
  line-height: 1;
}

.nav-hamburger:hover {
  border-color: #444444;
  color: #ffffff;
}

.find-elsewhere-box {
  margin-bottom: 10px;
}

/* ========== RESPONSIVE: TABLET ========== */

@media (max-width: 768px) {
  html {
    cursor: default;
  }

  a {
    cursor: default;
  }

  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    padding: 8px 0 4px;
    justify-content: center;
    border-top: 1px solid #1a1a1a;
    margin-top: 6px;
    gap: 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-search {
    display: none;
  }

  .profile-header {
    flex-direction: column;
    gap: 4px;
    padding: 12px 10px 0;
  }

  .profile-header h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .online-status {
    padding-bottom: 8px;
  }

  .main-container {
    flex-direction: column;
    padding: 10px 10px 30px;
  }

  .left-col {
    width: 100%;
    min-width: unset;
  }

  .profile-pic-wrap {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-gif-accent {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .right-col {
    padding-left: 0;
    margin-top: 12px;
  }

  .contact-actions a {
    padding: 8px 10px;
    font-size: 11px;
  }

  .player-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .cursor-trail {
    display: none !important;
  }

  .sparkle-overlay {
    display: none;
  }

  body::before {
    display: none;
  }

  .blurb-gif {
    max-width: 160px;
  }
}

/* ========== RESPONSIVE: MOBILE ========== */

@media (max-width: 520px) {
  .left-col {
    display: block;
  }

  .profile-pic-wrap {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-header h1 {
    font-size: 24px;
  }

  .nav-logo {
    font-size: 20px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top8-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .comment-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
  }

  .section-body {
    padding: 10px;
  }

  .blurb-text {
    font-size: 11px;
    line-height: 1.6;
  }

  .contact-actions a {
    padding: 10px 12px;
    font-size: 11px;
  }

  .interests-table td:first-child {
    width: 55px;
    padding-right: 6px;
  }

  .footer-bar {
    padding: 14px 10px;
    line-height: 2;
  }

  .footer-bar a {
    padding: 2px 0;
  }

  .marquee-content {
    font-size: 9px;
  }

  .add-comment input[type="text"],
  .add-comment textarea {
    font-size: 16px;
    padding: 8px 10px;
  }

  .add-comment button {
    padding: 8px 20px;
    font-size: 11px;
  }

  .player-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .progress-wrap {
    height: 10px;
  }

  .volume-slider {
    height: 8px;
  }
}
