.prob-result-wrapper {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.prob-fraction {
	font-size: 1rem;
	color: #94a3b8;
}

.table-fraction {
	margin-left: 10px;
}

/* Game Area */
.game-container {
	margin: 30px 0;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	text-align: center;
}

.game-status h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: #fff;
}

.stats-box {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-label {
	font-size: 0.9rem;
	color: #94a3b8;
	margin-bottom: 5px;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: bold;
	color: #00d2ff;
}

.last-result {
	font-size: 1.2rem;
	font-weight: bold;
	min-height: 1.5em;
	color: #fff;
	margin-bottom: 20px;
}

.dice-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.dice-display {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	min-height: 80px;
	align-items: center;
}

.dice-icon {
	font-size: 4rem;
	line-height: 1;
	color: #fff;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.roll-btn {
	background: linear-gradient(135deg, #1e90ff, #00bfff);
	border: none;
	border-radius: 50px;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.roll-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
	background: linear-gradient(135deg, #00bfff, #1e90ff);
}

.roll-btn:active {
	transform: translateY(1px);
}