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

body {
	font-family: 'Arial', sans-serif;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	text-align: center;
	background: rgba(40, 44, 52, 0.95);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	max-width: 600px;
	width: 90%;
}

h1 {
	color: #e6e6e6;
	margin-bottom: 2rem;
	font-size: 2.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.joke-container {
	background: #2d3748;
	padding: 1.5rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	border-left: 5px solid #667eea;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#joke {
	font-size: 1.3rem;
	line-height: 1.6;
	color: #e2e8f0;
	font-weight: 500;
}

#joke-btn {
	background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 1.2rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
	font-weight: bold;
}

#joke-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

#joke-btn:active {
	transform: translateY(0);
}

#joke-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	
	#joke {
		font-size: 1.1rem;
	}
	
	.container {
		padding: 1.5rem;
	}
}