* {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
* .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
* css-doodle.bg-doodle {
  z-index: -1;
  position: absolute;
  opacity: 0.65;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
* .cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
* div.card {
  position: relative;
  z-index: 555;
  display: flex;
  align-items: center;
}

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

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 90%;
  position: absolute;
}

/* Profile Card */
.profile-card {
  position: absolute;
  padding: 2.5rem;
  background: rgba(30, 41, 59, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: row;
  gap: 5%;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

/* Avatar Styles */
.avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #60a5fa, #a78bfa);
  opacity: 0.8;
}

.avatar-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #60a5fa, #a78bfa);
  border-radius: 50%;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.3s ease;
}

.avatar:hover .avatar-glow {
  opacity: 0.5;
}

.avatar-border {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #60a5fa, #a78bfa) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

/* Profile Info */
.profile-info {
  text-align: center;
}

img.profile-img {
  width: 100%;
}

.name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Bio Section */
.bio {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

/* Skills Section */
.skills {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.skill {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.skill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

/* Action Buttons */
.site-links {
  position: relative;
  width: 100%;
  z-index: 200;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-end;
}

a {
  text-decoration: none;
}

.action-btn {
  flex: 1;
  position: relative;
  padding: 0.8rem;
  border: none;
  border-radius: 0.8rem;
  font-size: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.action-btn span {
  position: relative;
  z-index: 1;
}

.action-btn:hover {
  cursor: pointer;
}

.btn-effect {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}

.primary {
  background: linear-gradient(45deg, rgba(96, 165, 250, 0.1254901961), rgba(167, 139, 250, 0.1254901961));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary .btn-effect {
  background: linear-gradient(45deg, #60a5fa, #a78bfa);
  opacity: 0;
}

.primary:hover .btn-effect {
  opacity: 0.2;
}

.secondary {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary .btn-effect {
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
}

.secondary:hover .btn-effect {
  opacity: 1;
}

/* Card Effects */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 8s infinite;
}

@keyframes shine {
  to {
    left: 200%;
  }
}
.card-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 1.5rem;
  background: linear-gradient(45deg, #60a5fa, #a78bfa) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-card:hover .card-border {
  opacity: 1;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #60a5fa, #a78bfa);
  border-radius: 1.5rem;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.3s ease;
}

.profile-card:hover .card-glow {
  opacity: 0.05;
}

.card {
  position: relative;
  width: 150px;
  height: 160px;
  background: #f00;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #03a9f4, #ff0058);
  filter: blur(10px);
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 105%;
  }
  100% {
    scale: 105%;
  }
}
.card:hover {
  animation: zoom-in-zoom-out 5s ease;
}

.card b {
  position: absolute;
  inset: 6px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.card img {
  position: absolute;
  z-index: 3;
  transition: 0.5s;
  width: 93%;
  height: 80%;
  opacity: 1;
  transform: translate(5px, 3px);
}

.card .content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  transform: scale(0);
  transition: 0.5s;
  transform: scale(1);
}

.content .title {
  position: relative;
  color: #fff;
  font-weight: 500;
  line-height: 1em;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: -3px;
}

.content .title span {
  font-weight: 300;
  font-size: 0.7em;
}

.content .sci {
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.sci li {
  list-style: none;
}

.sci li a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  fill: currentColor;
  background-image: linear-gradient(to left, green, blue, yellow, orange, red);
  --webkit-background-clip: text;
  --moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 0.6rem;
  padding-bottom: 7px;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 1rem;
    position: relative;
  }
  .profile-card {
    padding: 1.5rem;
    flex-wrap: wrap;
    top: 0;
    position: relative;
  }
  .name {
    font-size: 1.5rem;
  }
  .skills {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 10px;
  }
}
/* For Desktop View */
@media screen and (min-width: 1024px) {
  html {
    font-size: 15px;
  }
}
/* For Tablet View */
@media screen and (min-device-width: 600px) and (max-device-width: 760px) {
  html {
    font-size: 12px;
  }
}
/* For Tablet View */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  html {
    font-size: 14px;
  }
}
/* For Mobile Portrait View */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
  html {
    font-size: 8px;
  }
}
/* For Mobile Landscape View */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
  html {
    font-size: 10px;
  }
}
/* For Mobile Phones Portrait or Landscape View */
@media screen and (max-device-width: 640px) {
  html {
    font-size: 10px;
  }
}/*# sourceMappingURL=styles.css.map */