* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	background-color: #83c59e;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.toast {
	position: fixed;
	top: 20px;
	right: 20px;
	background: rgba(131, 197, 158, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 12px 16px;
	box-shadow: 0 8px 25px rgba(131, 197, 158, 0.3);
	z-index: 1000;
	border: 2px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.2s ease;
}

.toast:hover {
	background: rgba(131, 197, 158, 0.95);
	transform: scale(1.02);
	box-shadow: 0 10px 30px rgba(131, 197, 158, 0.4);
	border-color: rgba(255, 255, 255, 0.5);
}

.toast:active {
	transform: scale(0.98);
}

.toast span {
	color: white;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: 'Courier New', monospace;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 12px;
	border-radius: 8px;
	display: block;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.container {
	text-align: center;
	padding: 2rem;
	max-width: 500px;
	width: 100%;
}

.title {
	font-size: 4rem;
	font-weight: bold;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin-bottom: 2rem;
	letter-spacing: 0.1em;
}

.logo-container {
	margin: 2rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid white;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.join-button {
	background: linear-gradient(145deg, #ffffff, #f0f0f0);
	border: none;
	border-radius: 25px;
	padding: 15px 40px;
	font-size: 1.2rem;
	font-weight: bold;
	color: #83c59e;
	cursor: pointer;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	display: inline-block;
}

.join-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
}

.join-button:active {
	transform: translateY(0);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.separator {
	width: 80%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	margin: 3rem auto;
	border-radius: 1px;
}

/* Create Section Styles */
.create-section {
	margin-top: 3rem;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.create-title {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-section {
	margin-bottom: 2rem;
	text-align: center;
}

.counter-text {
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.counter-number {
	color: white;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: 'Courier New', monospace;
	background: linear-gradient(145deg, #83c59e, #6ba085);
	padding: 8px 16px;
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 15px rgba(131, 197, 158, 0.3);
	margin-left: 8px;
	display: inline-block;
	min-width: 60px;
	text-align: center;
}

.pilly-container {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.2);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 15px;
	margin: 2rem auto;
	display: block;
	backdrop-filter: blur(5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.color-selector {
	margin-top: 2rem;
	text-align: center;
}

.color-title {
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.color-options {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 400px;
	margin: 0 auto;
}

.color-option {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	border: 3px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.color-option:hover {
	transform: scale(1.1);
	border-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.color-option.selected {
	border-color: #83c59e;
	border-width: 4px;
	transform: scale(1.15);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.upload-section {
	margin-top: 2rem;
	text-align: center;
}

.upload-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.file-input {
	display: none;
}

.upload-button {
	background: linear-gradient(145deg, #ffffff, #f0f0f0);
	border: none;
	border-radius: 20px;
	padding: 10px 25px;
	font-size: 1rem;
	font-weight: bold;
	color: #83c59e;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-block;
}

.upload-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
	background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
}

.upload-button:active {
	transform: translateY(0);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.download-section {
	margin-top: 2rem;
	text-align: center;
}

.download-button {
	background: linear-gradient(145deg, #83c59e, #6ba085);
	border: none;
	border-radius: 25px;
	padding: 15px 40px;
	font-size: 1.2rem;
	font-weight: bold;
	color: white;
	cursor: pointer;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.download-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	background: linear-gradient(145deg, #6ba085, #5a8a6f);
}

.download-button:active {
	transform: translateY(0);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
	.title {
		font-size: 3rem;
	}

	.logo {
		width: 150px;
		height: 150px;
	}

	.join-button {
		padding: 12px 30px;
		font-size: 1rem;
	}

	.create-title {
		font-size: 2rem;
	}

	.pilly-container {
		width: 250px;
		height: 250px;
	}

	.create-section {
		margin-top: 2rem;
		padding: 1.5rem;
	}
}

/* Notice Section Styles */
.notice-section {
	margin-top: 3rem;
	text-align: center;
}

.notice-content {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 1rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	display: inline-block;
}

.notice-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 500;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	line-height: 1.4;
}

/* Responsive notice */
@media (max-width: 768px) {
	.notice-content {
		padding: 0.8rem 1.5rem;
	}

	.notice-text {
		font-size: 0.8rem;
	}
}