/* ---- Content section boxes (features / how-to / safety / faqs) ---- */
.yg-section-box {
	font-family: 'Poppins', Arial, sans-serif;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 18px 20px;
	margin-bottom: 16px;
}

.yg-section-heading {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
}

.yg-section-icon svg {
	width: 18px;
	height: 18px;
	fill: #e8151a;
	flex-shrink: 0;
}

.yg-section-body {
	font-size: 14px;
	line-height: 1.7;
	color: #444;
}

.yg-section-body p {
	margin: 0 0 10px;
}

.yg-section-body p:last-child {
	margin-bottom: 0;
}

.yg-section-list {
	margin: 0;
	padding-left: 20px;
}

.yg-section-list li {
	margin-bottom: 8px;
}

.yg-section-list li:last-child {
	margin-bottom: 0;
}

.yg-section-list strong {
	color: #1a1a1a;
}

/* ---- FAQ accordion (native <details>/<summary>, no JS needed) ---- */
.yg-faq-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.yg-faq-item {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px 14px;
}

.yg-faq-item summary {
	cursor: pointer;
	font-weight: 600;
	color: #1a1a1a;
	list-style: none;
	position: relative;
	padding-right: 20px;
}

.yg-faq-item summary::-webkit-details-marker {
	display: none;
}

.yg-faq-item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 18px;
	color: #e8151a;
}

.yg-faq-item[open] summary::after {
	content: '\2212';
}

.yg-faq-answer {
	margin-top: 8px;
	font-size: 13.5px;
	color: #555;
	line-height: 1.6;
}

/* ---- Other Games grid ---- */
.yg-other-games {
	display: grid;
	grid-template-columns: repeat(var(--yg-columns, 2), 1fr);
	gap: 12px;
}

.yg-other-game-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 12px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease;
}

.yg-other-game-card:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.yg-other-game-icon {
	width: 100%;
	aspect-ratio: 1.6 / 1;
	border-radius: 8px;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 8px;
}

.yg-other-game-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yg-other-game-icon span {
	color: #f5c518;
	font-weight: 800;
	font-size: 13px;
}

.yg-other-game-name {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.yg-other-game-cat {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	color: #6d5efc;
	background: #f0eeff;
	padding: 2px 8px;
	border-radius: 999px;
	margin-bottom: 6px;
	align-self: flex-start;
}

.yg-other-game-bonus {
	font-size: 12px;
	color: #16a34a;
	font-weight: 600;
}

.yg-other-game-withdraw {
	font-size: 12px;
	color: #666;
	margin-bottom: 8px;
}

.yg-other-game-btn {
	display: block;
	text-align: center;
	background: #e8151a;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 8px;
	border-radius: 6px;
	margin-top: auto;
}

@media (max-width: 480px) {
	.yg-other-games {
		grid-template-columns: repeat(2, 1fr);
	}
}
