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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

/* Animated Background Elements - CSS Art */
.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.floating-coffee {
	position: absolute;
	width: 40px;
	height: 40px;
	animation: float 6s ease-in-out infinite;
}

.coffee-cup {
	width: 30px;
	height: 25px;
	background: #8b4513;
	border-radius: 0 0 15px 15px;
	position: relative;
	margin: 10px;
}

.coffee-cup::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 5px;
	right: 5px;
	height: 8px;
	background: #4a2c2a;
	border-radius: 50px 50px 0 0;
}

.coffee-cup::after {
	content: '';
	position: absolute;
	top: 8px;
	right: -8px;
	width: 12px;
	height: 8px;
	border: 3px solid #8b4513;
	border-left: none;
	border-radius: 0 50px 50px 0;
}

.steam {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	animation: steam 2s ease-in-out infinite;
}

.steam::before,
.steam::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 10px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50px;
	animation: steamWave 2s ease-in-out infinite;
}

.steam::after {
	left: 5px;
	animation-delay: 0.5s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

@keyframes steam {
	0%,
	100% {
		opacity: 0.6;
	}

	50% {
		opacity: 1;
	}
}

@keyframes steamWave {
	0% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(2px);
	}

	75% {
		transform: translateX(-2px);
	}

	100% {
		transform: translateX(0);
	}
}

/* Floating Keyboard Keys */
.floating-key {
	position: absolute;
	width: 35px;
	height: 35px;
	background: linear-gradient(145deg, #f0f0f0, #d1d1d1);
	border-radius: 6px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2),
		inset 1px 1px 2px rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #333;
	font-size: 12px;
	animation: keyFloat 4s ease-in-out infinite;
}

@keyframes keyFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	33% {
		transform: translateY(-15px) rotate(2deg);
	}

	66% {
		transform: translateY(-5px) rotate(-1deg);
	}
}

/* Main Container */
.container {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
	min-height: 100vh;
}

/* Header */
.header {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 30px;
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo {
	font-size: 28px;
	font-weight: 800;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.user-profile {
	display: flex;
	align-items: center;
	gap: 15px;
	color: white;
}

.avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notification-bell {
	position: relative;
	width: 24px;
	height: 24px;
	cursor: pointer;
	animation: bellRing 3s ease-in-out infinite;
}

@keyframes bellRing {
	0%,
	90%,
	100% {
		transform: rotate(0deg);
	}

	5%,
	15% {
		transform: rotate(15deg);
	}

	10%,
	20% {
		transform: rotate(-15deg);
	}
}

/* Dashboard Grid */
.dashboard {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto auto;
	gap: 25px;
	margin-bottom: 30px;
}

.widget {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 25px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.widget:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.2);
}

.widget-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.widget-title {
	font-size: 18px;
	font-weight: 600;
	color: white;
}

.widget-icon {
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Welcome Widget - Spans 2 columns */
.welcome-widget {
	grid-column: span 2;
	background: linear-gradient(
		135deg,
		rgba(255, 107, 107, 0.2),
		rgba(238, 90, 36, 0.2)
	);
	position: relative;
}

.welcome-content h2 {
	font-size: 32px;
	color: white;
	margin-bottom: 10px;
	animation: welcomeGlow 2s ease-in-out infinite alternate;
}

@keyframes welcomeGlow {
	from {
		text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
	}

	to {
		text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
	}
}

.welcome-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.6;
}

/* Quick Stats */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.stat-item {
	text-align: center;
	padding: 15px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

.stat-number {
	font-size: 24px;
	font-weight: bold;
	color: white;
	display: block;
}

.stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 5px;
}

/* Calendar Widget */
.calendar {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 20px;
}

.calendar-header {
	text-align: center;
	color: white;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 18px;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
}

.calendar-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.2s ease;
	cursor: pointer;
}

.calendar-day:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.calendar-day.today {
	background: rgba(255, 107, 107, 0.6);
	color: white;
	font-weight: bold;
}

/* Team Activity */
.activity-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-item:last-child {
	border-bottom: none;
}

.activity-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: linear-gradient(135deg, #74b9ff, #0984e3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 14px;
}

.activity-text {
	flex: 1;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.4;
}

.activity-time {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

/* Projects Widget */
.project-item {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.project-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.project-name {
	color: white;
	font-weight: 600;
	font-size: 14px;
}

.project-status {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.status-active {
	background: rgba(0, 255, 136, 0.2);
	color: #00bf63;
}

.status-review {
	background: rgba(255, 193, 7, 0.2);
	color: #ffa000;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #00bf63, #00d4aa);
	transition: width 0.3s ease;
	animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
	from {
		box-shadow: 0 0 5px rgba(0, 212, 170, 0.5);
	}

	to {
		box-shadow: 0 0 15px rgba(0, 212, 170, 0.8);
	}
}

/* Quick Actions */
.quick-actions {
	grid-column: span 3;
	background: linear-gradient(
		135deg,
		rgba(116, 185, 255, 0.2),
		rgba(9, 132, 227, 0.2)
	);
}

.actions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
}

.action-btn {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 15px;
	padding: 20px 15px;
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.action-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.action-icon {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

/* Floating Office Elements - More CSS Art */
.office-element {
	position: absolute;
	pointer-events: none;
	animation: officeDrift 8s linear infinite;
}

.paper-plane {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 40px solid rgba(255, 255, 255, 0.3);
	transform: rotate(45deg);
}

.lightbulb {
	width: 25px;
	height: 35px;
	background: rgba(255, 235, 59, 0.6);
	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
	position: relative;
	animation: lightbulbGlow 3s ease-in-out infinite alternate;
}

.footer-content {
    text-align: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    margin-bottom: 10px;
    animation: welcomeGlow 2s ease-in-out infinite alternate;
}

@keyframes lightbulbGlow {
	from {
		background: rgba(255, 235, 59, 0.6);
		box-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
	}

	to {
		background: rgba(255, 235, 59, 0.9);
		box-shadow: 0 0 20px rgba(255, 235, 59, 0.6);
	}
}

@keyframes officeDrift {
	from {
		transform: translateX(-50px) rotate(0deg);
	}

	to {
		transform: translateX(calc(100vw + 50px)) rotate(360deg);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.dashboard {
		grid-template-columns: 1fr;
	}

	.welcome-widget,
	.quick-actions {
		grid-column: span 1;
	}

	.header {
		padding: 15px 20px;
		flex-direction: column;
		gap: 15px;
	}

	.actions-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus styles for accessibility */
.action-btn:focus,
.calendar-day:focus,
.stat-item:focus {
	outline: 2px solid rgba(255, 255, 255, 0.8);
	outline-offset: 2px;
}
