@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

body {
  font-family: "Vazirmatn", sans-serif;
  background: linear-gradient(160deg, #000000, #1a1a1a 60%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 20px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.profile-pic {
  width: 150px;
  height: 110px;
  margin: auto;
  display: block;
}

.name {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 15px;
}

.role {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 5px;
}

.intro {
  text-align: center;
  font-size: 0.85rem;
  color: #ddd;
  margin-top: 15px;
  line-height: 1.4;
}

.tabs {
  display: flex;
  gap: 5px;
  margin-top: 20px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 0.8rem;
  cursor: pointer;
}

.tab.active {
  background: #e70103;
}

.links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.link-btn:hover {
  background: rgba(231, 1, 3, 0.7);
}

.link-btn span {
  font-size: 1.1rem;
}

.video {
  margin-top: 20px;
}

.video-iframe {
  border-radius: 30px;
  overflow: hidden;
}

.banner {
  margin-top: 20px;
}

.banner-img {
  width: 100%;
  border-radius: 12px;
}

.btn-icon {
  font-size: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  color: white;
  font-size: 2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e70103;
}
