* {
	margin: 0;
	padding: 0
}

:root {
	--color-primary: #fd9abe;
	--color-secondary: #ffbad5;
	--color-tertiary: #f7dce7;
	--color-accent: #ffe5f0;
	--color-background: #fff4fa;
	--color-gradient: linear-gradient(135deg, #fdc8df, #fdc8df 35%, #ffe5f0 70%, #ffe5f0)
}

body {
	background-attachment: fixed;
	background: var(--color-tertiary);
	background-image: linear-gradient(hsla(0, 0%, 100%, .7) .1em, transparent 0), linear-gradient(90deg, hsla(0, 0%, 100%, .7) .1em, transparent 0);
	background-size: 2em 2em;
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	flex-direction: column;
	height: 100vh !important;
	height: 100dvh !important;
	letter-spacing: 1px;
	overflow: hidden !important;
	position: fixed !important;
	width: 100vw !important;
	width: 100dvw !important;
	scrollbar-gutter: stable both-edges
}


.loading-screen,
.pet-icon,
.selected-pet-info,
.user-avatar,
.user-info-container,
.user-info-display,
.user-info-display .user-avatar,
body {
	align-items: center;
	display: flex;
	justify-content: center
}

.loading-screen {
	background: linear-gradient(135deg, var(--color-primary) 0, var(--color-secondary) 50%, var(--color-accent) 100%);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	transition: opacity .5s;
	width: 100%;
	z-index: 10000
}

.loading-content {
	color: #fff;
	text-align: center;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, .8)
}

.loading-logo {
	animation: 2s ease-in-out infinite pulse;
	font-size: 80px;
	margin-bottom: 20px
}

.loading-text {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 30px;
	text-shadow: 3px 3px 8px rgba(0, 0, 0, .8)
}

.loading-bar {
	background: hsla(0, 0%, 100%, .3);
	border-radius: 4px;
	height: 8px;
	overflow: hidden;
	width: 300px
}

.loading-progress {
	animation: 3s ease-in-out loadingProgress;
	background: linear-gradient(90deg, #27ae60, #2ecc71);
	height: 100%
}

@keyframes loadingProgress {
	0% {
		width: 0
	}

	to {
		width: 100%
	}
}
/* CPABuild modern offer cards */
.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-card-modern {
  background: linear-gradient(135deg, #ffe9f2 0%, #ffe2d1 100%);
  border: 3px solid #f6b5cd;
  border-radius: 28px;
  padding: 16px 20px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 10px 18px rgba(255, 107, 160, 0.12);
  cursor: pointer;
  transition: transform .12s ease-out, box-shadow .12s ease-out;
}

.offer-card-modern:nth-child(odd) {
  background: linear-gradient(135deg, #ffeef7 0%, #ffe1ff 100%);
}

.offer-card-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 107, 160, 0.22);
}

.offer-left {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
}

.offer-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: radial-gradient(circle, #ffffff 0%, #ffd7e2 100%);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ff5e7a;
  font-size: 20px;
  box-shadow: 0 6px 14px rgba(255, 92, 137, 0.25);
  flex-shrink: 0;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2c3144;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.offer-desc {
  font-size: 0.78rem;
  color: rgba(10, 15, 30, 0.65);
}

.offer-tags {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.offer-tag {
  font-size: 0.65rem;
  padding: 4px 10px 3px;
  border-radius: 999px;
  font-weight: 600;
}

.offer-tag.success {
  background: #29c26f;
  color: #fff;
}

.offer-tag.time {
  background: rgba(246, 164, 185, 0.23);
  color: #c33e6b;
}

.offer-tag.country {
  background: rgba(65, 124, 255, 0.12);
  color: #5a70c6;
}

.offer-right {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #ff6b90;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.offer-card-modern:active {
  transform: scale(.993);
}
.offer-icon.offer-icon--img {
  background: #fff;
  padding: 6px;
}

.offer-icon.offer-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

