/* Main Navigation Bar */
.main-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	background: rgba(255,255,255,0.92);
	border-radius: 18px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	padding: 16px 0 12px 0;
	margin: 0 auto 24px auto;
	max-width: 900px;
}
.nav-link {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.15rem;
	color: #ff6f61;
	text-decoration: none;
	padding: 6px 18px;
	border-radius: 8px;
	transition: background 0.18s, color 0.18s;
}
.nav-link:hover {
	background: #ff6f61;
	color: #fff;
}
.nav-active {
	background: #ff6f61;
	color: #fff;
	font-weight: bold;
	cursor: default;
}
/* Mini-Games Page Styles */
.minigames-container {
	max-width: 900px;
	margin: 40px auto 0 auto;
	background: rgba(255,255,255,0.97);
	border-radius: 32px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	padding: 40px 24px 32px 24px;
}
.minigames-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.3rem;
	color: #ff6f61;
	text-align: center;
	margin-bottom: 10px;
}
.minigames-intro {
	text-align: center;
	font-size: 1.15rem;
	color: #4a4a4a;
	margin-bottom: 32px;
}
.daily-bonus {
	background: linear-gradient(90deg, #ffe082 0%, #ff6f61 100%);
	border-radius: 24px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	padding: 24px 18px;
	display: flex;
	align-items: center;
	margin-bottom: 32px;
	gap: 18px;
	flex-wrap: wrap;
	justify-content: center;
}
.daily-bonus-icon {
	font-size: 2.8rem;
	margin-right: 12px;
}
.daily-bonus-content {
	flex: 1;
	min-width: 220px;
}
.daily-bonus-title {
	font-size: 1.3rem;
	font-family: 'Montserrat', sans-serif;
	color: #d84315;
	margin-bottom: 4px;
}
.daily-bonus-desc {
	color: #4a4a4a;
	font-size: 1.05rem;
	margin-bottom: 6px;
}
.daily-bonus-rewards {
	font-size: 1.05rem;
	color: #388e3c;
	margin-bottom: 8px;
}
.daily-bonus-play {
	background: #ff6f61;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 28px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 4px;
}
.daily-bonus-play:hover {
	background: #e55d50;
}
.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.game-card {
	background: #f7cac9;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	padding: 22px 18px 18px 18px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.2s;
	position: relative;
}
.game-card:hover {
	transform: scale(1.04);
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.game-icon {
	font-size: 2.5rem;
	margin-bottom: 8px;
}
.game-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.15rem;
	color: #ff6f61;
	margin-bottom: 4px;
}
.game-desc {
	color: #4a4a4a;
	font-size: 1rem;
	margin-bottom: 8px;
}
.game-rewards {
	font-size: 0.98rem;
	color: #388e3c;
	margin-bottom: 10px;
}
.game-play {
	background: #ff6f61;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 8px 22px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: auto;
}
.game-play:hover {
	background: #e55d50;
}
@media (max-width: 600px) {
	.minigames-container {
		padding: 18px 4px;
	}
	.daily-bonus {
		flex-direction: column;
		align-items: flex-start;
	}
	.games-grid {
		grid-template-columns: 1fr;
	}
}

/* Dashboard page specific styles */
.dashboard-bg {
	background: linear-gradient(135deg, #f7cac9 0%, #92a8d1 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dashboard-container {
	background: rgba(255,255,255,0.97);
	border-radius: 32px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	padding: 48px 32px;
	max-width: 400px;
	width: 100%;
	text-align: center;
}
.pet {
	font-size: 80px;
	margin-bottom: 16px;
}
#streak {
	font-size: 24px;
	margin: 20px 0;
}
#growBtn {
	background: #ff6f61;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 32px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
	width: 100%;
	margin-bottom: 12px;
}
#growBtn:hover {
	background: #e55d50;
}
#message {
	color: #4a4a4a;
	font-size: 1rem;
	margin-top: 10px;
}
.login-bg {
	background: linear-gradient(135deg, #f7cac9 0%, #92a8d1 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-container {
	background: rgba(255,255,255,0.97);
	border-radius: 32px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	padding: 48px 32px;
	max-width: 400px;
	width: 100%;
	text-align: center;
}
.login-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	color: #ff6f61;
	margin-bottom: 24px;
}
.form-group {
	margin-bottom: 18px;
	text-align: left;
}
label {
	display: block;
	margin-bottom: 6px;
	color: #4a4a4a;
	font-size: 1rem;
}
input[type="text"], input[type="email"], input[type="password"] {
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 1rem;
	margin-bottom: 6px;
	box-sizing: border-box;
}
.form-btn {
	background: #ff6f61;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 32px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
	width: 100%;
}
.form-btn:hover {
	background: #e55d50;
}
.toggle-link {
	color: #4a4a4a;
	text-decoration: underline;
	cursor: pointer;
	margin-top: 18px;
	display: block;
	font-size: 1rem;
}
.error {
	color: #ff6f61;
	margin-bottom: 12px;
	font-size: 0.95rem;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', Arial, sans-serif;
	background: linear-gradient(135deg, #f7cac9 0%, #92a8d1 100%);
	min-height: 100vh;
}
.showcase-bg {
	background: linear-gradient(135deg, #f7cac9 0%, #92a8d1 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.showcase {
	background: rgba(255,255,255,0.97);
	border-radius: 32px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	padding: 56px 40px;
	max-width: 600px;
	text-align: center;
	position: relative;
}
.logo {
	font-size: 4rem;
	font-family: 'Montserrat', sans-serif;
	color: #ff6f61;
	margin-bottom: 8px;
}
.trademark {
	font-size: 1.1rem;
	color: #4a4a4a;
	margin-bottom: 24px;
}
h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.7rem;
	color: #4a4a4a;
	margin-bottom: 12px;
}
.features {
	margin: 32px 0 24px 0;
	text-align: left;
}
.features li {
	font-size: 1.15rem;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
}
.features li span {
	font-size: 2rem;
	margin-right: 12px;
}
.cta-btn {
	background: #ff6f61;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 16px 40px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 16px;
}
.cta-btn:hover {
	background: #e55d50;
}
.animal-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}
.animal-card {
	background: #f7cac9;
	border-radius: 16px;
	padding: 10px 18px;
	font-size: 2rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.2s;
}
.animal-card:hover {
	transform: scale(1.1);
}
.login-link {
	display: block;
	margin-top: 32px;
	font-size: 1.1rem;
	color: #4a4a4a;
	text-decoration: underline;
	cursor: pointer;
}
