
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: url('https://filterforge.com/filters/11635.jpg') repeat;
  background-size: 64px;
  color: white;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.header {
  background: linear-gradient(#1c1c1c, #2e2e2e);
  padding: 20px 0;
}

.logo {
  width: 300px;
  max-width: 80%;
}

.main {
  background: rgba(0, 0, 0, 0.8);
  border: 4px solid #00ff80;
  border-radius: 12px;
  margin: 20px auto;
  padding: 30px;
  max-width: 600px;
  box-shadow: 0 0 25px #00ff80;
}

.name {
  font-size: 28px;
  color: #00ff80;
  text-shadow: 0 0 10px #00ff80;
  margin-bottom: 10px;
}

.subtitle {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 25px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(20, 20, 20, 0.9);
  border: 3px dashed #00ff80;
  padding: 20px;
  border-radius: 8px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.label {
  color: #00ff80;
  font-size: 10px;
}

.value {
  color: white;
  font-size: 12px;
}

.footer-text {
  margin-top: 30px;
  font-size: 10px;
  color: #00ff80;
  text-shadow: 0 0 5px #00ff80;
}

.footer {
  background: linear-gradient(#2e2e2e, #1c1c1c);
  padding: 10px 0;
}

.footer-img {
  width: 100%;
  max-width: 600px;
  border-top: 3px solid #00ff80;
}

.invite-text {
  margin-bottom: 25px;
  color: #00ff80;
  font-size: 10px;
  text-shadow: 0 0 8px #00ff80;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  padding: 15px 30px;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  max-width: 280px;
  width: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
