
body {
	background: linear-gradient(180deg, #1e3c1b 0%, #6e9c3a 100%);
	font-family: 'Segoe UI', Arial, sans-serif;
	margin: 0;
	color: #fff6d6;
}
.header {
	background: #245c1a url('../img/bg-header.png') repeat-x top;
	padding: 0;
	box-shadow: 0 2px 8px #0008;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
}
.header .logo {
	display: flex;
	align-items: center;
	font-size: 2.2rem;
	font-weight: bold;
	color: #ffe36e;
	letter-spacing: 2px;
	text-shadow: 2px 2px 0 #2d2d2d, 0 0 8px #000a;
}
.header .logo img {
	height: 60px;
	margin-right: 16px;
}
.header .saldo {
	background: #3e5c1a;
	color: #ffe36e;
	padding: 8px 18px;
	border-radius: 8px;
	font-size: 1.1rem;
	margin-right: 12px;
	font-weight: bold;
}
.header .btns button {
	background: linear-gradient(180deg, #ffb14a 0%, #e74c3c 100%);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: bold;
	margin-left: 10px;
	padding: 8px 22px;
	cursor: pointer;
	box-shadow: 0 2px 6px #0005;
	transition: background 0.2s;
}
.header .btns .depositar {
	background: linear-gradient(180deg, #4caf50 0%, #388e3c 100%);
}
.header .btns .sair {
	background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
}
.menu {
	background: #7a4c1a;
	display: flex;
	justify-content: center;
	padding: 0;
	font-size: 1.1rem;
	font-weight: bold;
	box-shadow: 0 2px 8px #0005;
}
.menu a {
	color: #ffe36e;
	text-decoration: none;
	padding: 18px 32px;
	display: inline-block;
	transition: background 0.2s;
}
.menu a:hover {
	background: #a05c1a;
}
.banner {
	background: #a05c1a;
	color: #ffe36e;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	padding: 18px 0 10px 0;
	letter-spacing: 1px;
	border-bottom: 2px solid #ffe36e;
	margin-bottom: 12px;
}
.main {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	margin: 0 auto;
	max-width: 1200px;
	padding: 24px 0 0 0;
}
.left-panel, .right-panel {
	background: #3e5c1a;
	border-radius: 12px;
	box-shadow: 0 2px 8px #0005;
	padding: 18px 18px 12px 18px;
	min-width: 260px;
	max-width: 320px;
}
.left-panel {
	margin-right: 0;
}
.right-panel {
	margin-left: 0;
}
.center-panel {
	background: #f7e6b0;
	color: #3e5c1a;
	border-radius: 12px;
	box-shadow: 0 2px 8px #0005;
	padding: 24px 32px 32px 32px;
	min-width: 420px;
	max-width: 520px;
	margin: 0 0 24px 0;
}
.center-panel label {
	color: #3e5c1a;
	font-weight: bold;
	margin-bottom: 4px;
	display: block;
}
.center-panel select, .center-panel input {
	width: 100%;
	padding: 8px 10px;
	margin-bottom: 14px;
	border-radius: 6px;
	border: 1px solid #bfa76a;
	font-size: 1.1rem;
	background: #fffbe6;
	color: #3e5c1a;
}
.center-panel button {
	background: linear-gradient(180deg, #388e3c 0%, #2e7d32 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1.3rem;
	font-weight: bold;
	padding: 14px 0;
	width: 100%;
	margin-top: 8px;
	box-shadow: 0 2px 8px #0005;
	cursor: pointer;
	transition: background 0.2s;
}
.center-panel button:hover {
	background: #2e7d32;
}
.tabela-animais {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-top: 8px;
}
.tabela-animais .animal {
	background: #fffbe6;
	color: #3e5c1a;
	border-radius: 6px;
	text-align: center;
	font-size: 0.95rem;
	font-weight: bold;
	padding: 6px 2px 2px 2px;
	box-shadow: 0 1px 4px #0002;
}
.tabela-animais .animal img {
	width: 38px;
	height: 38px;
	margin-bottom: 2px;
}
.promocao {
	background: linear-gradient(90deg, #ffb14a 0%, #ffe36e 100%);
	color: #a05c1a;
	border-radius: 8px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 18px 0 0 0;
	padding: 12px 0 8px 0;
	box-shadow: 0 2px 8px #0003;
}
.resultados, .premios {
	background: #fffbe6;
	color: #3e5c1a;
	border-radius: 8px;
	margin-top: 12px;
	padding: 10px 12px;
	font-size: 1.1rem;
	font-weight: bold;
	box-shadow: 0 1px 4px #0002;
}
.resultados ul, .premios ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.resultados li, .premios li {
	margin-bottom: 4px;
	font-size: 1.1rem;
}
.resultados li span, .premios li span {
	color: #bfa76a;
	font-weight: bold;
}
