/* Контейнер */
.tot-promocodes-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

/* Карточка */
.promo-card {
	background: #222933;
	color: #fff;
	border-radius: 8px;
	width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s;
}
.promo-card:hover {
	transform: translateY(-4px);
}

/* Лента метки */
.promo-label {
	position: absolute;
	top: 0;
	left: 0;
	background: #00b050;
	color: #fff;
	font-size: 11px;
	text-transform: uppercase;
	padding: 4px 8px;
	font-weight: bold;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	z-index: 2;
}
.promo-card[data-label*="WELCOME"] .promo-label { background: #6a0dad; }
.promo-card[data-label*="ПРИВЕТСТВЕННЫЙ"] .promo-label { background: #e80050; }
.promo-card[data-label*="ПРОМОКОД"] .promo-label { background: #ffaa00; }

/* Картинка */
.promo-image {
	width: 100%;
	height: 100px;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 10px;
	background: #000;
}
.promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Тип бонуса */
.promo-desc {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	margin-bottom: 6px;
}

/* Промокод */
.promo-code {
	font-size: 13px;
	color: #00e1ff;
	background: #111;
	padding: 6px 10px;
	border-radius: 4px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	user-select: all;
}
.promo-code:before {
	content: "📋";
	font-size: 14px;
}

/* Кнопка */
.yellow-button {
	background: #ffaa33;
	color: #000;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	border-radius: 6px;
	padding: 8px 15px;
	width: 100%;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background 0.3s;
	box-shadow: 0 3px 0 #cc8800;
}
.yellow-button:hover {
	background: #ffb84d;
}









.subtitlePROMO {
    padding-bottom: 6px;
	margin: 0 auto;
	margin-bottom: 16px;
	border-bottom: 3px solid #777;
	width: auto;
	color: #131313;
	font-size: 1.6em;
}
.subPROMO {
	padding: 10px 15px;
	background-color: transparent;
	width: 100%;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
}

/* Цвет кнопки и иконок сохроняются */
.bonus-icon {
    margin-right: 6px;
    font-size: 16px;
}
.promo-rating {
    margin: 6px 0;
    font-size: 14px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.promo-rating .star-f {
    color: #ffd700;
}
.promo-rating .star {
    color: rgba(255,215,0,0.5);
}
