.crypto-card {
	height: 300px;
	width: 500px;
	margin: 2rem auto;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #000, #203143);
	color: white;
	position: relative;
}
.wallet-black {
	background: linear-gradient(135deg, #000, #203143);
}
.wallet-silver {
	background: linear-gradient(135deg, #bbbbbb, #dbdbdb);
	color: black;
}
.wallet-gold {
	background: linear-gradient(135deg, #ff7800, #ffeb33);
	color: black;
}

.crypto-card .support {
	top: 20px;
	left: 20px;
	font-size: 0.8rem;
	opacity: 0.8;
}
.crypto-card .brand {
	position: absolute;
	top: 20px;
	right: 20px;
	font-weight: bold;
	font-size: 1.2rem;
}
.crypto-card .address {
	margin-top: 100px;
	font-size: 1.15rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 10px;
	border-radius: 10px;
	text-align: justify;
}
.crypto-card .bottom-info {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.crypto-card .name {
	font-weight: bold;
}
.crypto-card .qr {
	width: 80px;
	height: 80px;
}

.crypto-card .card-gloss {
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	background: radial-gradient(
		circle at center,
		rgba(255, 255, 255, 0.5) 0%,
		/* softer center */ transparent 40%,
		/* subtle mid fade */ transparent 100% /* fully transparent edge */
	);
	will-change: opacity, transform;
	transition: 0.2s opacity ease-out;
	pointer-events: none;
}

@media (max-width: 768px) {
	.crypto-card {
		transform: scale(0.65);
		height: 250px;
		width: 350px;
	}
	.crypto-card .support {
		font-size: 10px;
	}
	.crypto-card .brand {
		/* display: none; */
	}
	.crypto-card .qr {
		width: 50px;
		height: 50px;
	}
	.crypto-card .address {
		margin-top: 70px;
		font-size: 12px;
	}
	.crypto-card .bottom-info {
		font-size: 10px;
	}
}

.card-slider-container {
	width: 90%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	margin: 2rem auto;
}
.card-slider {
	display: flex;
	gap: 1rem;
}
.card-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
}
.card-slider-container .crypto-card {
	transform: scale(0.75);
}

/* .crypto-card:nth-child(3n+1) {
  background: linear-gradient(135deg, #000000, #203143);
}
.crypto-card:nth-child(3n+2) {
  background:linear-gradient(135deg, #000, #203143);
}
.crypto-card:nth-child(3n+3) {
  background: linear-gradient(135deg, #3a4a5c, #556070);
} */
