:root {
	--sgrho-blue: #2041A5;
	--sgrho-gold: #FFD700;
	--text-dark: #1f2937;
	--bg-light: #f5f7fb;
}

* {
	box-sizing: border-box;
}

body {  
	margin: 0;
	font-family: "Segoe UI", Arial, sans-serif;
	background: linear-gradient(135deg,var(--sgrho-blue) 0%,#2f56d8 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.card {
	background: #ffffff;
	max-width: 800px;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.header {
	background: var(--sgrho-blue);
	color: #fff;
	text-align: center;
	padding: 2.5rem 2rem;
	border-bottom: 6px solid var(--sgrho-gold);
}

.logo-circle {
	width: 90px;
	height: 90px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--sgrho-gold);
	color: var(--sgrho-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
}

.header h1 {
	margin: 0;
	font-size: 2rem;
}

.header p {
	margin-top: 0.75rem;
	opacity: 0.95;
}

.content {
	padding: 3rem 2rem;
	text-align: center;
	color: var(--text-dark);
}

.content p {
	font-size: 1.25rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
}

.highlight {
	color: var(--sgrho-blue);
	font-weight: 700;
}

.portal-name {
	color: var(--sgrho-blue);
	font-weight: 700;
}

.countdown-container {
	margin: 2rem auto;
	padding: 1.5rem;
	background: #f8fafc;
	border: 2px solid var(--sgrho-gold);
	border-radius: 12px;
}

.countdown-title {
	color: var(--sgrho-blue);
        font-weight: 700;
	margin-bottom: 1rem;
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.time-box {
	min-width: 90px;
	background: var(--sgrho-blue);
	color: #ffffff;
	padding: 1rem;
	border-radius: 10px;
}

.time-value {
	font-size: 2rem;
	font-weight: 700;
}

.time-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.9;
}

.footer {
	background: #fafafa;
	padding: 1.5rem;
	text-align: center;
	border-top: 1px solid #e5e7eb;
	color: #6b7280;
}

.gold-divider {
        width: 100px;
	height: 4px;
	background: var(--sgrho-gold);
	margin: 2rem auto;
	border-radius: 999px;
}

@media (max-width: 600px) {
	.time-box {
		min-width: 70px;
	}

	.time-value {
		font-size: 1.5rem;
	}

	.header h1 {
		font-size: 1.6rem;
	}
}