/**
 * Frontend styles for Topbar Countdown Notice
 */

.antitoco-topbar {
	position: relative;
	width: 100%;
	z-index: 9999;
	padding: 12px 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 14px;
	line-height: 1.6;
}

.antitoco-topbar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

.antitoco-content {
	text-align: center;
}

.antitoco-content p {
	margin: 0;
	padding: 0;
}

.antitoco-content a {
	color: inherit;
	text-decoration: underline;
}

.antitoco-content a:hover {
	opacity: 0.8;
}

.antitoco-countdown-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.antitoco-countdown-prefix {
	font-weight: 500;
}

.antitoco-countdown {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.antitoco-link {
	display: inline-block;
	padding: 8px 20px;
	background-color: rgba(255, 255, 255, 0.2);
	color: inherit;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.3s ease, transform 0.2s ease;
	flex-shrink: 0;
}

.antitoco-link:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
	color: inherit;
}

.antitoco-link:active {
	transform: translateY(0);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
	.antitoco-topbar {
		padding: 10px 15px;
		font-size: 13px;
	}
	
	.antitoco-topbar-inner {
		flex-direction: column;
		gap: 10px;
	}
	
	.antitoco-content {
		text-align: center;
	}
	
	.antitoco-countdown {
		font-size: 14px;
	}
	
	.antitoco-link {
		padding: 6px 16px;
		font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	.antitoco-topbar {
		padding: 8px 12px;
		font-size: 12px;
	}
	
	.antitoco-countdown-wrapper {
		flex-direction: column;
		gap: 4px;
		text-align: center;
	}
	
	.antitoco-countdown {
		font-size: 13px;
	}
}

