/* Additional styles for the updated content */
.mt-4 {
	margin-top: 1.5rem;
}

.mb-5 {
	margin-bottom: 3rem;
}

.text-center {
	text-align: center;
}

/* Hot and Cold Numbers styling */
.result-card h4 {
	color: var(--primary-color);
	margin-top: 15px;
	margin-bottom: 10px;
}

/* Responsible Gaming page styling */
.policy-nav {
	background-color: var(--primary-color);
	padding: 15px 0;
	margin-bottom: 40px;
}

/* Australian lottery specific styles */
.numbers-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.number {
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}

/* Стили для отображения номеров в одну линию без отступов */
.numbers-line {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.number-inline {
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	margin-right: 0;
	border-radius: 0;
}

.number-inline:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.number-inline:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

/* Australian support organizations */
.org-logos {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.org-logos a {
	display: block;
	background-color: white;
	padding: 15px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.org-logos a:hover {
	transform: translateY(-5px);
}

/* Australian lottery jackpot display */
.jackpot-amount {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-top: 15px;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

/* Responsive adjustments for Australian lottery site */
@media (max-width: 768px) {
	.numbers-container {
		justify-content: center;
	}

	.numbers-line {
		justify-content: center;
		flex-wrap: wrap;
	}

	.number-inline {
		border-radius: 0;
		margin: 2px 0;
	}

	.number-inline:first-child {
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
	}

	.number-inline:last-child {
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
	}

	/* Сброс радиусов для случая переноса строки */
	.number-inline:nth-child(4):not(:last-child) {
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
	}

	.number-inline:nth-child(5):not(:first-child) {
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
	}

	/* Australian lottery jackpot display */
	.result-card h4 {
		text-align: center;
	}
}

/* Дополнительные стили для плашки Ответственная Игра */
.responsible-gaming-banner {
	position: relative;
	background: linear-gradient(to right, #e6e6e6, #f0f0f0, #e6e6e6);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.responsible-gaming-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 0, 0, 0.02),
		rgba(0, 0, 0, 0.02) 10px,
		rgba(0, 0, 0, 0) 10px,
		rgba(0, 0, 0, 0) 20px
	);
	z-index: 0;
}

.responsible-gaming-banner .container {
	position: relative;
	z-index: 1;
}

.responsible-gaming-banner .btn-secondary {
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	transition: all 0.3s ease;
	font-weight: 600;
}

.responsible-gaming-banner .btn-secondary:hover {
	background-color: white;
	color: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-2px);
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
	.responsible-gaming-banner {
		padding: 20px 0;
	}

	.banner-content {
		flex-direction: column;
		text-align: center;
	}

	.banner-icon {
		margin-bottom: 15px;
	}

	.banner-text {
		margin-bottom: 15px;
	}
}

/* Responsible Gaming Section styles */
.responsible-text a {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: underline;
	transition: all 0.3s ease;
	padding: 0 2px;
}

.responsible-text a:hover {
	color: #e6b800;
	background-color: rgba(230, 184, 0, 0.1);
	border-radius: 2px;
}
