Changed around line 1
+ :root {
+ --primary-color: #6c63ff;
+ --secondary-color: #2c3e50;
+ --text-color: #ffffff;
+ --background: #0a0a2a;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ background: var(--background);
+ color: var(--text-color);
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ overflow: hidden;
+ }
+
+ .error-container {
+ text-align: center;
+ padding: 2rem;
+ position: relative;
+ z-index: 1;
+ }
+
+ .glitch-wrapper {
+ margin-bottom: 2rem;
+ }
+
+ .glitch {
+ font-size: 8rem;
+ font-weight: bold;
+ position: relative;
+ text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
+ 0.025em 0.04em 0 #fffc00;
+ animation: glitch 725ms infinite;
+ }
+
+ .glitch span {
+ position: absolute;
+ top: 0;
+ left: 0;
+ }
+
+ .content {
+ position: relative;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ color: rgba(255, 255, 255, 0.8);
+ }
+
+ .btn {
+ display: inline-block;
+ padding: 1rem 2rem;
+ margin: 0 0.5rem;
+ border-radius: 50px;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ border: none;
+ outline: none;
+ }
+
+ .primary {
+ background: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ }
+
+ .secondary {
+ background: transparent;
+ border: 2px solid var(--primary-color);
+ color: var(--primary-color);
+ }
+
+ .btn:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
+ }
+
+ .stars {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ }
+
+ .astronaut {
+ width: 150px;
+ height: 150px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ animation: float 6s ease-in-out infinite;
+ }
+
+ @keyframes glitch {
+ 0% {
+ text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
+ 0.025em 0.04em 0 #fffc00;
+ }
+ 15% {
+ text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
+ 0.025em 0.04em 0 #fffc00;
+ }
+ 16% {
+ text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
+ -0.05em -0.05em 0 #fffc00;
+ }
+ 49% {
+ text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
+ -0.05em -0.05em 0 #fffc00;
+ }
+ 50% {
+ text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
+ 0 -0.04em 0 #fffc00;
+ }
+ 99% {
+ text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
+ 0 -0.04em 0 #fffc00;
+ }
+ 100% {
+ text-shadow: -0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
+ -0.04em -0.025em 0 #fffc00;
+ }
+ }
+
+ @keyframes float {
+ 0% {
+ transform: translate(-50%, -50%);
+ }
+ 50% {
+ transform: translate(-50%, -60%);
+ }
+ 100% {
+ transform: translate(-50%, -50%);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .glitch {
+ font-size: 4rem;
+ }
+
+ h2 {
+ font-size: 1.8rem;
+ }
+
+ p {
+ font-size: 1rem;
+ }
+
+ .btn {
+ padding: 0.8rem 1.5rem;
+ font-size: 1rem;
+ }
+ }