.bank-title {
	display: block;
	width: 100%;
	height:28px;
	 line-height: 28px;
	margin-bottom: 20px;
	font-size: x-large;
	color:#B5FFFF;
	font-weight: bold;
	text-align: center;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../img/blurred_background.png");
}

.tile {
	flex: 1 1 calc(33.333% - 60px);
	width: 138px;
	height: 155px;
    background-position: center;
	background: 
				linear-gradient(to bottom, transparent calc(100% - 40px), #0E74AD 40px),
				linear-gradient(90deg, rgba(18,45,66,1) 0%, rgba(38,32,38,1) 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
	cursor: pointer;
}

.tiles-container {
    display: flex;
    flex-flow: row wrap;
	justify-content: center;
    gap: 20px;
}

.img {
	width: 100%;
	height:108px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../img/bank_crystal.png");
}

.crystal {
	font-size: large;
	color:#B5FFFF;
	font-weight: bold;
	text-align: center;
	.text {
		color:#00A1FB;
	}
}

.bonus {
	min-height: 16px;
	color:#FEF787;
	font-weight: bold;
	text-align: right;
	margin-right: 10%;
	margin-top: 5px;
}

.price {
	display: block;
	margin-top: 20px;
	font-size: large;
	text-align: center;
}

.avatar-name {
	margin: 20px 0 20px 0;
	display: flex;
	width: 100%;
	height: 100%;
	text-align: center;
	justify-content: center;
	input {
	  display: block;
	  text-align: center;
	  width: 170px;
	  height: 1.5rem;
	  padding: 0.375rem 0.75rem;
	  font-size: large;
	  font-weight: bold;
	  color: #212529;
	  background-color: #fff;
	  background-clip: padding-box;
	  border: 1px solid #bdbdbd;
	  border-radius: 0.25rem;
	  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	}
}

.payment_success {
	margin: 25% 0 50% 0;
	text-align: center;
	width: 100%;
	font-size: large;
}

.info {
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: small;
	text-align: center;
}

.back-link {
	display: inline-block;
	margin-bottom: 30px;
	color: #972b4e;
	font-weight: 700;
	text-decoration: none;
}

.back-link:hover {
	opacity: 0.8;
}

/* Адаптивные стили */
@media all and (max-width: 768px) {
	.tiles-container {
		gap: 15px;
	}
	
	.tile {
		flex: 1 1 calc(50% - 15px);
		min-width: 140px;
		max-width: 180px;
	}
	
	.bank-title {
		font-size: large;
		padding: 0 10px;
	}
	
	.avatar-name input {
		width: 100%;
		max-width: 250px;
	}
	
	.info {
		font-size: x-small;
		padding: 0 10px;
	}
	
	.info span {
		display: block;
		margin: 5px 0;
	}
}

@media all and (max-width: 480px) {
	.tile {
		flex: 1 1 100%;
		max-width: 200px;
		width: 100%;
	}
	
	.tiles-container {
		gap: 10px;
	}
	
	.bank-title {
		font-size: medium;
		height: auto;
		padding: 10px;
	}
	
	.crystal {
		font-size: medium;
	}
	
	.price {
		font-size: medium;
	}
	
	.avatar-name input {
		font-size: medium;
	}
}