<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --accent-color: #64ffda;
  --background-color: #0a192f;
  --text-color: #e6f1ff;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--background-color);
  color: var(--text-color);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Binary Rain Effect */
.binary-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  overflow: hidden;
}

.binary-column {
  position: absolute;
  top: -100px;
  animation: rain-fall linear infinite;
}

.binary-char {
  color: var(--accent-color);
  opacity: 0.8;
  font-family: monospace;
  font-size: 14px;
}

@keyframes rain-fall {
  0% { transform: translateY(-100px); }
  100% { transform: translateY(calc(100vh + 100px)); }
}

/* Name Glitch Effect */
.glitch-container {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.glitch-text {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  animation: glitch-effect 2s linear infinite;
  line-height: 1.1;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: white;
  opacity: 0.8;
}

.glitch-text::before {
  left: 2px;
  color: #ff00ff;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  color: #00ffff;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

.glitch-line {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  animation: glitch-line-anim 2.5s ease-in-out forwards;
}

/* Text Display */
.hero-text {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin: 0.25rem 0 1.5rem;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0.25rem 0 1.5rem;
  align-items: center;
}

/* Persistent Cursor */
.persistent-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent-color);
  animation: blink 1s infinite;
  margin-left: 2px;
  vertical-align: middle;
}

/* Buttons */
.hero-buttons {
  margin-top: 1.5rem;
}

/* Animations */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes glitch-effect {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
}

@keyframes glitch-anim-1 {
  0% { clip: rect(32px, 9999px, 78px, 0); }
  20% { clip: rect(13px, 9999px, 37px, 0); }
  40% { clip: rect(45px, 9999px, 66px, 0); }
  60% { clip: rect(2px, 9999px, 89px, 0); }
  80% { clip: rect(23px, 9999px, 58px, 0); }
  100% { clip: rect(62px, 9999px, 34px, 0); }
}

@keyframes glitch-anim-2 {
  0% { clip: rect(12px, 9999px, 99px, 0); }
  20% { clip: rect(54px, 9999px, 78px, 0); }
  40% { clip: rect(32px, 9999px, 65px, 0); }
  60% { clip: rect(87px, 9999px, 23px, 0); }
  80% { clip: rect(43px, 9999px, 12px, 0); }
  100% { clip: rect(76px, 9999px, 54px, 0); }
}

@keyframes glitch-line-anim {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right; }




/* Profile Image Container */
.profile-image-container {
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Profile Image Styling */
.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

/* Hover Effect */
.profile-image:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
}

/* Glow Effect */
.profile-image-container::after {
  content: '';
  position: absolute;
  width: 105%;
  height: 105%;
  border-radius: 25px;
  border: 2px solid var(--accent-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.profile-image-container:hover::after {
  opacity: 0.6;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 0.3; }
  100% { opacity: 0.6; }
}






}</pre></body></html>