* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;

  min-height: 100vh;
}

/* HEADER */
.profile-header {
  background: linear-gradient(90deg, #ee4d2d, #ff7337);

  color: white;

  padding: 25px 7%;

  display: flex;
  align-items: center;
  gap: 30px;
}

.back-btn {
  color: white;

  text-decoration: none;

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s;
}

.back-btn:hover {
  opacity: 0.7;
}

/* PROFILE */
.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 80px 20px;
}

.profile-card {
  background: white;

  width: 100%;
  max-width: 450px;

  padding: 40px;

  border-radius: 30px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.profile-image {
  width: 130px;
  height: 130px;

  border-radius: 50%;

  object-fit: cover;

  margin-bottom: 20px;

  border: 5px solid #ee4d2d;
}

.profile-card h2 {
  font-size: 30px;

  margin-bottom: 10px;
}

.profile-card p {
  color: #666;

  margin-bottom: 30px;
}

/* STATS */
.profile-stats {
  display: flex;
  gap: 15px;

  margin-bottom: 30px;
}

.stat-box {
  flex: 1;

  background: #fff7f5;

  padding: 20px;

  border-radius: 20px;
}

.stat-box h3 {
  color: #ee4d2d;

  font-size: 28px;
}

.stat-box span {
  color: #666;

  font-size: 14px;
}

/* BUTTON */
.profile-btn {
  width: 100%;

  padding: 15px;

  border: none;
  border-radius: 15px;

  background: #ee4d2d;

  color: white;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.profile-btn:hover {
  background: #d93f21;
  transform: translateY(-3px);
}
