/* Countdown specific styles */
.countdown-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	padding: 1rem;
	width: 100%;
	overflow: hidden;
}

.countdown-timer {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
	width: 100%;
	max-width: 100vw;
	padding: 1rem;
	box-sizing: border-box;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(30, 30, 30, 0.8);
	border-radius: 0.5rem;
	padding: 1.5rem;
	min-width: 120px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-color);
	flex-shrink: 0;
	box-sizing: border-box;
}

.countdown-value {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
	font-family: var(--font-code);
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 1;
}

.countdown-label {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-secondary);
}

/* Simplified mode styles */
.countdown-timer.simple-mode {
	justify-content: center;
}

.countdown-timer.simple-mode .countdown-item {
	min-width: 600px;
	padding: 2rem;
}

/* Notification popup styles */
.notification-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(30, 30, 30, 0.95);
	color: var(--text-primary);
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-color);
	max-width: 90%;
	width: 600px;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	animation: slideUp 0.3s ease-out;
}

.notification-popup p {
	margin: 0;
	padding-right: 15px;
	font-size: 0.9rem;
	line-height: 1.4;
}

.notification-popup .close-btn {
	background: none;
	border: none;
	color: var(--text-secondary);
	font-size: 1.2rem;
	cursor: pointer;
	padding: 5px;
	flex-shrink: 0;
	transition: color 0.2s;
}

.notification-popup .close-btn:hover {
	color: var(--accent-color);
}

@keyframes slideUp {
	from {
		transform: translateX(-50%) translateY(100%);
		opacity: 0;
	}

	to {
		transform: translateX(-50%) translateY(0);
		opacity: 1;
	}
}

/* Responsive styles */
@media (max-width: 768px) {
	.countdown-timer {
		gap: 1rem;
		padding: 0.5rem;
		flex-wrap: wrap;
	}

	.countdown-item {
		min-width: 80px;
		padding: 1rem;
	}

	.countdown-value {
		font-size: 3rem;
	}

	.countdown-timer.simple-mode .countdown-item {
		min-width: 90vw;
		padding: 1.5rem;
	}

	.notification-popup {
		width: 90%;
		padding: 12px 15px;
	}

	.notification-popup p {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.countdown-timer {
		gap: 0.5rem;
	}

	.countdown-item {
		min-width: 70px;
		padding: 0.75rem;
	}

	.countdown-value {
		font-size: 2.5rem;
	}

	.notification-popup {
		width: 95%;
		padding: 10px 12px;
	}
}

/* Hidden elements */
.hidden {
	display: none !important;
}

/* Visible elements */
.visible {
	display: block !important;
}