* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

body {
	background-color: #7de2ec;
	margin: 0;
	min-height: 100%;
	display: block;
	padding-bottom: 0;
}

.container {
	width: 100%;
	max-width: 450px;
	padding: 20px;
	margin: 0 auto;
}

.card {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.card-header {
	background-color: #111;
	color: white;
	padding: 15px;
	text-align: center;
}

.card-header h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 5px;
}

.card-header p {
	font-size: 16px;
	opacity: 0.9;
}

.card-body {
	padding: 15px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.viewers {
	background-color: #f5f5f5;
	border-radius: 30px;
	padding: 10px 15px;
	display: inline-flex;
	align-items: center;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.dot {
	width: 10px;
	height: 10px;
	background-color: #2ecc71;
	border-radius: 50%;
	margin-right: 10px;
}

.viewers p {
	color: #333;
	font-size: 14px;
}

h1 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.3;
	color: #222;
}

.avatars {
	margin: 0 0 25px;
	display: flex;
	justify-content: center;
}

.avatar-group {
	display: flex;
	align-items: center;
}

.avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid white;
	margin-right: -8px;
}

.avatar-group p {
	margin: 0;
	margin-left: 16px;
	color: #4A5568;
	font-size: 14px;
}

h3 {
	text-align: center;
	margin-bottom: 25px;
	font-size: 25px;
	font-weight: 600;
}

.buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 25px;
	width: 100%;
}

.btn {
	padding: 16px 60px;
	border-radius: 8px;
	border: none;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s;
	min-width: 160px;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-yes, .btn-no {
	flex: 1;
	max-width: 200px;
}

.btn-yes {
	background-color: #2ecc71;
	color: white;
}

.btn-no {
	background-color: #ff5252;
	color: white;
}

.btn-call {
	background-color: #5c7cfa;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 15px;
	margin-bottom: 15px;
}

.countdown-container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	height: 24px;
}

.countdown {
	display: none;
	font-size: 18px;
	font-weight: bold;
	color: #e74c3c;
}

.security {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.security-item {
	display: flex;
	align-items: center;
	color: #555;
	font-size: 14px;
	background-color: #f5f5f5;
	padding: 10px 15px;
	border-radius: 30px;
}

.security-item svg {
	margin-right: 8px;
	color: #555;
}

/* Loading section styles */
.loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
}

.spinner {
	width: 64px;
	height: 64px;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-left-color: #5c7cfa;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-text {
	font-size: 18px;
	color: #333;
	margin-bottom: 8px;
}

.loading-subtext {
	font-size: 14px;
	color: #777;
}

/* Results section styles */
.results-container {
	background-color: #f0f9f0;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.congratulations {
	color: #2ecc71;
	font-size: 24px;
	margin-bottom: 10px;
}

.qualify-text {
	font-size: 18px;
	margin-bottom: 15px;
}

.expiry-text {
	color: #e74c3c;
	font-size: 16px;
	margin-bottom: 20px;
}

.agents-text {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: #555;
	font-size: 14px;
}

/* Add these transition styles */
#question-1, #question-2, #loading, #results {
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#question-1.fade-out,
#question-2.fade-out,
#loading.fade-out,
#results.fade-out {
	opacity: 0;
}

#question-2, #loading, #results {
	display: none;
}

#question-2.visible,
#loading.visible,
#results.visible {
	display: block;
}

/* Add media query for larger screens to maintain centered alignment */
@media (min-height: 700px) {
	body {
		align-items: center;
	}
}

/* Remove the security-wrapper */
.security-wrapper {
	display: none;
}