css
* {
  box-sizing: border-box;
}
body {
  font-family: "Times New Roman", Times, serif;
}
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
:root {
  --bg-color: #ffffff;
  --text-color: #111111;
  --link-color: #111111;
}
html[data-theme="dark"] {
  --bg-color: #121212;
  --text-color: #f0f0f0;
  --link-color: #f0f0f0;
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
#that_pdf {
    width:100vw;
    height:100vh;
}
#theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 26px;
  display: inline-block;
  cursor: pointer;
  z-index: 1001;
}
#theme-toggle-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}
#theme-toggle-slider {
  position: absolute;
  inset: 0;
  background-color: #888;
  border-radius: 26px;
  transition: background-color 0.3s ease;
}
#theme-toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
#theme-toggle-checkbox:checked + #theme-toggle-slider {
  background-color: #333;
}
#theme-toggle-checkbox:checked + #theme-toggle-slider::before {
  transform: translateX(24px);
}
#kirkmobile {
  width: 100%;
  height: 450px;
  overflow: hidden;
  box-sizing: border-box;
}
#kirk-enter {
  display: inline-block;
  animation: enter 1s ease-out forwards;
}
@keyframes enter {
  from { transform: translateX(100vw); }
  to   { transform: translateX(0); }
}
#kirk-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 40s linear infinite;
}
#kirk-track:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.kirkimg {
  height: 400px;
  width: auto;
  max-width: none;
  margin-right: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
}
.kirkimg:hover {
  transform: scale(1.05);
}
.kirkimg.youtube-embed {
  aspect-ratio: 16 / 9;
  width: auto;
  overflow: hidden;
  border-radius: 8px;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
.kirkimg.youtube-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  pointer-events: none;
}
#dateme_title {
  font-size: 60pt;
  text-align: center;
  background: linear-gradient(
    90deg,
    #0069FF, #A856FF, #0069FF, #A856FF, #0069FF
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-move 20s linear infinite;
}
.resume-section {
  font-size: 20pt;
  margin: 20px auto;
  width: 900px;
  max-width: calc(100% - 40px);
  text-align: center;
}
.custom-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.custom-images img {
  pointer-events: auto;
}
.custom-images video {
  pointer-events: auto;
}
.contact-box {
  margin: 60px auto 40px;
  width: 700px;
  max-width: calc(100% - 40px);
  text-align: center;
  padding: 30px;
  border: 2px solid var(--text-color);
  border-radius: 12px;
  box-sizing: border-box;
}
.contact-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background-color: #690896;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 14pt;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-button:hover {
  background-color: #3f065a;
  transform: translateY(-2px);
}
.dateme-gallery {
  margin: 30px 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.gallery-row:last-child {
  margin-bottom: 0;
}
.gallery-img {
  height: 400px;
  width: auto;
  max-width: 100%;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
}
.spoiler-item {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.spoiler-item .gallery-img {
  display: block;
  filter: blur(45px);
  transform: scale(1.08);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.spoiler-item.revealed .gallery-img {
  filter: none;
  transform: none;
}
.spoiler-item:hover .gallery-img {
  transform: scale(1.13);
}
.spoiler-item.revealed:hover .gallery-img {
  transform: scale(1.05);
}
.spoiler-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: none;
}
.spoiler-item.revealed .spoiler-overlay {
  display: none;
}
.spoiler-warning {
  font-weight: bold;
  font-size: 15pt;
  letter-spacing: 0.5px;
}
.spoiler-hint {
  font-size: 10pt;
  opacity: 0.85;
}
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
#lightbox.active {
  display: flex;
}
#lightbox-img,
#lightbox-video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 6px;
}
#lightbox-youtube-wrap {
  width: 90vw;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
}
#lightbox-youtube-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}
#lightbox-caption {
  color: white;
  font-size: 18pt;
  margin-top: 16px;
  max-width: 80vw;
}
#lightbox-credit {
  display: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12pt;
  font-style: italic;
  margin: 8px auto 0;
  padding-top: 8px;
  max-width: 80vw;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  padding: 10px 15px;
  z-index: 1001;
  transition: opacity 0.2s ease;
}
.lightbox-arrow:hover {
  opacity: 0.6;
}
#lightbox-prev {
  left: 20px;
}
#lightbox-next {
  right: 20px;
}
#social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  align-items: flex-start;
}
.social-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 16pt;
  font-weight: bold;
}
.social-icon {
  width: 32px;
  height: 32px;
  color: var(--text-color);
}
.social-tooltip {
  position: absolute;
  bottom: 90%;
  left: 75%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--text-color);
  color: var(--bg-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12pt;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.social-link:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
}
@media (max-width: 600px) {
  #blue_title {
    font-size: 12vw;
    padding: 0 10px;
    text-align: center;
  }
  .kirkimg {
    height: 180px;
  }
  #kirkmobile {
    height: 220px;
  }
  #social-links {
    padding: 0 10px;
  }
}
#navbar {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
.nav-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #690896;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.nav-button:hover {
  background-color: #3f065a;
  transform: translateY(-2px);
}
.nav-button:active {
  transform: translateY(0);
}
#blue_title {
  font-weight: bold;
  font-size: 100pt;
  background: linear-gradient(
    90deg,
    #0069FF, #A856FF, #0069FF, #A856FF, #0069FF
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-move 20s linear infinite;
}
@keyframes rainbow-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
#single-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rainbow-text {
  font-weight: bold;
  font-size: 20pt;
  background: linear-gradient(
    90deg,
    #ff0000, #ff9900, #ffee00, #33ff00, #00ffee, #0033ff, #cc00ff, #ff0000
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-move 4s linear infinite;
}
.single-arrow {
  font-size: 24pt;
  font-weight: bold;
  color: var(--text-color);
}
#message-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--text-color);
  border-radius: 12px;
  box-sizing: border-box;
}
.speak-label {
  font-size: 32pt;
  font-weight: bold;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-move 20s linear infinite;
  margin-bottom: 4px;
}
.speak-card {
  margin: 20px 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-color);
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  text-align: left;
}
.speak-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  animation: rainbow-move 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.speak-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 2px solid rgba(168, 86, 255, 0.3);
}
.speak-card-dots {
  display: flex;
  gap: 7px;
}
.speak-card-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.speak-card-dots span:nth-child(1) { background: #0069FF; }
.speak-card-dots span:nth-child(2) { background: #A856FF; }
.speak-card-dots span:nth-child(3) { background: #0069FF; }
.speak-card-watermark {
  font-weight: bold;
  font-size: 12pt;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-move 20s linear infinite;
}
.speak-card-body {
  padding: 28px 24px;
}
.speak-card-inner-text {
  min-height: 60px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(168, 86, 255, 0.18);
  font-size: 32pt;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: center;
  color: var(--text-color);
}
#speak-preview-text-placeholder {
  opacity: 0.5;
  font-style: italic;
}
#speak-preview-image-wrap {
  margin: 20px 0 0;
  text-align: center;
}
#speak-preview-image-wrap img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 10px;
  border: 1px solid rgba(168, 86, 255, 0.4);
}
#anon-message {
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 14pt;
  border-radius: 8px;
  border: 1px solid #888;
  box-sizing: border-box;
  resize: vertical;
  margin-bottom: 16px;
}
#canvas-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#draw-canvas {
  border: 2px solid #888;
  border-radius: 8px;
  background: white;
  touch-action: none;
  max-width: 100%;
  cursor: crosshair;
  margin-bottom: 16px;
}
#anon-submit {
  padding: 12px 28px;
  background-color: #690896;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14pt;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
#anon-submit:hover {
  background-color: #3f065a;
  transform: translateY(-2px);
}
#anon-submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}
#anon-status {
  margin-top: 12px;
  font-weight: bold;
}
.tool-btn {
  padding: 8px 14px;
  border-radius: 6px;
  border: 2px solid #888;
  background: white;
  color: #111;
  cursor: pointer;
  font-size: 12pt;
}
.tool-btn.active {
  border-color: #690896;
  background: #690896;
  color: white;
}
#flashbang-trigger {
  cursor: pointer;
  z-index: 500;
  transition: filter 0.15s ease;
}
#flashbang-trigger:hover {
  filter: brightness(1.2);
}
#flashbang-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}
#flashbang-overlay.active {
  display: block;
}
#flashbang-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#flashbang-whiteout {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity linear;
}
#flashbang-whiteout.active {
  opacity: 1;
}
#flashbang-whiteout.fading {
  opacity: 0;
}
#flashbang-trigger-wrapper {
  cursor: pointer;
  z-index: 600;
  transition: filter 0.15s ease;
}
#flashbang-trigger-wrapper:hover {
  filter: brightness(1.2);
}
#flashbang-trigger-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
#skeleton-canvas {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  pointer-events: none;
}
#skeleton-canvas.active {
  display: block;
}
#drawing-gallery-mobile {
  width: 100%;
  height: 260px;
  overflow: hidden;
  box-sizing: border-box;
}
#drawing-gallery-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 30s linear infinite;
}
#drawing-gallery-track:hover {
  animation-play-state: paused;
}
.doodle-img {
  height: 220px;
  width: auto;
  margin-right: 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.doodle-img:hover {
  transform: scale(1.05);
}
#chaos-section {
  padding: 60px 20px 100px;
  text-align: left;
}
#chaos-btn {
  padding: 14px 24px;
  background-color: #c90000;
  color: rgb(255, 136, 0);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14pt;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
#chaos-btn:hover {
  background-color: #880000;
  transform: translateY(-2px);
}
#chaos-btn:active {
  transform: translateY(0) scale(0.97);
}
.sound-button {
  transition: transform 0.15s ease;
}
.sound-button:hover {
  transform: scale(1.1);
}
.custom-interactive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 250;
  pointer-events: none;
}
.custom-interactive img {
  pointer-events: auto;
}

#now-playing {
  max-width: 700px;
  margin: 20px auto;
  padding: 16px 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: linear-gradient(135deg, rgba(105, 8, 150, 0.4), rgba(168, 86, 255, 0.4));
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
#now-playing::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 8px;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  animation: rainbow-move 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.now-playing-row {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 14pt;
  font-weight: bold;
}
.now-playing-icon {
  font-size: 18pt;
  flex-shrink: 0;
}
.now-playing-text {
  color: var(--text-color);
}
#friends-totals-wrap {
  max-width: 500px;
  margin: 40px auto;
  padding: 16px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(105, 8, 150, 0.4), rgba(168, 86, 255, 0.4));
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
#friends-totals-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 8px;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  animation: rainbow-move 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#friends-totals-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.friends-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14pt;
  font-weight: bold;
  color: var(--text-color);
}
.friends-totals-count {
  color: #A856FF;
  font-size: 16pt;
}
#friends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  #friends-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  #friends-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  #friends-grid {
    grid-template-columns: 1fr;
  }
}
.friend-card {
  background: linear-gradient(135deg, rgba(105, 8, 150, 0.4), rgba(168, 86, 255, 0.4));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.friend-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  animation: rainbow-move 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.friend-card-you::before {
  padding: 3px;
}
.friend-card-name {
  font-size: 18pt;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 10px;
  word-break: break-word;
}
.friend-card-count {
  font-weight: bold;
  font-size: 48pt;
  line-height: 1;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-move 20s linear infinite;
}
.contact-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 13pt;
  border-radius: 8px;
  border: 1px solid #888;
  box-sizing: border-box;
  resize: vertical;
  background: linear-gradient(135deg, #0069FF, #A856FF);
  color: white;
}
.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
#contact-status {
  margin-top: 10px;
  font-weight: bold;
}
.bg-decoration {
  pointer-events: none;
}
#music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0069FF, #A856FF);
  color: white;
  min-width: 220px;
  text-align: center;
  cursor: move;
}
#music-title {
  font-weight: bold;
  margin: 4px 0;
}
#music-artist {
  font-size: 11pt;
  opacity: 0.85;
  margin: 0 0 10px;
}
#music-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
}
#music-controls button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 16pt;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
#music-controls button span,
#music-volume-icon {
  position: relative;
  top: -3px;
}
#music-controls button:hover {
  background: rgba(255, 255, 255, 0.35);
}
#music-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
#music-controls button,
#music-close {
  cursor: pointer;
}
#music-volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
#music-volume-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16pt;
  flex-shrink: 0;
  cursor: pointer;
}
#music-volume {
  flex: 1;
  cursor: pointer;
  accent-color: white;
}
#music-progress {
  position: relative;
  height: 24px;
  margin-top: 12px;
  cursor: pointer;
}
#music-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}
#qa-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.qa-card {
  background: linear-gradient(135deg, rgba(105, 8, 150, 0.4), rgba(168, 86, 255, 0.4));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 14px;
  padding: 24px;
  position: relative;
}
.qa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(90deg, #0069FF, #A856FF, #0069FF);
  background-size: 300% 100%;
  animation: rainbow-move 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.qa-question {
  margin-bottom: 16px;
}
.qa-text {
  font-size: 15pt;
  font-weight: bold;
  color: var(--text-color);
  margin: 0 0 12px;
  white-space: pre-wrap;
  word-break: break-word;
}
.qa-image {
  display: block;
  max-width: 100%;
  max-height: 320px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.qa-image:hover {
  transform: scale(1.02);
}
.qa-answer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.qa-answer-text {
  font-size: 14pt;
  color: var(--text-color);
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.qa-meta {
  margin-top: 12px;
  font-size: 10pt;
  opacity: 0.7;
  color: var(--text-color);
}
#admin-filters {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.admin-filter-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #888;
  background: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 11pt;
}
.admin-filter-btn.active {
  border-color: #690896;
  background: #690896;
  color: white;
}
#admin-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin-card {
  background: #222;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 20px;
}
.admin-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: #690896;
  color: white;
  font-size: 10pt;
  font-weight: bold;
  margin-bottom: 12px;
}
.admin-submission-text {
  color: white;
  font-size: 13pt;
  white-space: pre-wrap;
  word-break: break-word;
}
.admin-submission-image {
  display: block;
  max-width: 100%;
  max-height: 260px;
  border-radius: 8px;
  cursor: pointer;
  margin: 8px 0;
}
.admin-answer-label {
  display: block;
  color: #ccc;
  font-size: 10pt;
  margin: 12px 0 4px;
}
.admin-answer-box {
  margin-bottom: 12px !important;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-actions .contact-button {
  margin-top: 0;
  padding: 8px 16px;
  font-size: 11pt;
}
.admin-action-delete {
  background-color: #c0392b !important;
}
.admin-action-delete:hover {
  background-color: #922b21 !important;
}