/* ====================================================================
   404 PAGE STYLES
   Extracted from 404.html
   ==================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Rajdhani', sans-serif; background: #0a0a0f; color: #fff; min-height: 100vh; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.maze-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 138, 61, 0.05) 2px, transparent 2px), linear-gradient(90deg, rgba(255, 138, 61, 0.05) 2px, transparent 2px); background-size: 100px 100px; animation: mazeShift 30s linear infinite; pointer-events: none; }
@keyframes mazeShift { 0% { transform: translate(0, 0); } 50% { transform: translate(-50px, -50px); } 100% { transform: translate(0, 0); } }
.container { text-align: center; padding: 40px; max-width: 600px; position: relative; z-index: 10; }
.character { font-size: 80px; animation: confused 2s ease-in-out infinite; }
@keyframes confused { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }
.error-code { font-family: 'Orbitron', monospace; font-size: 120px; font-weight: 700; color: #FF8A3D; text-shadow: 0 0 10px rgba(255, 138, 61, 0.8); line-height: 1; margin: 20px 0; }
.title { font-family: 'Orbitron', monospace; font-size: 24px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 3px; }
.message { color: #888; font-size: 18px; margin-bottom: 30px; }
.buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.btn-primary { background: linear-gradient(135deg, #FF8A3D 0%, #E7A95F 100%); color: #000; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 138, 61, 0.5); }
.btn-secondary { background: transparent; color: #FF8A3D; border: 2px solid rgba(255, 138, 61, 0.5); }
.btn-secondary:hover { background: rgba(255, 138, 61, 0.1); }
.logo { position: fixed; top: 30px; left: 30px; z-index: 50; }
.logo img { height: 40px; opacity: 0.8; transition: opacity 0.3s; }
.logo:hover img { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 30px 20px; }
    .error-code { font-size: 100px; }
    .title { font-size: 22px; letter-spacing: 2px; }
    .character { font-size: 70px; }
}

@media (max-width: 600px) { 
    body { padding-bottom: 100px; }
    .container { padding: 20px 15px; }
    .error-code { font-size: 70px; } 
    .title { font-size: 18px; letter-spacing: 1px; }
    .message { font-size: 16px; margin-bottom: 25px; }
    .character { font-size: 60px; }
    .buttons { flex-direction: column; gap: 12px; } 
    .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }
    .logo { top: 15px; left: 15px; }
    .logo img { height: 32px; }
}

@media (max-width: 400px) {
    .error-code { font-size: 60px; }
    .title { font-size: 16px; }
    .message { font-size: 14px; }
    .character { font-size: 50px; }
    .btn { padding: 12px 20px; font-size: 14px; }
}
