/* Profile Card */
.profile-card {
  font-family: "Inter", sans-serif;
  color: #0d1b54;
  margin: 20px auto;
  max-width: 720px;
}
/* Tabs */
.tabs ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #eee;
}
.tabs ul li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #444;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
}
.tabs ul li a.active {
  background: #0d1b54;
  color: #fff;
}

/* Tab Panes */
.tab-contents .tab-pane {
  display: none;
  padding: 20px 0;
}
.tab-contents .tab-pane.active {
  display: block;
}

/* Header */
.profile-header {
  text-align: center;
  margin-bottom: 20px;
}
.profile-header .user-avatar img {
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.profile-header .username {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}
.stats div {
  text-align: center;
}
.stats strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.stats span {
  font-size: 14px;
  color: #555;
}

/* Progress */
.progress-bar {
  margin: 20px 0;
}

/* Earning Preview */
.earning-preview {
  margin: 30px 0;
}
.earning-preview h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Tabs */
.tabs ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #eee;
}
.tabs ul li {
  margin-right: 15px;
}
.tabs ul li a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px 6px 0 0;
  text-decoration: none;
  color: #0d1b54;
  font-weight: 600;
}
.tabs ul li a.active {
  background: #0d1b54;
  color: #fff;
}

/* Tab Content */
.tab-contents {
  padding: 20px 0;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
