
:root {
	--primary-color: #d32f2f;
	--accent-color: #28a745;
	--bg-color: #f4f6f8;
	--text-color: #333;
	--border-radius: 8px;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
  }

  .container {
	max-width: 500px;
	margin: 60px auto;
	background: #fff;
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	text-align: center;
  }

  .header {
	margin-bottom: 40px;
  }

  .epic-logo {
	height: 40px;
  }

  .error-icon {
	margin: 20px 0;
  }

  .error-icon .circle {
	width: 80px;
	height: 80px;
	background-color: #ffebee;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	animation: scaleIn 0.5s ease-out;
  }

  .error-icon .exclamation {
	color: var(--primary-color);
	font-size: 40px;
	font-weight: bold;
	animation: fadeIn 0.5s ease-out 0.5s both;
  }

  @keyframes scaleIn {
	from {
	  transform: scale(0);
	  opacity: 0;
	}
	to {
	  transform: scale(1);
	  opacity: 1;
	}
  }

  @keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }

  .error-title {
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
  }

  .error-message {
	color: #666;
	font-size: 16px;
	margin-bottom: 25px;
	line-height: 1.5;
  }

  .error-code {
	display: inline-block;
	background-color: #f8f9fa;
	padding: 8px 16px;
	border-radius: 4px;
	font-family: monospace;
	font-size: 14px;
	color: #666;
	margin-bottom: 30px;
  }

  .footer {
	text-align: center;
	font-size: 12px;
	color: #888;
	margin-top: 25px;
  }