body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #263238;
	background-image: url(ContacZap.png);
	background-size: cover;
    background-position: center;
	margin: 0;color: #fff;
	user-select: none;
	font-family: Arial, sans-serif;
}
.player {
	display: flex;
	position: relative;
	align-items: center;
	background-color: #005C4B;
	padding: 10px 15px;
	border-radius: 12px;
	box-shadow: 0px 4px 10px #0000004d;
	user-select: none;
	margin-bottom: 10px;
}
.profile-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 10px;
	background-image: url(eu.jpeg);
	background-position: center;
	background-size: contain;
	position: relative;
}
.profile-img img {
	position: absolute;
	bottom: -2px;
	right: -5px;
}
.bars {
	display: flex;
	gap: 2px;
	margin-right: 10px;
}
.bar {
	width: 3px;
	background-color: #fff;
	border-radius: 5px;
	transform-origin: center;
}
.timer {
	font-size: 1.5em;
	margin-top: -10px;
}
.cards-container {
	display: flex;
	gap: 10px;
	width: 359px;
	margin-bottom: 10px;
}
.card,
.card2 {
	background-color: #005C4B;
	border-radius: 10px;
	padding: 5px;
	width: 50%;
	text-align: center;
	box-shadow: 0px 4px 10px #0000004d;
	position: relative;
}
.card2 {
	width: 100%;
}
.card img,
.card2 img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 7px;
	background-color: #202C33;
	cursor: pointer;
}
.card-text {
	font-size: 1em;
	margin: 5px;
	text-align: left;
}
.horinha {
	position: absolute;
	bottom: 4px;
	right: 5px;
	color: #fffa;
	font-size: 13px;
}
.horinha span {letter-spacing:-6px;margin-right:6px;margin-left:3px}
.reac {
	position: absolute;
	background-color: #263238;
	box-shadow: 0px 4px 10px #0000004d;
	border: #111B21 solid 1px;
	white-space: nowrap;
	color: #9EA3A5;
	padding: 2px 4px;
	border-radius: 50px;
	bottom: -25px;right: 5px;
}
.corpoo {
	border-radius: 20px;
	background-color: #202C33;
	box-shadow: 0px 4px 10px #0000004d;
	padding: 20px;
}
.input-container {
	display: flex;
	align-items: center;
}
input[type="text"] {
	padding: 15px;
	border: none;
	border-radius: 10px;
	font-size: 1em;
	outline: none;
	width: 100%;
	background-color: #2A3942;
	box-shadow: 0px 4px 10px #0000004d;
	color: #fff;
}
input[type="text"]::placeholder {
	color: #fff9;
}
button {
	padding:7px 0 5px 10px;
	background-color: #0000;
	color: #fff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
}
button.disabled {
	background-color: #0000;
	cursor: not-allowed;
}
.input-container a img {
	width:31px;
	margin-right:7px;
	cursor: pointer;
}
.modal {
	position: fixed;
	top: 50%;left: 50%;
	background-color: #202C33;
	border-radius: 10px;
	box-shadow: 0px 4px 10px #0000004d;
	display: none;
	padding: 5px;
	width: 90%;
	max-width: 450px;
	z-index: 1000;
}
.modal.show {
	display: block;opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.modal img {
	width: 100%;
	max-height: 800px;
	border-radius: 7px;
}
.modal .caption {
	color: #fff;
	margin: 10px;
	font-size: 1em;
	text-align: left;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0005;
	display: none;
	z-index: 999;
}
.modal-overlay.show {
	display: block;
}
.close-btn {
	position: absolute;
	top: 0;
	right: 10px;
	background: none;
	border: none;
	font-size: 1.5em;
	color: #fff;
	cursor: pointer;
}