* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Klavika;
}

body {
  background: url('bg2.jpg') no-repeat center center fixed;
  background-attachment: scroll;
  background-size: cover;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.profile-card {
  width: 90%;
  max-width: 500px;
  background: rgba(50, 50, 50, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.profile-card {
  position: relative;
  /* Required for positioning notification icon */
  /* ...existing styles */
}

.notification-icon {
  position: absolute;
  top: 15px;
  left: 15px;
}

.menu-icon a {
  text-decoration: none;
}

.menu-icon {
  position: absolute;
  top: 15px;
  right: 15px;
}

.menu-icon .action-btn {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}

.profile-image {
  display: block;
  margin: 40px auto 20px auto;
  /* Top margin gives space below icon */
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}


.profile-header {
  text-align: center;
  margin-bottom: 30px;
}

.profile-header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.profile-header p {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.5;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  background: rgba(70, 70, 70, 0.5);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.social-link:hover {
  background: rgba(90, 90, 90, 0.7);
}

.social-link img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.social-link a {
  flex: 1;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.share-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.share-interface {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(40, 40, 40, 0.95);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 300px;
  z-index: 100;
  display: none;
}

.share-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
  display: none;
}

.share-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.share-header h3 {
  font-size: 18px;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.share-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.share-option img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.share-option span {
  font-size: 12px;
}

.copy-link {
  display: flex;
  margin-top: 15px;
}

.copy-link input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 5px 0 0 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.copy-link button {
  padding: 8px 15px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.notification-terminal {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: rgba(40, 40, 40, 0.95);
  padding: 15px;
  border-radius: 10px;
  width: 90%;
  max-width: 300px;
  display: none;
  z-index: 101;
}

.notification-terminal p {
  font-family: monospace;
  font-size: 14px;
}

.action-buttons {
  display: flex;
  justify-content: space-around;
  width: 90%;
  max-width: 500px;
  padding: 15px 0;
}

.action-btn {
  background: rgba(70, 70, 70, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: rgba(90, 90, 90, 0.7);
}

.action-btn img {
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  .profile-card {
    padding: 20px;
  }

  .profile-header h1 {
    font-size: 24px;
  }

  .profile-header p {
    font-size: 14px;
  }
}