/* ================================================================
   PROPHETTE — OFFICIAL WEBSITE
   Dark / ritualistic / technomantic aesthetic
   Colors pulled directly from press photography
   ================================================================ */

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

/* ----------------------------------------------------------------
   CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  --bg:          #050101;
  --bg-alt:      #0d0303;
  --bg-card:     #120404;

  --red:         #a81212;
  --red-bright:  #c91a1a;
  --red-glow:    rgba(168, 18, 18, 0.45);
  --red-dim:     rgba(168, 18, 18, 0.12);

  --text:        #eee0d8;
  --text-muted:  #8a7672;
  --text-dim:    #4a3a36;

  --border:      rgba(168, 18, 18, 0.18);
  --border-mid:  rgba(168, 18, 18, 0.4);

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-mono:    'Space Mono', monospace;

  --ease:        0.3s ease;
  --ease-slow:   0.7s ease;

  --section-pad: 7rem;
  --container:   min(1200px, 90vw);
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* ----------------------------------------------------------------
   UTILITY
   ---------------------------------------------------------------- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section        { padding: var(--section-pad) 0; }
.section-alt    { background: var(--bg-alt); }

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.75rem;
}
.section-label.centered { text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title.centered { text-align: center; }

.section-rule {
  width: 60px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  margin-bottom: 2.5rem;
}
.section-rule.centered { margin-inline: auto; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(238, 224, 216, 0.28);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: all var(--ease);
}
.btn-ghost:hover {
  border-color: var(--red);
  background: var(--red-dim);
  box-shadow: 0 0 24px var(--red-glow);
}

/* Small ghost button (shows) */
.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--border-mid);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-ghost-sm:hover {
  border-color: var(--red);
  color: var(--red-bright);
  background: var(--red-dim);
}

/* Social icon */
.social-icon {
  color: var(--text-muted);
  transition: color var(--ease), transform var(--ease);
  display: inline-flex;
  align-items: center;
}
.social-icon:hover {
  color: var(--red-bright);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
#nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background var(--ease), padding var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(5, 1, 1, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.875rem 3rem;
  border-color: var(--border);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 2rem;
  width: auto;
  display: block;
  transition: opacity var(--ease), filter var(--ease);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
  filter: drop-shadow(0 0 6px var(--red-bright));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: all var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.65);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5, 1, 1, 0.72) 0%,
      rgba(5, 1, 1, 0.08) 35%,
      rgba(5, 1, 1, 0.08) 65%,
      rgba(5, 1, 1, 0.88) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-logo {
  width: min(580px, 80vw);
  filter:
    drop-shadow(0 0 30px rgba(168, 18, 18, 0.7))
    drop-shadow(0 0 80px rgba(168, 18, 18, 0.35));
  animation: heroReveal 1.6s ease forwards;
}
@keyframes heroReveal {
  from { opacity: 0; transform: scale(0.93) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-bright), transparent);
  animation: heroReveal 2s ease 0.3s both;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-bright);
  animation: heroReveal 2s ease 0.5s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroReveal 2s ease 0.75s both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.55;
  animation: heroReveal 2s ease 1.2s both;
}
.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red-bright), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.9); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* Side social icons */
.hero-socials {
  position: absolute;
  right: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: heroReveal 2s ease 1s both;
}

/* ----------------------------------------------------------------
   ABOUT
   ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border-mid);
  box-shadow:
    0 0 40px var(--red-glow),
    0 0 100px rgba(168, 18, 18, 0.12);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  color: var(--text-muted);
}
.about-tagline {
  font-family: var(--font-heading);
  font-size: 1rem !important;
  letter-spacing: 0.08em;
  color: var(--red-bright) !important;
  font-style: italic;
  margin-top: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}
.about-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

/* ----------------------------------------------------------------
   MUSIC
   ---------------------------------------------------------------- */
.music-embed {
  margin: 0 auto 2.5rem;
  max-width: 900px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--border-mid);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--ease);
  background: transparent;
}
.platform-btn:hover {
  border-color: var(--red-bright);
  color: var(--text);
  background: var(--red-dim);
  box-shadow: 0 0 20px var(--red-glow);
}

/* ----------------------------------------------------------------
   GALLERY
   ---------------------------------------------------------------- */
.gallery-grid {
  columns: 4;
  column-gap: 6px;
  margin-top: 0.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.82) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.15);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0 solid var(--red);
  transition: border-width 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  border-width: 2px;
  box-shadow: inset 0 0 20px rgba(168, 18, 18, 0.3);
}

/* ----------------------------------------------------------------
   SHOWS
   ---------------------------------------------------------------- */
.shows-list {
  max-width: 720px;
  margin-inline: auto;
}
.show-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  font-family: var(--font-heading);
}
.show-month {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.show-day {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}
.show-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.show-venue {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.show-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}
.shows-empty {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.1rem;
  padding: 2rem 0;
  line-height: 2;
}

/* BandsInTown widget overrides */
.bit-widget-wrap {
  max-width: 820px;
  margin-inline: auto;
}
.bit-followup {
  text-align: center;
  margin-top: 2.5rem;
}
/* Force BIT widget to respect our background */
.bit-widget { background: transparent !important; }
.bit-no-dates-title,
.bit-no-dates-sub-title { color: var(--text-muted) !important; }

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.contact-email {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--red-bright);
  text-decoration: none;
  transition: color var(--ease);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.contact-email:hover {
  color: var(--text);
  border-color: var(--red);
}
.contact-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 18px var(--red-dim);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7672' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--bg-alt); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--text);
  padding: 0.9rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  align-self: flex-start;
}
.btn-submit:hover {
  background: transparent;
  color: var(--red-bright);
  box-shadow: 0 0 28px var(--red-glow);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
.footer-merch {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-merch:hover { color: var(--text); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ----------------------------------------------------------------
   LIGHTBOX
   ---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 0, 0, 0.96);
  cursor: pointer;
}
.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(168, 18, 18, 0.25);
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
}
.lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--text);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
}
.lightbox-nav:hover {
  background: var(--red-dim);
  border-color: var(--red);
  color: var(--text);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  z-index: 2;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid  { columns: 3; }
  .hero-socials  { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 5rem; }

  #nav { padding: 1rem 1.5rem; }
  #nav.scrolled { padding: 0.75rem 1.5rem; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 1, 1, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1050;
  }
  .nav-links.open { display: flex; }
  .nav-links.open .nav-link {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
  }
  .nav-links.open .nav-link:hover { color: var(--text); }

  .gallery-grid { columns: 2; }
  .btn-submit   { align-self: stretch; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid  { columns: 1; }
  .hero-ctas     { flex-direction: column; align-items: center; }
  .platform-links { flex-direction: column; align-items: center; }
}

/* terminal-btn styles live in index.html <style> tag */

/* ----------------------------------------------------------------
   IMAGE GLITCH — chromatic aberration bursts
   ca-glitch:      for about photo (no base filter)
   ca-glitch-dark: for hero bg    (preserves brightness 0.65)
   ---------------------------------------------------------------- */
@keyframes ca-glitch {
  0%   { filter: none;                                                                                           transform: translate(0,    0); }
  12%  { filter: drop-shadow( 4px 0 0 rgba(255,0,60,.85)) drop-shadow(-4px 0 0 rgba(0,220,255,.85));            transform: translate(-3px, 1px); }
  24%  { filter: drop-shadow(-3px 0 0 rgba(255,0,60,.70)) drop-shadow( 3px 0 0 rgba(0,220,255,.70));            transform: translate( 2px,-1px); }
  36%  { filter: none;                                                                                           transform: translate(-1px, 1px); }
  48%  { filter: drop-shadow( 3px 0 1px rgba(255,0,60,.90)) drop-shadow(-3px 0 1px rgba(0,220,255,.90)) brightness(1.1); transform: translate(2px, 0); }
  60%  { filter: drop-shadow(-4px 0 0 rgba(255,0,60,.60)) drop-shadow( 4px 0 0 rgba(0,220,255,.60));            transform: translate(-2px, 1px); }
  72%  { filter: none;                                                                                           transform: translate( 1px, 0); }
  84%  { filter: drop-shadow( 2px 0 0 rgba(255,0,60,.40)) drop-shadow(-2px 0 0 rgba(0,220,255,.40));            transform: translate( 0,  -1px); }
  100% { filter: none;                                                                                           transform: translate(0,    0); }
}

@keyframes ca-glitch-dark {
  0%   { filter: brightness(.65);                                                                                              transform: translate(0,    0); }
  12%  { filter: brightness(.65) drop-shadow( 4px 0 0 rgba(255,0,60,.85)) drop-shadow(-4px 0 0 rgba(0,220,255,.85));          transform: translate(-3px, 1px); }
  24%  { filter: brightness(.65) drop-shadow(-3px 0 0 rgba(255,0,60,.70)) drop-shadow( 3px 0 0 rgba(0,220,255,.70));          transform: translate( 2px,-1px); }
  36%  { filter: brightness(.65);                                                                                              transform: translate(-1px, 1px); }
  48%  { filter: brightness(.80) drop-shadow( 3px 0 1px rgba(255,0,60,.90)) drop-shadow(-3px 0 1px rgba(0,220,255,.90));      transform: translate( 2px, 0); }
  60%  { filter: brightness(.65) drop-shadow(-4px 0 0 rgba(255,0,60,.60)) drop-shadow( 4px 0 0 rgba(0,220,255,.60));          transform: translate(-2px, 1px); }
  72%  { filter: brightness(.65);                                                                                              transform: translate( 1px, 0); }
  84%  { filter: brightness(.65) drop-shadow( 2px 0 0 rgba(255,0,60,.40)) drop-shadow(-2px 0 0 rgba(0,220,255,.40));          transform: translate( 0,  -1px); }
  100% { filter: brightness(.65);                                                                                              transform: translate(0,    0); }
}

.img-glitching      { animation: ca-glitch      0.45s linear forwards; }
.img-glitching-dark { animation: ca-glitch-dark 0.45s linear forwards; }
