.progress-container {
	max-width: 500px;
	margin: 40px auto 10px;
	position: relative;
	clear: both;
}
.milestone, .milestone-dot{
	z-index: 2;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.milestone {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.milestone-dot {
	width: 8px;
	height: 8px;
	border: 2px solid #CDDC39;
	border-radius: 50%;
	position: absolute;
	background: #2dc734;
	top: -3px;
}
.milestone-label {
	position: absolute;
	top: 15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: bold;
	color: #555;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.dark_mode .milestone-label {
	color: #FFF;
}
.progress-thumb {
	position: absolute;
	top: -30px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 3;
	-webkit-transition: left 1.5s 
	cubic-bezier(.34, 1.56, .64, 1);
	transition: left 1.5s 
	cubic-bezier(.34, 1.56, .64, 1);
}
.progress-percentage {
	background: #8BC34A;
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 2px 10px rgba(184, 233, 134, .5);
	box-shadow: 0 2px 10px rgba(184, 233, 134, .5);
	position: relative;
	white-space: nowrap;
	-webkit-animation: pulseScale 2s infinite alternate;
	animation: pulseScale 2s infinite alternate;
}
.progress-percentage:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-width: 5px;
	border-style: solid;
	border-color: #8BC34A transparent transparent transparent;
}
.progress-percentage-stamina {
	background: #03a9f4;
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 2px 10px rgb(33 150 243 / 46%);
	box-shadow: 0 2px 10px rgb(33 150 243 / 46%);
	position: relative;
	white-space: nowrap;
	-webkit-animation: pulseScale 2s infinite alternate;
	animation: pulseScale 2s infinite alternate;
}
.progress-percentage-stamina:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-width: 5px;
	border-style: solid;
	border-color: #03a9f4 transparent transparent transparent;
}
.progress-bar {
	border-radius: 15px;
}
.wagered-info {
	max-width: 520px;
	margin: 20px auto 0px;
	height: 30px;
}
.wagered-label {
	float: left;
	margin-left: 10px;
}
.target-label {
	float: right;
	margin-right: 10px;
}
.survey-list {
	margin-bottom: 20px;
	margin-top: 20px;
}
.survey-card {
	border: 1px solid #ddd;
	border-radius: 15px;
	padding: 20px 10px;
	background: #fff;
	height: 100px;
	text-align: center;
	box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 6px;
	transition: all 0.2s ease-in-out;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}
.survey-card:hover {
	transform: scale(1.05);
	box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 12px;
}

.survey-card img {
	max-height: 35px;
	margin-bottom: 5px;
}

.survey-card p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
}
.survey-card.active {
	 border: 2px solid #FF9800;
	 box-shadow: rgb(255 152 0 / 34%) 4px 4px 10px;
}
.dark_mode .survey-card {
	color: #333 !important;
}
.survey-stats-container {
	background: #FFF;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid #DDD;
	width: 100%;
	max-width: 600px;
	margin: 20px auto;
}

.survey-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.survey-stats-card {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.survey-stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.survey-stats-card.active {
  background: rgb(217 237 247);
  border-color: rgb(156 231 241);
}

.survey-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.survey-value {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
}

.survey-sub {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

.survey-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.survey-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.survey-header a {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}

.survey-header a:hover {
  text-decoration: underline;
}

.promo-ribbon {
  position: absolute;
  top: 12px;
  right: -32px; 
  transform: rotate(45deg);
  background: #f44336;
  color: #fff;
  padding: 3px 35px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  pointer-events: none;
}