@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  background: #0D0D0D;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: rgba(30, 30, 30, 0.9);
  border: 2px solid #4b4a4a;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  padding: 20px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

.card h2 {
  margin-bottom: 15px;
  font-size: 1rem;
  text-align: center;
  color: #FFD700;
}

.video-js {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.share-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.share-buttons a {
  padding: 10px 16px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer {
  background-color: #303030;
  color: #aaa;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  margin-top: 40px;
}

.footer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}

.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1ebe5d; }

.facebook { background-color: #3b5998; }
.facebook:hover { background-color: #324b82; }

@media (min-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (min-width: 1200px) {
  .card {
    flex: 1 1 calc(33.333% - 40px);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
