/* --- Core Styling & Design Tokens --- */
:root {
  --neon-pink: #ff007f;
  --neon-purple: #bc13fe;
  --neon-blue: #00f3ff;
  --neon-green: #39ff14;
  --bg-dark: #070709;
  --card-bg: rgba(10, 10, 15, 0.55);
  --border-light: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  
  --font-main: 'Outfit', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  
  --shadow-glow: 0 0 20px rgba(255, 0, 127, 0.25), 0 0 40px rgba(188, 19, 254, 0.15);
  --border-glow: 0 0 10px rgba(255, 0, 127, 0.3), inset 0 0 10px rgba(255, 0, 127, 0.15);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  font-family: var(--font-main);
  color: var(--text-primary);
  overflow-x: hidden;
  overflow-y: auto;
}

/* Hide default cursor on desktop */
@media (min-width: 768px) {
  html, body, a, button, input {
    cursor: none !important;
  }
}

/* --- Custom Cursor Trail --- */
#custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1px solid var(--neon-pink);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
  z-index: 10000;
  mix-blend-mode: screen;
  box-shadow: 0 0 8px var(--neon-pink);
  opacity: 0;
}

#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--neon-blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  box-shadow: 0 0 6px var(--neon-blue);
  opacity: 0;
}

/* Cursor hover states */
.cursor-hover #custom-cursor {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 0, 127, 0.1);
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px var(--neon-blue);
}
.cursor-hover #cursor-dot {
  background-color: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
}

/* --- Interactive Canvas Background --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at center, #0f0a1c 0%, #050409 100%);
}

/* --- Click to Enter Gateway --- */
.gateway-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}

.gateway-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gateway-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gateway-logo {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 12px;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
  font-family: var(--font-main);
  text-transform: uppercase;
}

/* Decrypt Button */
.enter-button {
  background: transparent;
  border: 1px solid rgba(255, 0, 127, 0.4);
  padding: 15px 35px;
  position: relative;
  outline: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(255, 0, 127, 0.1);
}

.enter-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.enter-button:hover::before {
  left: 100%;
}

.enter-button:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3), inset 0 0 15px rgba(0, 243, 255, 0.1);
  transform: translateY(-2px);
}

.btn-text {
  font-family: var(--font-mono);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.enter-button:hover .btn-text {
  color: var(--neon-blue);
  text-shadow: 0 0 8px var(--neon-blue);
}

.gateway-status {
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* --- Main Bio Card (Glassmorphism) --- */
.glass-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 580px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 10;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- Profile Header Section --- */
.profile-header {
  display: flex;
  align-items: center;
  gap: 25px;
}

.avatar-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.avatar-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--neon-pink);
  border-bottom-color: var(--neon-blue);
  animation: spin 4s linear infinite;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.avatar-crop {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(10, 10, 15, 0.9);
  position: relative;
}

.avatar-img {
  width: 142%;
  height: 142%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.02);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avatar-wrapper:hover .avatar-img {
  transform: translate(-50%, -50%) scale(1.15) rotate(3deg);
}

.user-handle {
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: -3px;
  margin-bottom: 5px;
  opacity: 0.75;
  display: block;
}

/* Custom Speech Status Bubble */
.status-bubble {
  position: absolute;
  top: -15px;
  left: 85px;
  background: rgba(15, 15, 20, 0.9);
  border: 1px solid var(--neon-pink);
  border-radius: 12px;
  padding: 6px 12px;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.25);
  animation: bubble-float 3s ease-in-out infinite alternate;
  z-index: 5;
}

.status-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 15px;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: rgba(15, 15, 20, 0.9) transparent;
  display: block;
  width: 0;
}

.status-bubble::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 14px;
  border-width: 7px 7px 0;
  border-style: solid;
  border-color: var(--neon-pink) transparent;
  display: block;
  width: 0;
  z-index: -1;
}

.bubble-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

@keyframes bubble-float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-5px); }
}

/* Discord Bio Info Box */
.discord-info-box {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.01);
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  font-weight: 600;
}

.info-content {
  font-size: 0.9rem;
  color: #fff;
  font-family: var(--font-main);
  opacity: 0.95;
}

/* Status DND Pulse */
.status-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(10, 10, 15, 1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.status-badge.dnd {
  background-color: #f04747;
  position: absolute;
}

.status-badge.dnd::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bird-badge {
  position: absolute;
  bottom: -2px;
  left: -2px;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 4px var(--neon-pink));
  animation: float 2.5s ease-in-out infinite;
}

/* Name details */
.name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.username-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 30%, #e0c3fc 70%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verify-badge {
  font-size: 1.15rem;
  color: var(--neon-blue);
  filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.6));
  animation: pulse-glow 2s infinite alternate;
}

/* Typewriter bio */
.typewriter-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.typewriter-container .prefix {
  color: var(--text-secondary);
}

.typewriter-text {
  color: var(--neon-pink);
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.3);
  font-weight: 600;
}

.typewriter-container .cursor {
  animation: cursor-blink 0.8s infinite;
  color: var(--neon-blue);
}

/* Divider */
.card-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* --- Socials Grid --- */
.socials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (max-width: 500px) {
  .socials-grid {
    grid-template-columns: 1fr;
  }
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
}

.social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.social-icon {
  font-size: 1.4rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.social-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.social-username {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.hover-arrow {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

/* Custom Social Hovers */
.social-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.social-item:hover .hover-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Discord Neon Border & Glow */
.social-item.discord:hover {
  border-color: #5865f2;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.3), inset 0 0 10px rgba(88, 101, 242, 0.15);
}
.social-item.discord:hover .social-icon {
  color: #5865f2;
  filter: drop-shadow(0 0 5px #5865f2);
}

/* GitHub Neon Border & Glow */
.social-item.github:hover {
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.social-item.github:hover .social-icon {
  color: #fff;
  filter: drop-shadow(0 0 5px #fff);
}

/* Spotify Neon Border & Glow */
.social-item.spotify-link:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3), inset 0 0 10px rgba(57, 255, 20, 0.15);
}
.social-item.spotify-link:hover .social-icon {
  color: var(--neon-green);
  filter: drop-shadow(0 0 5px var(--neon-green));
}

/* TikTok Neon Border & Glow */
.social-item.tiktok:hover {
  border-color: #ee1d52;
  box-shadow: 0 0 15px rgba(238, 29, 82, 0.3), inset 0 0 10px rgba(238, 29, 82, 0.15);
}
.social-item.tiktok:hover .social-icon {
  color: #ee1d52;
  filter: drop-shadow(0 0 5px #ee1d52);
}

/* --- Widgets Area --- */
.widgets-container {
  display: flex;
  gap: 15px;
}

@media (max-width: 500px) {
  .widgets-container {
    flex-direction: column;
  }
}

.widget {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px 18px;
}

.widget-icon {
  font-size: 1.25rem;
  color: var(--neon-blue);
  filter: drop-shadow(0 0 5px var(--neon-blue));
}

.widget-icon.pulse-green {
  color: var(--neon-green);
  filter: drop-shadow(0 0 5px var(--neon-green));
  animation: pulse-scale 2s infinite alternate;
}

.widget-details {
  display: flex;
  flex-direction: column;
}

.widget-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.widget-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-glow-green {
  color: var(--neon-green);
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
}

/* --- Custom Music Player Widget --- */
.audio-player-container {
  position: relative;
  background: rgba(10, 10, 15, 0.65);
  border: 1px solid rgba(255, 0, 127, 0.15);
  border-radius: 16px;
  padding: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.05);
}

/* Visualizer Canvas behind controls */
#visualizer-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.player-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Album Art & Spinning Vinyl */
.album-art-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.album-art-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.vinyl-disc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #2c2c2c 25%, #050505 50%, #1c1c1c 70%, #000 100%);
  z-index: 1;
  transform: translateX(0);
  transition: transform 0.5s ease-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.vinyl-disc::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: var(--neon-pink);
  border-radius: 50%;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
}

/* When playing, slide out vinyl disc and spin it */
.audio-playing .vinyl-disc {
  transform: translateX(18px);
  animation: spin 6s linear infinite;
}

.audio-playing .album-art-img {
  filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.3));
}

/* Track text */
.track-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
}

.track-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Progress bar */
.progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 6px 0;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  border-radius: 2px;
  box-shadow: 0 0 6px var(--neon-pink);
  position: relative;
  transition: width 0.1s linear;
}

.progress-bar::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px var(--neon-pink);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progress-bar-container:hover .progress-bar::after {
  opacity: 1;
}

/* Player buttons */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.time-stamp {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.control-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.control-btn {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 5px var(--neon-pink);
  transform: scale(1.1);
}

.control-btn.play {
  font-size: 1.1rem;
  color: var(--neon-pink);
  filter: drop-shadow(0 0 5px rgba(255, 0, 127, 0.4));
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 0, 127, 0.05);
  border: 1px solid rgba(255, 0, 127, 0.2);
}

.control-btn.play:hover {
  background: rgba(255, 0, 127, 0.15);
  border-color: var(--neon-pink);
  color: #fff;
  transform: scale(1.15);
}

/* Volume controls */
.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}

.volume-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.volume-btn:hover {
  color: var(--neon-blue);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  transform: rotate(-90deg) translate(-20px, 0);
  transform-origin: left center;
  position: absolute;
  right: -5px;
  top: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.volume-container:hover .volume-slider {
  opacity: 1;
  pointer-events: all;
  transform: rotate(-90deg) translate(-25px, 0);
}

.volume-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-blue);
  cursor: pointer;
  box-shadow: 0 0 5px var(--neon-blue);
  margin-top: -3.5px;
}

/* --- Card Footer --- */
.card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.separator {
  color: var(--border-light);
}

.text-glow-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 6px rgba(255, 0, 127, 0.4);
}

/* --- Animations Definitions --- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

@keyframes pulse-glow {
  0% { filter: drop-shadow(0 0 3px rgba(0, 243, 255, 0.4)); }
  100% { filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.8)); }
}

@keyframes pulse-scale {
  0% { transform: scale(1); filter: drop-shadow(0 0 3px var(--neon-green)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 8px var(--neon-green)); }
}

/* Glitch Animation for Gateway */
.glitch-text {
  position: relative;
  animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
}

.glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-pink);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: -2px 0 var(--neon-blue), 0 2px var(--neon-pink);
  clip: rect(85px, 450px, 140px, 0);
  animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(15px, 9999px, 66px, 0); transform: skew(0.2deg); }
  5% { clip: rect(30px, 9999px, 5px, 0); transform: skew(-0.5deg); }
  /* ... more frames ... */
  100% { clip: rect(25px, 9999px, 40px, 0); transform: skew(0deg); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(70px, 9999px, 105px, 0); transform: skew(-0.3deg); }
  /* ... more frames ... */
  100% { clip: rect(50px, 9999px, 85px, 0); transform: skew(0.3deg); }
}

@keyframes glitch-skew {
  0% { transform: skew(1deg); }
  100% { transform: skew(-1deg); }
}
