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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.logo-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.3) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.logo {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #141414 0%, rgba(0, 255, 65, 0.1) 100%);
  border: 2px solid #00ff41;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.5), 0 0 30px rgba(0, 255, 65, 0.3), 0 0 45px rgba(0, 255, 65, 0.1);
}
.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.1) 50%, transparent 70%);
  animation: shimmer 3s linear infinite;
}

.logo-text {
  font-size: 48px;
  font-weight: 900;
  color: #00ff41;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.8), 0 0 40px rgba(0, 255, 65, 0.4);
  position: relative;
  z-index: 1;
}

.name {
  font-size: 36px;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.name-line {
  display: inline-block;
  position: relative;
}
.name-line::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff41, transparent);
  animation: underlineGlow 2s ease-in-out infinite;
}

.title {
  font-size: 18px;
  color: #00ff41;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Courier New", monospace;
}

.bracket {
  color: #8a8a8a;
  font-weight: 700;
}

.title-text {
  padding: 0 8px;
}

.domain {
  margin-top: 15px;
}

.domain-link {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 14px;
  transition: color, text-shadow;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.domain-link:hover {
  color: #00ff41;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.link-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 18px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform, border-color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.link-card:hover {
  transform: translateY(-3px);
  border-color: #00ff41;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 65, 0.3), 0 0 30px rgba(0, 255, 65, 0.1);
}
.link-card:hover::before {
  transform: translateX(100%);
}
.link-card:hover .link-arrow {
  transform: translateX(5px);
}
.link-card:active {
  transform: translateY(-1px);
}

.link-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.link-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}

.link-arrow {
  font-size: 20px;
  color: #00ff41;
  transition: transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.social {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 50%;
  transition: color, border-color, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icon svg {
  width: 20px;
  height: 20px;
}
.social-icon:hover {
  color: #00ff41;
  border-color: #00ff41;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.5), 0 0 16px rgba(0, 255, 65, 0.3), 0 0 24px rgba(0, 255, 65, 0.1);
}

.actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.qr-container {
  text-align: center;
}

.qr-code {
  width: 80px;
  height: 80px;
  background: #e0e0e0;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  border: 2px solid #00ff41;
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.5), 0 0 16px rgba(0, 255, 65, 0.3), 0 0 24px rgba(0, 255, 65, 0.1);
}

.qr-placeholder {
  width: 100%;
  height: 100%;
  color: #0a0a0a;
}

.qr-label {
  font-size: 12px;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vcard-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid #00ff41;
  color: #00ff41;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.vcard-btn svg {
  width: 18px;
  height: 18px;
}
.vcard-btn:hover {
  background: rgba(0, 255, 65, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 65, 0.3), 0 0 30px rgba(0, 255, 65, 0.1);
}
.vcard-btn:active {
  transform: translateY(0);
}

.footer {
  margin-top: auto;
  padding-top: 30px;
  text-align: center;
}

.footer-text {
  font-size: 14px;
  color: #8a8a8a;
}

.heart {
  color: #ff4444;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.code {
  color: #00ff41;
  font-family: "Courier New", monospace;
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(200%) rotate(45deg);
  }
}
@keyframes underlineGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}
@media (max-width: 480px) {
  .container {
    padding: 40px 16px;
  }
  .name {
    font-size: 28px;
  }
  .title {
    font-size: 16px;
  }
  .logo-container {
    width: 100px;
    height: 100px;
  }
  .logo-text {
    font-size: 40px;
  }
  .link-card {
    padding: 16px 20px;
  }
  .actions {
    gap: 20px;
  }
}/*# sourceMappingURL=styles.css.map */