.dg-49a65be9-wrapper {
	font-family: sans-serif;
	position: relative;
}
.dg-49a65be9-topbar {
	margin-bottom: 20px;
	background: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
}
.dg-49a65be9-progress-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.dg-49a65be9-progress-container {
	flex-grow: 1;
	height: 10px;
	background: #ddd;
	border-radius: 5px;
	overflow: hidden;
}
.dg-49a65be9-progress-bar {
	height: 100%;
	background: #4caf50;
	transition: width 0.3s ease;
}
.dg-49a65be9-progress-text {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	min-width: 40px;
	text-align: right;
}
.dg-49a65be9-stats, .dg-49a65be9-sum {
	font-size: 14px;
	color: #333;
}
.dg-49a65be9-sum {
	margin-top: 5px;
	font-weight: bold;
}
.dg-49a65be9-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 15px;
}
.dg-49a65be9-item {
	position: relative;
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 3/4;
}
.dg-49a65be9-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.dg-49a65be9-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}
.dg-49a65be9-item.dg-unlocked {
	cursor: pointer;
	animation: shinyEffect49a65be9 1.5s forwards;
}

@keyframes shinyEffect49a65be9 {
	0% { filter: brightness(1); box-shadow: 0 0 0 rgba(255,255,255,0); }
	50% { filter: brightness(1.5); box-shadow: 0 0 20px rgba(255,255,255,0.8); }
	100% { filter: brightness(1); box-shadow: 0 0 0 rgba(255,255,255,0); }
}

.dg-49a65be9-modal {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dg-49a65be9-modal-content {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	max-width: 300px;
	text-align: center;
}
.dg-49a65be9-input {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.dg-49a65be9-modal-error {
	color: red;
	font-size: 12px;
	margin-bottom: 10px;
	min-height: 15px;
}
.dg-49a65be9-btn-submit, .dg-49a65be9-btn-close, .dg-49a65be9-btn {
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	background: #333;
	color: #fff;
	margin: 5px;
	text-decoration: none;
	display: inline-block;
}
.dg-49a65be9-btn-close {
	background: #ccc;
	color: #333;
}
.dg-49a65be9-completion {
	margin-top: 30px;
	text-align: center;
	padding: 20px;
	background: #eef9ee;
	border-radius: 8px;
}

.dg-49a65be9-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dg-49a65be9-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.dg-49a65be9-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.dg-49a65be9-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
}