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

body {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://i.postimg.cc/wvKk8zS1/IMG-20250411-211325.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.container {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  margin-top: 20px;
  padding: 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 600px) {
  .container{
    max-width: 40%;
  }
}

.container .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 nisbati uchun */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* xohlasang yumaloqlik ber */
  box-shadow: 0 0 10px rgba(0,0,0,0.3); /* optional */
}

.container .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 15px;
}

.name {
  font-size: 24px;
  margin-bottom: 5px;
}

.bio {
  font-size: 14px;
  margin-bottom: 25px;
}

.links a {
  display: block;
  background-color: white;
  color: #333;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  margin: 10px 0;
  font-weight: bold;
  transition: all 0.3s ease;
}

.links a:hover {
  background-color: #ddd;
  transform: scale(1.03);
}