.container {
    text-align: center;
    color: #ff5e16ed;
    width: 100%;
    font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    margin: 20px auto;
    padding: 100px 0;
}

.error-404 {
    font-size: 120px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.message h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.message p {
    font-size: 24px;
    margin-top: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.back-home {
    display: inline-block;
    padding: 14px 40px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.back-home:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.links a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .error-404 {
        font-size: 80px;
    }
    
    .message {
        font-size: 18px;
    }
    
    .back-home {
        padding: 12px 30px;
        font-size: 14px;
    }
}
