* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow: hidden;
}
.experience {
  position: fixed;
  width: 100vw;
  height: 100vh;
}
.contact-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  max-width: 280px;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.status-text {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.9;
}
.contact-message {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  align-self: flex-start;
}
.contact-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-button svg {
  transition: transform 0.3s ease;
}
.contact-button:hover svg {
  transform: translate(2px, -2px);
} /* Language Switcher */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}
.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
/* Responsive design */
@media (max-width: 768px) {
  .contact-card {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
    padding: 16px;
  }
  .contact-message {
    font-size: 13px;
  }
  .contact-button {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/*# sourceMappingURL=main.css.map*/