/* PRIZES SOLD TABLE */
.prizes-section {
	padding: 60px 0;
}

.prizes-header-box {
	margin-bottom: 2rem;
}

.prizes-header-content {
	flex: 1;
}

.prizes-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #071829;
	margin-bottom: 0.5rem;
	line-height: 1.2;
	text-align: center;
	display: block;
}

.prizes-subtitle {
	font-size: 1.125rem;
	color: #444;
	text-align: center;
	margin: 0 auto 2rem;
	max-width: 600px;
	font-weight: 500;
	line-height: 1.5;
}

.prizes-highlight {
	display: none;
}

.prizes-count-label {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.9;
	margin-bottom: 0.5rem;
}

.prizes-count-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
}

.prizes-wrapper {
	position: relative;
	background: #fff;
	border: 1px solid #e8ecf0;
	border-radius: 12px;
	margin: 0 auto;
	max-width: 1000px;
	max-height: 600px;
	overflow-y: auto;
	overflow-x: auto;
}

.prizes-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.prizes-table thead {
	background: #f5f5f5;
	position: sticky;
	top: 0;
	z-index: 10;
}

.prizes-table thead th {
	color: #999;
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.75rem;
	border-bottom: 2px solid #e8ecf0;
}

.prizes-table thead th.col-ref {
	text-align: center;
}

.prizes-table thead th.col-amount {
	text-align: right;
}

.prizes-table tbody tr {
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.2s ease;
	background-color: #fff;
}

.prizes-table tbody tr:hover {
	background-color: #fafafa;
}

.prizes-table tbody tr:last-child {
	border-bottom: none;
}

.prizes-table td {
	padding: 1rem;
	vertical-align: middle;
	font-size: 0.9rem;
}

.col-ref {
	width: 12%;
	text-align: center;
}

.col-date {
	width: 50%;
	font-weight: 500;
	color: #333;
}

.col-amount {
	width: 38%;
	text-align: right;
}

.game-cell {
	display: flex;
	align-items: center;
	justify-content: center;
}

.game-logo {
	width: 30px;
	height: 30px;
	object-fit: contain;
	opacity: 0.85;
}

.prize-badge,
.prize-value-large {
	display: inline-block;
	color: #333;
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
}

.prize-category {
	display: block;
	font-size: 0.75rem;
	color: #999;
	text-transform: uppercase;
	margin-top: 0.25rem;
	font-weight: 500;
}

/* Custom scrollbar */
.prizes-wrapper::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.prizes-wrapper::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.prizes-wrapper::-webkit-scrollbar-thumb {
	background: #dfdede;
	border-radius: 10px;
}

.prizes-wrapper::-webkit-scrollbar-thumb:hover {
	background: #0b2540;
}

@media (max-width: 768px) {
	.prizes-wrapper {
		max-height: 550px;
	}

	.prizes-title {
		font-size: 1.5rem;
	}

	.col-ref {
		width: 15%;
	}

	.col-date {
		width: 50%;
	}

	.col-amount {
		width: 35%;
	}

	.prizes-table td {
		padding: 0.875rem 0.75rem;
	}
}

@media (max-width: 480px) {
	.prizes-section {
		padding: 2rem 0.75rem 1.5rem;
	}

	.prizes-wrapper {
		max-height: 450px;
	}

	.prizes-table thead th {
		padding: 0.75rem 0.5rem;
		font-size: 0.7rem;
	}

	.prizes-table td {
		padding: 0.75rem 0.5rem;
		font-size: 0.85rem;
	}

	.col-ref {
		width: 15%;
	}

	.col-date {
		width: 50%;
	}

	.col-amount {
		width: 35%;
	}

	.prize-badge,
	.prize-value-large {
		font-size: 0.8rem;
	}
}
