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

body, html {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  background-color: rgba(13, 13, 15, 0);
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  perspective: 1500px;
}

.card-background-form {
  position: absolute;
  width: 350px;
  height: 200px;
  background-color: rgba(49, 53, 60, 0.05);
  border-radius: 15px;
  filter: blur(20px);
  opacity: 0.5;
  transition: transform 0.3s ease-out;
  transform: rotateX(10deg) rotateY(-10deg) translateZ(-75px);
  z-index: -1;
}

.scene {
  width: 350px;
  height: 200px;
  perspective: 1000px;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #25282e, #0f1012);
  cursor: pointer;
}
.card.is-flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-back {
  background-color: #1a1c20;
  transform: rotateY(180deg);
  color: #333;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.card-content-back {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-content {
  padding: 20px;
  text-align: center;
  transform-style: preserve-3d;
  width: 100%;
}

@keyframes jitter-glitch {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1.5px, -0.5px);
  }
  50% {
    transform: translate(-1.5px, 0.5px);
  }
  75% {
    transform: translate(0.5px, -1.5px);
  }
}
.text-layer {
  position: relative;
  color: #e0e0e0;
  text-shadow: 0 0 1.5px rgba(255, 255, 255, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.7s ease-in-out, filter 0.7s ease-in-out;
  z-index: 1;
}
.text-layer::before, .text-layer::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: transparent;
  z-index: -1;
}
.text-layer::before {
  text-shadow: 0 0 0 rgba(255, 0, 0, 0.65);
  animation: jitter-glitch 0.25s infinite ease-in-out;
}
.text-layer::after {
  text-shadow: 0 0 0 rgba(0, 0, 255, 0.65), 1.5px 1.5px 0 rgba(0, 255, 0, 0.55);
  animation: jitter-glitch 0.25s infinite ease-in-out reverse 0.06s;
}
.text-layer.name {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 5px;
  transform: translateZ(60px);
}
.text-layer.name:hover {
  transform: translateZ(60px) scale(1.05);
  filter: saturate(150%) hue-rotate(10deg);
}
.text-layer.title {
  font-size: 1.1em;
  font-weight: 300;
  color: #fafafa;
  margin-bottom: 15px;
  transform: translateZ(45px);
}
.text-layer.title:hover {
  transform: translateZ(45px) scale(1.05);
  filter: saturate(150%) hue-rotate(10deg);
}

.contact-info {
  font-size: 0.9em;
  font-weight: 300;
}
.contact-info .text-layer {
  margin-bottom: 3px;
  transform: translateZ(30px);
}
.contact-info .text-layer:hover {
  transform: translateZ(30px) scale(1.05);
  filter: saturate(150%) hue-rotate(10deg);
}
.contact-info .text-layer:last-child {
  margin-bottom: 0;
}

.vhs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}
.vhs-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(transparent, transparent 2px, rgba(0, 0, 0, 0.15) 2px, rgba(0, 0, 0, 0.15) 3px);
  opacity: 0.6;
  animation: vhs-scanlines 8s linear infinite;
}
.vhs-overlay::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 2px);
  opacity: 0.15;
  animation: vhs-noise-flicker 0.15s steps(2, end) infinite;
}

@keyframes vhs-scanlines {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes vhs-noise-flicker {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(33.33%);
  }
}
#digital-rain-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.digital-rain-string {
  position: absolute;
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.208);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}
.digital-rain-string .leading-char {
  color: rgba(200, 255, 200, 0.9);
  text-shadow: 0 0 7px rgba(0, 255, 0, 0.7);
}

.glitched-rain-char {
  position: relative;
  display: inline-block;
}
.glitched-rain-char::before, .glitched-rain-char::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: transparent;
}
.glitched-rain-char::before {
  text-shadow: 0 0 0 rgba(255, 0, 0, 0.3);
  animation: jitter-glitch 0.15s infinite ease-in-out;
}
.glitched-rain-char::after {
  text-shadow: 0 0 0 rgba(0, 0, 255, 0.3), 1px 1px 0 rgba(0, 255, 0, 0.3);
  animation: jitter-glitch 0.15s infinite ease-in-out reverse 0.04s;
}/*# sourceMappingURL=style.css.map */