/* == СПИСОК ДОСЯГНЕНЬ == */

	.achievement-list {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.achievement-list li {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 15px;
		border-radius: 5px;
		margin-bottom: 10px;
		transition: background-color 0.3s;
	}

	.achievement-list li:nth-child(odd) {
		background: rgba(255, 255, 255, 0.5);
	}

	.achievement-list li:nth-child(even) {
		background: rgba(255, 247, 232, 0.8);
	}

	.achievement-list li:hover {
		background: #f5e2c7;
	}

	.achievement-details {
		flex: 1;
		margin-left: 15px;
	}

	.achievement-name {
		font-size: 1.1rem;
		font-weight: bold;
		color: #3a2a16;
	}

	.achievement-date,
	.achievement-players {
		font-size: 0.9rem;
		color: #6b4e2f;
		margin-top: 2px;
	}

	.achievement-percentage {
		font-size: 1.2rem;
		font-weight: bold;
		color: #80390f;
		text-align: right;
	}

	.achievement-icon {
		font-size: 1.5rem;
		color: #9c7845;
	}

	@keyframes softGlow {
	  0%, 100% {
		box-shadow: 0 0 10px rgba(255, 223, 0, 0.6), 0 0 20px rgba(255, 223, 0, 0.4), 0 0 30px rgba(255, 223, 0, 0.2);
	  }
	  50% {
		box-shadow: 0 0 15px rgba(255, 223, 0, 1), 0 0 25px rgba(255, 223, 0, 0.8), 0 0 40px rgba(255, 223, 0, 0.5);
	  }
	}

	.glowing {
	  animation: softGlow 1.5s ease-in-out infinite;
	}

	.challenge-glow {
		animation: challenge-glow-pulse 2s infinite;
		box-shadow: 0 0 15px rgba(186, 85, 211, 0.8); /* яскраво-фіолетове свічіння */
		border: 1px solid rgba(255, 255, 255, 0.3);
	}

	@keyframes challenge-glow-pulse {
		0%, 100% { box-shadow: 0 0 15px rgba(186, 85, 211, 0.7); }
		50% { box-shadow: 0 0 25px rgba(186, 85, 211, 1); }
	}